/* Blog detail — overlapping editorial hero */
.news-detail-page {
    --ink: #1d1c20;
    --blue: #3157f5;
    background: #fff;
    color: var(--ink);
}

.news-detail-page a {
    color: inherit;
    text-decoration: none;
}

.news-detail-page .article {
    max-width: 1240px;
    margin: auto;
    padding: 64px 40px 110px;
}

.news-detail-page .article-back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 38px;
    font-size: 12px;
    font-weight: 700;
}

.article-feature {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
}

.article-feature-media {
    width: 64%;
    height: 520px;
    border-radius: 22px;
    overflow: hidden;
}

.news-detail-page .article-cover {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    border-radius: 0;
}

.article-feature-card {
    position: relative;
    z-index: 1;
    width: 45%;
    min-height: 410px;
    margin-left: -9%;
    padding: 58px 54px;
    border-radius: 22px;
    background: #526cf7;
    color: #fff;
    box-shadow: 0 24px 55px rgba(49, 87, 245, .2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    opacity: .82;
}

.article-feature-card h1 {
    max-width: 520px;
    margin: 18px 0 16px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.article-feature-card > p {
    margin: 0;
    max-width: 480px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .88);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.article-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .65);
}

.article-author strong,
.article-author time {
    display: block;
}

.article-author strong {
    font-size: 13px;
}

.article-author time {
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, .78);
}

.news-detail-page .article-content {
    max-width: 820px;
    margin: 76px auto 0;
    font-size: 16px;
    line-height: 1.9;
    color: #35343a;
}

.news-detail-page .article-content > p:first-child {
    font-size: 19px;
    line-height: 1.75;
    color: #4d4c52;
}

.news-detail-page .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.news-detail-page .article-content h2,
.news-detail-page .article-content h3 {
    line-height: 1.3;
    margin-top: 46px;
    color: var(--ink);
}

.news-detail-page .article-content h2 {
    font-size: 30px;
}

.news-detail-page .article-content h3 {
    font-size: 23px;
}

.news-detail-page .article-content a {
    color: var(--blue);
    text-decoration: underline;
}

.news-detail-page .related {
    padding: 90px max(44px, calc((100vw - 1380px) / 2 + 44px));
    background: #f4f4f5;
}

.news-detail-page .related > span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.news-detail-page .related h2 {
    margin: 14px 0 35px;
    font-size: 38px;
}

.news-detail-page .related > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-detail-page .related img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
}

.news-detail-page .related h3 {
    font-size: 17px;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .news-detail-page .article {
        padding-top: 45px;
    }

    .article-feature {
        display: block;
        min-height: 0;
    }

    .article-feature-media {
        width: 88%;
        height: 470px;
    }

    .article-feature-card {
        width: 58%;
        min-height: 360px;
        margin: -110px 0 0 auto;
        padding: 42px;
    }

    .article-feature-card h1 {
        font-size: 34px;
    }

    .news-detail-page .related > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .news-detail-page .article {
        padding: 32px 18px 80px;
    }

    .news-detail-page .article-back {
        margin-bottom: 24px;
    }

    .article-feature-media {
        width: 100%;
        height: 300px;
        border-radius: 16px;
    }

    .article-feature-card {
        width: calc(100% - 24px);
        min-height: 0;
        margin: -42px auto 0;
        padding: 30px 26px;
        border-radius: 16px;
    }

    .article-feature-card h1 {
        font-size: 29px;
    }

    .article-feature-card > p {
        font-size: 13px;
    }

    .article-author {
        margin-top: 24px;
    }

    .news-detail-page .article-content {
        margin-top: 52px;
        font-size: 15px;
    }

    .news-detail-page .article-content > p:first-child {
        font-size: 17px;
    }

    .news-detail-page .related {
        padding: 70px 20px;
    }

    .news-detail-page .related > div {
        grid-template-columns: 1fr;
    }
}
