/* ─────────────────────────────────────────────
   home.css
───────────────────────────────────────────── */

/* ── SCROLL CONTAINER ── */
.home-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-scroll::-webkit-scrollbar { display: none; }

/* ── INNER — centered content ── */
.home-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HERO ── */
.home-hero {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 4rem;
}

.home-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin: 0 0 2rem;

}

.home-headline .intro-muted {
  color: rgba(27, 27, 24, 0.25);
}

/* Lead — first reading level */
.home-lead {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.95;
  color: rgba(27, 27, 24, 0.6);
  margin: 0 0 1rem;

}

.home-lead strong {
  font-weight: 400;
  color: var(--dark);
}

/* Body — second reading level */
.home-body {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(27, 27, 24, 0.35);
  margin: 0;

}

.home-body em {
  font-style: normal;
  color: rgba(27, 27, 24, 0.55);
}

/* ── SECTIONS ── */
.home-section {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(27, 27, 24, 0.07);
}

.home-section__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.75rem;
}

/* ── SHARED LIST ── */
.home-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── POST ITEMS ── */
.home-post-item {
  border-bottom: 1px solid rgba(27, 27, 24, 0.06);
}

.home-post-item__link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  text-decoration: none;
}

.home-post-item__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(27, 27, 24, 0.75);
  transition: color 0.2s;
}

.home-post-item__link:hover .home-post-item__title {
  color: var(--dark);
}

.home-post-item__date {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(27, 27, 24, 0.25);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-more-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(27, 27, 24, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.home-more-link:hover { color: var(--accent); }

/* ── PROJECT ITEMS ── */
.home-project-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(27, 27, 24, 0.06);
}

.home-project-item__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.home-project-item__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
}

.home-project-item__name--link {
  text-decoration: none;
  color: var(--dark);
  border-bottom: 1px solid rgba(27, 27, 24, 0.15);
  transition: border-color 0.2s;
}

.home-project-item__name--link:hover {
  border-bottom-color: var(--dark);
}

.home-project-item__tag {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 27, 24, 0.35);
}

.home-project-item__desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(27, 27, 24, 0.4);
  margin: 0;
}

/* ── FOOTER ── */
.home-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 2rem 3.5rem;
  border-top: 1px solid rgba(27, 27, 24, 0.07);
}

.home-date {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(27, 27, 24, 0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .home-hero {
    min-height: 60vh;
    padding-top: 4rem;
  }

  .home-post-item__link {
    flex-direction: column;
    gap: 0.2rem;
  }
}
