.site-main {
    background: #fff;
}

/* MAIN STAGE */

.main-stage {
    padding: 28px 0 26px;
}

.main-stage__grid {
    display: grid;
    grid-template-columns: minmax(0, 2.08fr) minmax(330px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.lead-news {
    position: relative;
    min-height: 450px;
    display: block;
    overflow: hidden;
    background: #111;
}

.lead-news__image {
    position: absolute;
    inset: 0;
}

.lead-news__image img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease;
}

.lead-news:hover .lead-news__image img {
    transform: scale(1.05);
}

.lead-news__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px 42px 34px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.62) 42%,
            rgba(0, 0, 0, 0.05) 100%
        );
}

.news-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 3px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.lead-news h1 {
    max-width: 760px;
    color: #fff;
    font-size: 44px;
    line-height: 1.22;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.lead-news p {
    max-width: 740px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
}

.article-meta span + span::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 12px;
    border-radius: 50%;
    background: currentColor;
    vertical-align: middle;
}

.article-meta.muted {
    color: var(--color-muted);
}

/* TOP SIDE */

.top-stack {
    display: flex;
    flex-direction: column;
    border-top: 2px solid #111;
}

.top-stack__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-line);
}

.top-stack__item:hover h2 {
    color: var(--color-primary);
}

.top-stack__content span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
}

.top-stack__content h2 {
    color: #1f2933;
    font-size: 18px;
    line-height: 1.43;
    font-weight: 850;
    letter-spacing: -0.04em;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-stack__content em {
    display: block;
    margin-top: 9px;
    color: var(--color-muted);
    font-size: 13px;
    font-style: normal;
}

.top-stack__thumb {
    height: 78px;
    overflow: hidden;
    background: #ddd;
}

.top-stack__thumb img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.top-stack__item:hover img {
    transform: scale(1.06);
}

/* QUICK LINE */

.quick-line {
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background: #fafafa;
}

.quick-line__inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.quick-line strong {
    flex-shrink: 0;
    color: #111;
    font-size: 15px;
    font-weight: 900;
}

.quick-line__list {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.quick-line__list::-webkit-scrollbar {
    display: none;
}

.quick-line__list a {
    position: relative;
    color: #444;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.quick-line__list a:hover {
    color: var(--color-primary);
}

.quick-line__list a + a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 1px;
    height: 12px;
    background: #d7d7d7;
    transform: translateY(-50%);
}

/* BRIEFING STRIP */

.briefing-strip {
    padding: 22px 0 0;
}

.briefing-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.briefing-item {
    min-height: 118px;
    padding: 20px;
    border: 1px solid var(--color-line);
    background: #fff;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.briefing-item:hover {
    border-color: #111;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.briefing-item span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
}

.briefing-item strong {
    display: block;
    margin-top: 10px;
    color: #222;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.briefing-item em {
    display: block;
    margin-top: 12px;
    color: var(--color-muted);
    font-size: 13px;
    font-style: normal;
}

/* HEADLINE SECTION */

.headline-section {
    padding-top: 42px;
}

.headline-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.08fr) minmax(330px, 0.92fr);
    gap: 28px;
    align-items: start;
}

/* 제목 라인 공통화: 주요뉴스 / 실시간 이슈 높이 맞춤 */

.section-head {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    border-top: 2px solid #111;
    border-bottom: 1px solid var(--color-line);
}

.section-head h2 {
    color: #111;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-head a {
    color: var(--color-sub);
    font-size: 13px;
    font-weight: 700;
}

.section-head a:hover {
    color: var(--color-primary);
}

.side-section-head {
    margin-bottom: 0;
}

/* STORY CARD */

.story-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-line);
}

.story-card:first-of-type {
    padding-top: 8px;
}

.story-card__thumb {
    height: 190px;
    display: block;
    overflow: hidden;
    background: #ddd;
}

.story-card__thumb img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.story-card:hover .story-card__thumb img {
    transform: scale(1.05);
}

.story-card__body {
    min-width: 0;
}

.story-category {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
}

