/* ── PAGE HERO ── */
.page-hero { min-height: 45vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; background: var(--c-bg2); }
.page-hero-body { position: relative; z-index: 2; padding: 7rem 0 4.5rem; width: 100%; }
.page-hero-eyebrow { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--c-red); display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 1.6rem; height: 1.5px; background: var(--c-red); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.0; color: var(--c-ink); }
.page-hero h1 span { color: var(--c-red); }
.page-hero-sub { font-size: 1.05rem; color: var(--c-mid); max-width: 44ch; margin-top: .9rem; line-height: 1.8; }
.page-hero-breadcrumb { position: absolute; bottom: 1.6rem; right: 1.6rem; z-index: 3; font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-mid); }
.page-hero-breadcrumb a { color: var(--c-mid); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--c-ink); }

/* ── TAG PILL ── */
.tag-pill { display: inline-block; padding: .22rem .7rem; font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--c-line); color: var(--c-mid); }

/* ── FEATURED ARTICLE ── */
.featured-wrap { border-top: 1px solid var(--c-line); padding: 5rem 0; }
.featured-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.25,.46,.45,.94); }
.featured-wrap:hover .featured-img img { transform: scale(1.03); }
.featured-label { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-red); margin-bottom: .5rem; }
.featured-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -.035em; line-height: 1.1; color: var(--c-ink); margin-bottom: 1rem; }
.featured-desc { font-size: 1rem; color: var(--c-mid); line-height: 1.85; max-width: 44ch; margin-bottom: 1.4rem; }
.article-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.article-meta-author { font-size: .72rem; font-weight: 700; color: var(--c-ink); }
.article-meta-date { font-size: .68rem; color: var(--c-mid); }
.article-meta-read { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-mid); }
.article-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--c-line); flex-shrink: 0; }

/* ── ARTICLE GRID ── */
.grid-sec { padding: 0 0 5rem; }
.article-card { border-top: 1px solid var(--c-line); padding-top: 1.6rem; display: flex; flex-direction: column; height: 100%; cursor: pointer; }
.article-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 1.2rem; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.25,.46,.45,.94); }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-img::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.15); opacity: 0; transition: opacity .4s; }
.article-card:hover .article-card-img::after { opacity: 1; }
.article-card-tag { margin-bottom: .7rem; }
.article-card-title { font-size: 1.08rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.3; color: var(--c-ink); margin-bottom: .65rem; transition: color .2s; }
.article-card-title a { color: inherit; transition: color .2s; }
.article-card-title a:hover, .article-card:hover .article-card-title a { color: var(--c-red); }
.article-card-desc { font-size: .88rem; color: var(--c-mid); line-height: 1.8; margin-bottom: 1rem; flex: 1; }
.article-card-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--c-line); }
.article-card-byline { font-size: .68rem; color: var(--c-mid); }
.article-card-read { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-red); display: flex; align-items: center; gap: .3rem; }
.article-card-read i { font-size: .55rem; transition: transform .2s; }
.article-card:hover .article-card-read i { transform: translateX(3px); }
