.article-hero {
    --ah-navy:        #0e2c47;
    --ah-body-text:   #4a5b6e;
    --ah-muted:       #6e757c;

    --ah-container-max: 1682px;
    --ah-pad-left:      355px;
    --ah-pad-right:     295px;
    --ah-content-width: 696px;

    background: linear-gradient(
        5deg,
        rgba(179, 229, 252, 0.4) 1.93%,
        #fff 161.46%
    );
    padding-top:    55px;
    padding-bottom: 31px;
    color: var(--ah-navy);
    font-family: Inter, sans-serif;
}

.article-hero__container {
    max-width: var(--ah-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left:  var(--ah-pad-left);
    padding-right: var(--ah-pad-right);
}

.article-hero__inner {
    max-width: var(--ah-content-width);
}

.article-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0 0 24px;
    padding: 0;
    font-size: 1.2rem;
    letter-spacing: 0.2px;
    color: var(--ah-muted);
}
.article-hero__breadcrumb li + li::before {
    content: '›';
    margin: 0 6px;
    color: var(--ah-muted);
}
.article-hero__breadcrumb a {
    color: var(--ah-muted);
    text-decoration: none;
}
.article-hero__breadcrumb a:hover {
    text-decoration: underline;
}
.article-hero__breadcrumb [aria-current='page'] {
    color: var(--ah-muted);
}

.article-hero__title {
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.8px;
    color: var(--ah-navy);
    margin: 0 0 18px;
    max-width: var(--ah-content-width);
}

.article-hero__subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.45;
    color: var(--ah-body-text);
    margin: 0 0 32px;
    max-width: 620px;
}

.article-hero__meta {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(14, 44, 71, 0.08);
    margin-bottom: 28px;
}

.article-hero__author {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.article-hero__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ah-navy);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}
.article-hero__author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.article-hero__author-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ah-navy);
    line-height: 1.3;
    margin-bottom: 4px;
}
.article-hero__author-cred {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ah-muted);
    line-height: 1.4;
}
.article-hero__author-role {
    font-weight: 600;
    color: var(--ah-navy);
}

.article-hero__reviewer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.article-hero__reviewer-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--ah-navy);
    margin-top: 2px;
}
.article-hero__reviewer-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ah-navy);
    line-height: 1.3;
    display: block;
}
.article-hero__reviewer-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ah-navy);
    display: block;
}

.article-hero__reviewer-name a {
    color: inherit;
    text-decoration: none;
}

.article-hero__readtime {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ah-navy);
    line-height: 1.5;
    margin-left: auto;
}

.article-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ah-navy);
}
.article-hero__badges li::before {
    content: '✓ ';
    color: var(--Enchanted-Forest, #28A745);
}

@media (max-width: 1682px) {
    .article-hero {
        --ah-pad-left:  clamp(40px, 21.1vw, 355px);
        --ah-pad-right: clamp(24px, 17.6vw, 295px);
    }
}

@media (max-width: 1100px) {
    .article-hero {
        --ah-pad-left:  40px;
        --ah-pad-right: 40px;
    }
    .article-hero__title {
        font-size: 3.2rem;
    }
}

@media (max-width: 600px) {
    .article-hero {
        --ah-pad-left:  20px;
        --ah-pad-right: 20px;
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .article-hero__title {
        font-size: 2.6rem;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }
    .article-hero__subtitle {
        font-size: 1.6rem;
    }

    .article-hero__meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        border-top: none;
        padding-top: 8px;
    }
    .article-hero__author {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .article-hero__reviewer {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .article-hero__readtime {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-left: 0;
    }
    .article-hero__readtime-date::before {
        content: '•';
        margin-right: 6px;
        color: var(--ah-muted);
    }
    .article-hero__badges {
        justify-content: center;
        column-gap: 16px;
    }

    .article-hero__breadcrumb {
        display: none;
    }
}