.story-card h3 {
    color: #202124;
    font-size: 29px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.story-card h3 a:hover {
    color: var(--color-primary);
}

.story-card p {
    margin-top: 12px;
    color: #5f6368;
    font-size: 15px;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SIDE COLUMN */

.headline-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.side-widget {
    min-width: 0;
}

/* COMPACT NEWS */

.compact-news-list {
    display: flex;
    flex-direction: column;
}

.compact-news {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line);
}

.compact-news__thumb {
    height: 76px;
    overflow: hidden;
    background: #ddd;
}

.compact-news__thumb img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.compact-news:hover img {
    transform: scale(1.06);
}

.compact-news__body {
    min-width: 0;
}

.compact-news__body span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
}

.compact-news__body strong {
    display: -webkit-box;
    color: #222;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 850;
    letter-spacing: -0.035em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-news:hover strong {
    color: var(--color-primary);
}

.compact-news__body em {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-style: normal;
}

/* RANKING */

.ranking-widget {
    position: sticky;
    top: 170px;
}

.ranking-list {
    list-style: none;
}

.ranking-list li {
    border-bottom: 1px solid var(--color-line);
}

.ranking-list a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 0;
    align-items: start;
}

.ranking-list span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.ranking-list strong {
    color: #222;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ranking-list a:hover strong {
    color: var(--color-primary);
}

/* CARD NEWS */

.card-news-section {
    padding-top: 58px;
}

.card-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card-news {
    position: relative;
    min-height: 360px;
    display: block;
    overflow: hidden;
    background: #111;
}

.card-news__image {
    position: absolute;
    inset: 0;
}

.card-news__image img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.45s ease;
}

.card-news:hover .card-news__image img {
    transform: scale(1.06);
}

.card-news__body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.42) 45%,
            rgba(0, 0, 0, 0.04) 100%
        );
}

.card-news__body span {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    margin-bottom: 12px;
    border-radius: 3px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 900;
}

.card-news__body h3 {
    color: #fff;
    font-size: 25px;
    line-height: 1.32;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.card-news__body p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .main-stage__grid,
    .headline-layout {
        grid-template-columns: 1fr;
    }

    .top-stack {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 22px;
    }

    .briefing-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ranking-widget {
        position: static;
    }
}

