/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #F8FAFE;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Footer (shared) === */
footer {
  border-top: 1px solid #E2E5EB;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer small { font-size: 13px; color: #A3A9B5; }
footer a {
  font-size: 13px;
  color: #8E95A2;
  text-decoration: none;
}
footer a:hover { color: #1a1a1a; }

/* === Index page === */
header {
  padding: 80px 0 56px;
}
header h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
header p {
  font-size: 16px;
  color: #8E95A2;
  line-height: 1.5;
}
main { padding-bottom: 80px; }
article {
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #E8EAF0;
}
article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
article time {
  display: block;
  font-size: 13px;
  color: #A3A9B5;
  margin-bottom: 14px;
}
article h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  transition: color 0.25s ease;
}
article h2 a {
  color: inherit;
  text-decoration: none;
}
article h2 a::after {
  content: '';
  position: absolute;
  inset: 0;
  cursor: pointer;
}
article:hover h2 a { color: #4285F4; }
article p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #5F6571;
}
article .read-more {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 14px;
  color: #A3A9B5;
  text-decoration: none;
  transition: color 0.25s ease;
}
article .read-more:hover,
article .read-more:focus-visible { color: #4285F4; }
article:hover .read-more { color: #4285F4; }

/* === Post pages === */
.site-title {
  display: inline-block;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 24px;
  transition: color 0.25s ease;
}
.site-title:hover { color: #4285F4; }
.back-link {
  display: block;
  font-size: 14px;
  color: #8E95A2;
  margin-bottom: 24px;
  transition: color 0.25s ease;
}
.back-link:hover { color: #4285F4; }
.post-header {
  padding: 80px 0 40px;
}
.post-header time {
  display: block;
  font-size: 13px;
  color: #A3A9B5;
  margin-bottom: 16px;
}
.post-header h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.post-content {
  padding-bottom: 80px;
}
.post-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #3A3D45;
  margin-bottom: 20px;
}
.post-content strong {
  color: #1a1a1a;
}
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-content li {
  font-size: 16px;
  line-height: 1.7;
  color: #3A3D45;
  margin-bottom: 8px;
}
.post-content a {
  color: #4285F4;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-content a:hover {
  color: #1a1a1a;
}
.post-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}
.post-author {
  display: block;
  font-size: 13px;
  color: #A3A9B5;
  margin-top: -12px;
  margin-bottom: 16px;
}
.post-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #E8EAF0;
  font-size: 13px;
  color: #A3A9B5;
}
.post-meta a {
  color: #4285F4;
  text-decoration: none;
}
