.article-page {
    min-height: 100vh;
    background: #fff;
    color: #242424;
}

.article-page__masthead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 66px;
    padding: 12px max(22px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid #e6e6e6;
}

.article-page__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #242424;
    font-weight: 900;
    text-decoration: none;
}

.article-page__brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    object-fit: cover;
}

.article-page__all {
    color: #5b5b5b;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.article-page__main {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(56px, 9vw, 96px) 0 80px;
}

.article-page__header {
    padding-bottom: 32px;
    border-bottom: 1px solid #e6e6e6;
}

.article-page__kicker {
    margin: 0 0 18px;
    color: #1d6d50;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-page__header h1 {
    margin: 0;
    color: #171717;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 7vw, 4.65rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.article-page__dek {
    margin: 22px 0 0;
    color: #606060;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.22rem, 2.8vw, 1.5rem);
    line-height: 1.5;
}

.article-page__byline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-top: 30px;
    color: #777;
    font-size: 0.86rem;
}

.article-page__byline div {
    display: grid;
    gap: 3px;
}

.article-page__byline strong {
    color: #242424;
}

.article-page__cover {
    margin: 38px 0;
}

.article-page__cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-page__content {
    padding-top: 34px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    line-height: 1.82;
}

.article-page__content h2,
.article-page__content h3 {
    margin: 2em 0 0.65em;
    color: #171717;
    line-height: 1.2;
}

.article-page__content p,
.article-page__content ul,
.article-page__content ol,
.article-page__content blockquote {
    margin: 0 0 1.35em;
}

.article-page__content a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-page__content blockquote {
    padding-left: 22px;
    border-left: 3px solid #242424;
    color: #555;
    font-style: italic;
}

.article-page__product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 52px;
    padding: 26px 0;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.article-page__product p {
    margin: 0;
    color: #666;
}

.article-page__product a {
    color: #1d6d50;
    font-weight: 800;
    text-decoration: none;
}

.article-page a:focus-visible {
    outline: 3px solid rgba(29, 109, 80, 0.28);
    outline-offset: 4px;
    border-radius: 4px;
}

@media (max-width: 599px) {
    .article-page__masthead {
        padding: 12px 18px;
    }

    .article-page__main {
        width: min(100% - 36px, 720px);
        padding-top: 48px;
    }

    .article-page__byline,
    .article-page__product {
        align-items: flex-start;
        flex-direction: column;
    }
}