@media (max-width: 900px) {
    .card-news-grid {
        grid-template-columns: 1fr;
    }

    .card-news {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .main-stage {
        padding-top: 18px;
    }

    .lead-news {
        min-height: 420px;
    }

    .lead-news__overlay {
        padding: 26px 22px 24px;
    }

    .lead-news h1 {
        font-size: 31px;
        line-height: 1.25;
    }

    .lead-news p {
        display: none;
    }

    .top-stack {
        grid-template-columns: 1fr;
    }

    .top-stack__item {
        grid-template-columns: minmax(0, 1fr) 108px;
    }

    .quick-line__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .briefing-strip__grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .story-card__thumb {
        height: 220px;
    }

    .story-card h3 {
        font-size: 24px;
    }

    .compact-news {
        grid-template-columns: 112px minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    .lead-news {
        min-height: 360px;
    }

    .lead-news h1 {
        font-size: 27px;
    }

    .top-stack__item {
        grid-template-columns: minmax(0, 1fr) 96px;
        gap: 12px;
    }

    .top-stack__thumb {
        height: 70px;
    }

    .story-card__thumb {
        height: 190px;
    }

    .story-card h3 {
        font-size: 22px;
    }

    .compact-news {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .compact-news__thumb {
        height: 68px;
    }

    .card-news {
        min-height: 280px;
    }

    .card-news__body {
        padding: 22px;
    }

    .card-news__body h3 {
        font-size: 22px;
    }
}

/* ARTICLE DETAIL PAGE */

.article-detail-page {
    background: #fff;
}

.article-detail-section {
    padding: 42px 0 0;
}

.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(300px, 1fr);
    gap: 48px;
    align-items: start;
}

.article-view {
    min-width: 0;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 600;
}

.article-breadcrumb a:hover {
    color: var(--color-primary);
}

.article-header {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-line);
}

.article-category {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    margin-bottom: 18px;
    border-radius: 3px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.article-header h1 {
    color: #111;
    font-size: 46px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.article-summary {
    margin-top: 18px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.04em;
}

.article-info-row {
    margin-top: 26px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
}

.article-byline {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.article-byline strong {
    color: #222;
    font-size: 15px;
    font-weight: 850;
}

.article-byline span {
    color: var(--color-muted);
    font-size: 13px;
}

.article-date {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
    color: var(--color-muted);
    font-size: 13px;
}

.article-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-actions button {
    height: 34px;
    padding: 0 13px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 750;
}

.article-actions button:hover {
    border-color: #111;
    color: #111;
}

/* VIDEO */

.article-video-box {
    margin-top: 32px;
}

.article-video {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
}

.article-video img {
    height: 460px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.article-video:hover img {
    transform: scale(1.04);
}

.video-dim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.25) 48%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button span {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid var(--color-primary);
}

.video-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: #fff;
}

.video-caption strong {
    display: block;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.video-caption p {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

/* IMAGE */

.article-main-image {
    margin-top: 34px;
}

.article-main-image img {
    max-height: 520px;
    object-fit: cover;
}

.article-main-image figcaption {
    margin-top: 10px;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* BODY */

.article-body {
    margin-top: 38px;
    color: #222;
    font-size: 18px;
    line-height: 1.95;
    font-weight: 450;
    letter-spacing: -0.035em;
}

.article-body p {
    margin-bottom: 28px;
}

.article-body blockquote {
    margin: 38px 0;
    padding: 28px 32px;
    border-left: 4px solid var(--color-primary);
    background: #f8f9fb;
    color: #111;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.article-point-box {
    margin: 38px 0;
    padding: 28px 30px;
    border: 1px solid var(--color-line);
    background: #fbfbfc;
}

.article-point-box strong {
    display: block;
    margin-bottom: 16px;
    color: #111;
    font-size: 18px;
    font-weight: 900;
}

.article-point-box ul {
    list-style: none;
}

.article-point-box li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    color: #444;
    font-size: 16px;
    line-height: 1.7;
}

.article-point-box li:last-child {
    margin-bottom: 0;
}

.article-point-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* TAGS */

.article-tags {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tags a {
    height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #f1f3f5;
    color: #333;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 750;
}

.article-tags a:hover {
    background: #111;
    color: #fff;
}

/* REPORTER */

.reporter-box {
    margin-top: 42px;
    padding: 24px;
    border: 1px solid var(--color-line);
    display: flex;
    gap: 16px;
    align-items: center;
}

.reporter-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 900;
    flex-shrink: 0;
}

.reporter-box strong {
    display: block;
    color: #111;
    font-size: 17px;
    font-weight: 900;
}

.reporter-box p {
    margin-top: 5px;
    color: var(--color-sub);
    font-size: 14px;
    line-height: 1.6;
}

/* RELATED */

.article-related {
    margin-top: 54px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-card {
    display: block;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: 14px;
}

.related-card__thumb {
    height: 132px;
    overflow: hidden;
    background: #ddd;
}

.related-card__thumb img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.related-card:hover img {
    transform: scale(1.06);
}

.related-card__body {
    padding-top: 12px;
}

.related-card__body span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
}

.related-card__body strong {
    display: -webkit-box;
    color: #222;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 850;
    letter-spacing: -0.04em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card:hover strong {
    color: var(--color-primary);
}

.related-card__body em {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-style: normal;
}

/* SIDE */

.article-side {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-side-widget {
    min-width: 0;
}

.detail-latest-list {
    display: flex;
    flex-direction: column;
}

.detail-latest-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line);
}

.detail-latest-item span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
}

.detail-latest-item strong {
    display: block;
    color: #222;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.detail-latest-item:hover strong {
    color: var(--color-primary);
}

.detail-latest-item em {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-style: normal;
}

.article-ad-box {
    min-height: 250px;
    border: 1px solid var(--color-line);
    background: #f8f9fb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    text-align: center;
    padding: 24px;
}

.article-ad-box span {
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.article-ad-box strong {
    margin-top: 8px;
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

.article-ad-box p {
    margin-top: 6px;
    font-size: 13px;
}

/* RESPONSIVE - DETAIL */

@media (max-width: 1100px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .article-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .article-ad-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .article-detail-section {
        padding-top: 28px;
    }

    .article-header h1 {
        font-size: 32px;
        line-height: 1.28;
    }

    .article-summary {
        font-size: 17px;
    }

    .article-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .article-date {
        text-align: left;
    }

    .article-video img {
        height: 320px;
    }

    .play-button {
        width: 62px;
        height: 62px;
    }

    .video-caption strong {
        font-size: 19px;
    }

    .article-body {
        font-size: 17px;
        line-height: 1.9;
    }

    .article-body blockquote {
        padding: 24px;
        font-size: 19px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-card__thumb {
        height: 210px;
    }

    .article-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .article-header h1 {
        font-size: 28px;
    }

    .article-video img {
        height: 260px;
    }

    .video-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .article-main-image img {
        max-height: 360px;
    }

    .article-actions button {
        flex: 1;
    }

    .reporter-box {
        align-items: flex-start;
    }
}

/* CATEGORY LIST PAGE */

.category-list-page {
    background: #fff;
}

/* CATEGORY HEAD */

.category-page-head {
    padding: 42px 0 30px;
    border-bottom: 1px solid var(--color-line);
    background: #fff;
}

.category-title-box span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.category-title-box h1 {
    color: #111;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.category-title-box p {
    margin-top: 12px;
    color: var(--color-sub);
    font-size: 16px;
    line-height: 1.65;
}

/* LAYOUT */

.category-list-section {
    padding-top: 38px;
}

.category-list-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.08fr) minmax(310px, 0.92fr);
    gap: 42px;
    align-items: start;
}

.category-list-main {
    min-width: 0;
}

.category-list-side {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ARTICLE LIST */

.category-article-list {
    border-bottom: 1px solid var(--color-line);
}

.category-article-item {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-line);
}

.category-article-item:first-child {
    padding-top: 8px;
}

.category-article-item:last-child {
    border-bottom: 0;
}

.category-article-thumb {
    height: 156px;
    display: block;
    overflow: hidden;
    background: #ddd;
}

.category-article-thumb img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-article-item:hover .category-article-thumb img {
    transform: scale(1.05);
}

.category-article-body {
    min-width: 0;
}

.category-article-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
}

.category-article-body h3 {
    color: #222;
    font-size: 25px;
    line-height: 1.34;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.category-article-body h3 a:hover {
    color: var(--color-primary);
}

.category-article-body p {
    margin-top: 11px;
    color: #5f6368;
    font-size: 15px;
    line-height: 1.72;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-article-meta {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    color: var(--color-muted);
    font-size: 13px;
}

.category-article-meta span + span::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 12px;
    border-radius: 50%;
    background: currentColor;
    vertical-align: middle;
}

/* MORE */

.category-more-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.category-more-btn {
    min-width: 180px;
    height: 46px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 850;
}

.category-more-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* SIDE */

.category-ad-box {
    min-height: 250px;
    border: 1px solid var(--color-line);
    background: #f8f9fb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    text-align: center;
    padding: 24px;
}

.category-ad-box span {
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.category-ad-box strong {
    margin-top: 8px;
    color: #333;
    font-size: 20px;
    font-weight: 900;
}

.category-ad-box p {
    margin-top: 6px;
    font-size: 13px;
}

/* RESPONSIVE - CATEGORY */

@media (max-width: 1100px) {
    .category-list-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .category-list-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .ranking-widget {
        position: static;
    }
}

@media (max-width: 768px) {
    .category-page-head {
        padding: 30px 0 24px;
    }

    .category-title-box h1 {
        font-size: 32px;
    }

    .category-title-box p {
        font-size: 15px;
    }

    .category-article-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .category-article-thumb {
        height: 220px;
    }

    .category-article-body h3 {
        font-size: 22px;
    }

    .category-list-side {
        grid-template-columns: 1fr;
    }

    .category-ad-box {
        display: none;
    }
}

@media (max-width: 520px) {
    .category-article-thumb {
        height: 190px;
    }

    .category-article-body h3 {
        font-size: 21px;
    }
}