.site-header__nav a.is-active {
  color: var(--coral);
  opacity: 1;
}

.devblog {
  position: relative;
  z-index: 1;
  background: var(--paper);
  min-height: 100dvh;
  padding: 72px 0 120px;
  transition: background 0.4s ease;
}

.devblog__intro {
  max-width: 60ch;
  margin: 0 0 56px;
}

.devblog__title {
  font-family: "DynaPuff", "Bricolage", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 12px;
  color: var(--ink);
}

.devblog__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.devblog__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 760px;
}

.post {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline);
}

.post:last-child {
  border-bottom: none;
}

.post__date {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral);
}

.post__title {
  font-family: "Bricolage", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 14px;
  color: var(--ink);
}

.post__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.post__body p {
  margin: 0 0 14px;
}

.post__body p:last-child {
  margin-bottom: 0;
}

.post__gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.post__img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 24px -8px rgba(74, 51, 36, 0.35);
}

.post__gallery--single {
  grid-template-columns: 1fr;
}

.post__gallery--single .post__img {
  max-width: 480px;
}
