/* ============ BLOG STYLES ============ */

/* --- Blog Header --- */
.blog-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}
.blog-header__title {
    font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800; color: var(--white); line-height: 1.1;
    margin-bottom: 1rem; letter-spacing: -0.02em;
}
.blog-header .section__label { background: rgba(201,168,76,0.15); color: var(--gold); }
.blog-header__subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,0.6);
    max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* --- Blog Grid --- */
.blog-list { background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* --- Blog Card --- */
.blog-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 14px; overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column; text-decoration: none;
}
.blog-card:hover {
    border-color: var(--gold); transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}

.blog-card--featured {
    grid-column: span 2;
    flex-direction: row;
}
.blog-card--featured .blog-card__image {
    flex: 0 0 45%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 1.5rem; min-height: 280px; position: relative;
}
.blog-card__tag {
    display: inline-block; font-size: 0.6875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--navy); background: var(--gold);
    padding: 0.3rem 0.85rem; border-radius: 100px;
}
.blog-card__body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.blog-card__date {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem;
}
.blog-card__title {
    font-family: var(--font-head); font-size: 1.375rem; font-weight: 800;
    color: var(--navy); line-height: 1.25; margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.blog-card--featured .blog-card__title { font-size: 1.625rem; }
.blog-card__excerpt {
    font-size: 0.9375rem; color: var(--text-light); line-height: 1.7;
    margin-bottom: 1.25rem;
}
.blog-card__link {
    font-size: 0.875rem; font-weight: 700; color: var(--gold);
    display: inline-flex; align-items: center; gap: 0.35rem;
}
.blog-card__link::after { content: '\2192'; transition: transform 0.25s ease; }
.blog-card:hover .blog-card__link::after { transform: translateX(4px); }

/* --- Article Page --- */
.article-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    padding: 8rem 0 3.5rem;
    text-align: center;
}
.article-header__date {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--gold); margin-bottom: 1rem;
    display: inline-block; background: rgba(201,168,76,0.15);
    padding: 0.3rem 1rem; border-radius: 100px;
}
.article-header__title {
    font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800; color: var(--white); line-height: 1.15;
    max-width: 800px; margin: 0 auto 1.25rem; letter-spacing: -0.02em;
}
.article-header__subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,0.6);
    max-width: 620px; margin: 0 auto; line-height: 1.7;
}

/* Article Body */
.article { background: var(--white); padding: 4rem 0 5rem; }
.article__container { max-width: 720px; margin: 0 auto; }

.article__container h2 {
    font-family: var(--font-head); font-size: 1.625rem; font-weight: 800;
    color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.25;
}
.article__container h3 {
    font-size: 1.125rem; font-weight: 700; color: var(--navy);
    margin: 2rem 0 0.75rem;
}
.article__container p {
    font-size: 1.0625rem; color: var(--text); line-height: 1.85;
    margin-bottom: 1.25rem;
}
.article__container ul, .article__container ol {
    padding-left: 1.5rem; margin-bottom: 1.25rem;
}
.article__container li {
    font-size: 1.0625rem; color: var(--text); line-height: 1.85;
    margin-bottom: 0.4rem; list-style: disc;
}
.article__container li::marker { color: var(--gold); }
.article__container blockquote {
    border-left: 3px solid var(--gold); margin: 2rem 0;
    padding: 1.25rem 1.5rem; background: var(--off-white);
    border-radius: 0 10px 10px 0;
}
.article__container blockquote p {
    font-size: 1.0625rem; font-style: italic; color: var(--text-light);
    margin-bottom: 0;
}
.article__container blockquote cite {
    display: block; margin-top: 0.75rem; font-size: 0.875rem;
    font-style: normal; font-weight: 600; color: var(--gold);
}
.article__container strong { color: var(--navy); }

/* Stats Banner — 3-up compact variant */
.stats-banner--trio {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem 2rem;
    gap: 1rem;
}
.stats-banner--trio .stat-ring {
    width: 72px;
    height: 72px;
}
.stats-banner--trio .stat-ring__value {
    font-size: 1.1rem;
}

/* Speech Pull Quote */
.speech-quote {
    margin: 2.5rem 0;
    padding: 1.75rem 2rem;
    text-align: center;
    position: relative;
}
.speech-quote::before, .speech-quote::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}
.speech-quote::before { margin-bottom: 1.25rem; }
.speech-quote::after { margin-top: 1.25rem; }
.speech-quote p {
    font-family: var(--font-head);
    font-size: 1.1875rem;
    font-style: italic;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}
.speech-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

/* Interview Q&A */
.qa { margin: 2rem 0; }
.qa__q {
    font-family: var(--font-head); font-size: 1.125rem; font-weight: 700;
    color: var(--navy); font-style: italic; margin-bottom: 0.75rem;
}
.qa__a { margin-bottom: 0; }

/* Article Divider */
.article__divider {
    width: 60px; height: 3px; background: var(--gold);
    border: none; margin: 2.5rem 0; border-radius: 2px;
}

/* Article Back Link */
.article__back {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.875rem; font-weight: 600; color: var(--gold);
    margin-bottom: 2rem;
}
.article__back::before { content: '\2190'; }
.article__back:hover { text-decoration: underline; }

