/* ─── HERO ─── */
.hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    min-height: 480px;
}
.hero-content {
    padding: 52px 52px 52px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.eyebrow-pill {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--g600);
    background: var(--g50);
    border: 1px solid var(--g100);
    padding: 4px 10px;
    border-radius: 100px;
}
.eyebrow-line { font-size: 13px; color: var(--ink4); }
.hero-title {
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}
.hero-title a { color: var(--ink); transition: color var(--ease); }
.hero-title a:hover { color: var(--g600); }
.hero-title em { color: var(--g600); font-style: italic; }
.hero-excerpt {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 28px;
}
.hero-footer {
    display: flex;
    align-items: center;
    gap: 18px;
}
.hero-author-row { display: flex; align-items: center; gap: 10px; }
.avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--g100);
    border: 2px solid var(--g200);
    flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar--sm { width: 34px; height: 34px; }
.author-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.author-role { font-size: 12px; color: var(--ink4); }
.hero-divider { width: 1px; height: 26px; background: var(--border2); flex-shrink: 0; }
.hero-meta-text { font-size: 13px; color: var(--ink4); }

/* Aside */
.hero-aside {
    padding: 32px 0 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.hero-aside-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--ink4);
}
.aside-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--r12);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: 88px 1fr;
    transition: all var(--ease);
}
.aside-card:hover { border-color: var(--g200); box-shadow: var(--shadow); transform: translateY(-1px); }
.aside-card:hover .aside-card-title { color: var(--g600); }
.aside-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}
.aside-card-img img { width: 100%; height: 100%; object-fit: cover; }
.aside-card-img svg { width: 28px; height: 28px; }
.bg-green-soft { background: var(--g50); }
.bg-gold-soft  { background: var(--gold-bg); }
.bg-teal-soft  { background: #e4f5ee; }
.bg-blue-soft  { background: #e8f0fb; }
.bg-ink-soft   { background: var(--cream2); }
.aside-card-body { padding: 13px 15px; }
.aside-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--g500); margin-bottom: 4px; }
.aside-card-tag.gold { color: var(--gold); }
.aside-card-tag.teal { color: #0c6b52; }
.aside-card-tag.blue { color: #2850a0; }
.aside-card-title { font-family: 'Lora', Georgia, serif; font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; transition: color var(--ease); }
.aside-card-meta { font-size: 11.5px; color: var(--ink4); margin-top: 5px; }

/* Pillar Strip */
.pillars { background: var(--cream); border-bottom: 1px solid var(--border); }
.pillars-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    text-decoration: none;
    color: inherit;
    border-bottom: 2px solid transparent;
    transition: all var(--ease);
}
.pillar:not(:last-child) { border-right: 1px solid var(--border); }
.pillar:hover { background: var(--white); border-bottom-color: var(--g400); }
.pillar.active { background: var(--white); border-bottom-color: var(--g600); }
.pillar-icon-wrap {
    width: 42px; height: 42px;
    border-radius: var(--r8);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pillar-icon-wrap svg { width: 20px; height: 20px; }
.pi-green { background: var(--g100); }
.pi-gold  { background: #f5ead2; }
.pi-teal  { background: #d6f0e6; }
.pillar-stage { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink4); margin-bottom: 2px; }
.pillar-name { font-family: 'Lora', Georgia, serif; font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.pillar-desc { font-size: 12px; color: var(--ink4); margin-top: 2px; }

/* Single Post Hero */
.single-hero { background: var(--cream); border-bottom: 1px solid var(--border); padding: 48px 0 40px; }
.single-meta-top { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.read-time { font-size: 12px; color: var(--ink4); font-weight: 400; }
.single-title { font-size: clamp(26px, 3vw, 40px); font-weight: 700; line-height: 1.2; letter-spacing: -0.3px; margin-bottom: 24px; max-width: 760px; }
.single-byline { display: flex; align-items: center; justify-content: space-between; }
.byline-author { display: flex; align-items: center; gap: 10px; }
.byline-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.byline-name a { color: inherit; }
.byline-name a:hover { color: var(--g600); }
.byline-sep { color: var(--ink4); margin: 0 6px; }
.byline-date { font-size: 13.5px; color: var(--ink4); }
.single-share { display: flex; align-items: center; gap: 8px; }
.share-label { font-size: 12.5px; color: var(--ink4); font-weight: 500; }
.share-btn {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--border2);
    border-radius: var(--r8);
    color: var(--ink3);
    transition: all var(--ease);
}
.share-btn:hover { background: var(--g50); border-color: var(--g200); color: var(--g600); }
.single-featured-img { padding: 32px 0 0; }
.single-img { width: 100%; border-radius: var(--r16); max-height: 480px; object-fit: cover; }

/* Archive header */
.archive-header { background: var(--cream); border-bottom: 1px solid var(--border); padding: 48px 0; }
.archive-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--g600); margin-bottom: 8px; }
.archive-title { font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.archive-desc { font-size: 16px; color: var(--ink3); max-width: 560px; line-height: 1.7; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-content { padding: 40px 0 32px; border-right: none; border-bottom: 1px solid var(--border); }
    .hero-aside { padding: 28px 0 0; }
    .pillars-inner { grid-template-columns: 1fr; }
    .pillar:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
}