/* Article Footer CTA */
.article__cta {
    margin-top: 3rem; padding: 2.5rem; background: var(--off-white);
    border-radius: 14px; border: 1px solid var(--gray-200); text-align: center;
}
.article__cta p {
    font-size: 1rem; color: var(--text-light); margin-bottom: 1rem;
}
.article__cta .btn { display: inline-flex; }

/* --- Stats Banner --- */
.stats-banner {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem; margin: 2.5rem 0; padding: 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 14px;
}
.stat-item { text-align: center; }
.stat-ring {
    position: relative; width: 100px; height: 100px;
    margin: 0 auto 0.75rem;
}
.stat-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.stat-ring__bg {
    fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 6;
}
.stat-ring__fill {
    fill: none; stroke: var(--gold); stroke-width: 6;
    stroke-linecap: round; stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stat-ring.animated .stat-ring__fill { stroke-dashoffset: var(--offset); }
.stat-ring__value {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
    color: var(--gold);
}
.stat-ring__value span { font-size: 0.875rem; }
.stat-item__label {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.6); line-height: 1.4;
}

/* --- Bar Chart --- */
.bar-chart {
    margin: 2rem 0; padding: 2rem;
    background: var(--off-white); border-radius: 14px;
    border: 1px solid var(--gray-200);
}
.bar-chart__title {
    font-family: var(--font-head); font-size: 1.125rem; font-weight: 700;
    color: var(--navy); margin-bottom: 1.5rem;
}
.bar-chart__item { margin-bottom: 1rem; }
.bar-chart__item:last-child { margin-bottom: 0; }
.bar-chart__label {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 0.4rem;
}
.bar-chart__name {
    font-size: 0.875rem; font-weight: 600; color: var(--text);
}
.bar-chart__value {
    font-size: 0.8125rem; font-weight: 700; color: var(--gold);
}
.bar-chart__track {
    height: 10px; background: var(--gray-200);
    border-radius: 100px; overflow: hidden;
}
.bar-chart__fill {
    height: 100%; border-radius: 100px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
    width: 0; transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bar-chart__fill--gold {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
.bar-chart.animated .bar-chart__fill { width: var(--width); }

/* --- Deliverables Grid --- */
.deliverables-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin: 2rem 0;
}
.deliverable-card {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    background: var(--off-white); border-radius: 10px;
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.deliverable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.deliverable-card__icon {
    font-size: 1.5rem; margin-bottom: 0.5rem; display: block;
}
.deliverable-card__name {
    font-size: 0.875rem; font-weight: 700; color: var(--navy);
    line-height: 1.3; margin-bottom: 0.25rem;
}
.deliverable-card__desc {
    font-size: 0.75rem; color: var(--text-light); line-height: 1.5;
}

/* --- Process Flow --- */
.process-flow {
    margin: 2.5rem 0; padding: 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 14px;
}
.process-flow__title {
    font-family: var(--font-head); font-size: 1.125rem; font-weight: 700;
    color: var(--white); text-align: center; margin-bottom: 1.5rem;
}
.process-flow__steps {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0; flex-wrap: wrap;
}
.process-flow__step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; flex: 0 0 auto; width: 120px;
}
.process-flow__icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(201,168,76,0.15); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 0.6rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.process-flow__step:hover .process-flow__icon {
    transform: scale(1.1); background: rgba(201,168,76,0.3);
}
.process-flow__label {
    font-size: 0.6875rem; font-weight: 600; color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.3;
}
.process-flow__arrow {
    display: flex; align-items: center; padding-top: 0.75rem;
    color: var(--gold); font-size: 1.25rem; flex: 0 0 auto;
}

/* --- Percentage Callout --- */
.pct-callout {
    display: flex; align-items: center; gap: 1.5rem;
    margin: 2rem 0; padding: 1.75rem 2rem;
    background: var(--off-white); border-radius: 14px;
    border: 1px solid var(--gray-200);
}
.pct-callout__number {
    font-family: var(--font-head); font-size: 3rem; font-weight: 800;
    color: var(--gold); line-height: 1; white-space: nowrap;
}
.pct-callout__number span { font-size: 1.75rem; }
.pct-callout__text {
    font-size: 0.9375rem; color: var(--text-light); line-height: 1.6;
}
.pct-callout__text strong { color: var(--navy); }

/* --- Responsive --- */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card--featured { grid-column: span 1; flex-direction: column; }
    .blog-card--featured .blog-card__image { min-height: 180px; }
    .article__container { width: 90%; }
    .stats-banner { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; gap: 1.25rem; }
    .stat-ring { width: 80px; height: 80px; }
    .stat-ring__value { font-size: 1.25rem; }
    .deliverables-grid { grid-template-columns: 1fr; }
    .process-flow__steps { gap: 0.25rem; }
    .process-flow__step { width: 90px; }
    .process-flow__icon { width: 42px; height: 42px; font-size: 1rem; }
    .process-flow__label { font-size: 0.625rem; }
    .process-flow__arrow { font-size: 1rem; }
    .pct-callout { flex-direction: column; text-align: center; gap: 0.75rem; }
    .pct-callout__number { font-size: 2.5rem; }
    .bar-chart { padding: 1.25rem; }
}
