@font-face {
    font-family: 'Pretendard';
    src: url('/font/Pretendard-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('/font/Pretendard-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('/font/Pretendard-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard JP';
    src: url('/font/PretendardJP-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard JP';
    src: url('/font/PretendardJP-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard JP';
    src: url('/font/PretendardJP-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand: #000000;
    --brand-dark: #000000;
    --accent: #000000;
    --bg: #ffffff;
    --surface: #ffffff;
    --border: #d7d7d7;
    --text: #111111;
    --muted: #666666;
    --headline: #000000;
    --font-sans: 'Pretendard', 'Pretendard JP';
}

* {
    box-sizing: border-box;
}

html {
    font-size: 13px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: #ffffff;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(6px);
}

.top-line {
    background: var(--brand-dark);
    color: #dbe6f3;
    font-size: 12px;
    padding: 8px 0;
}

.container {
    width: min(1260px, calc(100% - 24px));
    margin: 0 auto;
}

.popup-plain-page {
    background: #fff;
}

.popup-plain-content {
    width: min(860px, calc(100% - 28px));
    margin: 18px auto 24px;
}

.popup-plain-body {
    color: #111;
    line-height: 1.75;
    font-size: 16px;
}

.popup-plain-body ul {
    margin: 0 0 1.1em;
    padding-left: 1.25em;
}

.top-line .container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -0.3px;
    color: var(--headline);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-main-icon {
    height: 1em;
    width: auto;
    display: block;
    flex: 0 0 auto;
}

.logo-sub {
    font-size: 12px;
    color: var(--muted);
}

.search-box {
    width: min(420px, 100%);
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.search-box input {
    border: 0;
    outline: 0;
    padding: 12px 14px;
    width: 100%;
    background: transparent;
}

.search-box button {
    border: 0;
    background: var(--brand);
    color: #fff;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.btn {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.btn.primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.btn.danger {
    background: #fff0f1;
    border-color: #f2c8cc;
    color: #9d1d27;
}

.category-nav {
    border-top: 1px solid var(--border);
    border-bottom: 2px solid #000000;
    background: #fff;
}

.category-nav .container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hamburger {
    display: none;
    border: 0;
    background: transparent;
    font-size: 24px;
    padding: 8px 4px;
    color: var(--brand-dark);
}

.category-list {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.category-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    color: #1e2a37;
}

.category-list a:hover,
.category-list a.active {
    background: #e9f1f9;
    color: var(--brand-dark);
}

.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 18px auto 42px;
}

.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.news-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.news-card .thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e8ecf2;
}

.news-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .body {
    padding: 14px;
}

.label-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.category-label {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
    color: #fff;
}

.meta {
    color: var(--muted);
    font-size: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.title-lg {
    font-family: var(--font-sans);
    font-size: 33px;
    font-weight: 700;
    color: var(--headline);
    line-height: 1.3;
    margin: 8px 0 12px;
}

.title-md {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 8px 0 10px;
}

.title-sm {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    margin: 6px 0 8px;
}

.summary {
    color: #313a47;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 12px;
}

.block-title h2 {
    margin: 0;
    font-size: 23px;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--headline);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.grid-cards.compact {
    grid-template-columns: repeat(4, 1fr);
}

.feed-list {
    display: grid;
    gap: 12px;
}

.feed-row {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 220px 1fr;
    overflow: hidden;
}

.feed-row .body {
    padding: 12px;
}

.sidebar-stack {
    display: grid;
    gap: 12px;
}

.rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rank-list li {
    border-top: 1px dashed #d9e1ea;
    padding: 10px 0;
    font-size: 14px;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
}

.rank-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.ad-slot {
    border: 0;
    border-radius: 0;
    background: transparent;
    min-height: 0;
    display: block;
    color: inherit;
    font-size: inherit;
    text-align: center;
    padding: 0;
}

.ad-fallback-placeholder {
    width: 100%;
    min-height: 90px;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #666;
}

.home-newspaper {
    gap: 18px;
}

.home-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
}

.home-content-column {
    display: grid;
    gap: 18px;
}

.home-right-column {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 116px;
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #202938;
}

.home-section-head.compact {
    border-bottom-width: 1px;
}

.home-section-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.home-section-head a {
    font-size: 13px;
    color: #445a75;
}

.home-gpt-picks {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
}

.gpt-pick-strip {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.gpt-pick-item {
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    background: #fafcff;
    padding: 10px;
    min-height: 82px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
}

.gpt-pick-item .rank {
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
}

.gpt-pick-item .title {
    font-size: 14px;
    line-height: 1.45;
    color: #1b2532;
}

.home-headline-panel {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
}

.headline-lead a {
    display: block;
}

.headline-media {
    aspect-ratio: 16 / 9;
    background: #e9edf4;
}

.headline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headline-copy {
    padding: 16px;
}

.headline-copy h1 {
    margin: 8px 0 10px;
    font-size: 41px;
    line-height: 1.28;
    letter-spacing: -0.6px;
}

.headline-copy p {
    margin: 0;
    color: #2f3a47;
    font-size: 16px;
    line-height: 1.75;
}

.kicker-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.headline-subpack {
    border-left: 1px solid var(--border);
    background: #fcfdff;
}

.subpack-item {
    border-bottom: 1px solid #e7ecf2;
}

.subpack-item:last-child {
    border-bottom: 0;
}

.subpack-item a {
    display: block;
    padding: 14px 14px 13px;
}

.subpack-item h3 {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.home-inline-ad {
    min-height: 96px;
}

.home-category-section {
    display: grid;
    gap: 12px;
}

.category-block {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.category-block-head {
    padding: 12px 14px;
    border-bottom: 1px solid #e9edf3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-block-head h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.category-block-head a {
    font-size: 13px;
    color: #4e627b;
}

.category-block-body {
    padding: 12px;
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 12px;
}

.category-lead .thumb {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #ebeff5;
}

.category-lead .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-lead h4 {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
}

.category-headline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
}

.category-headline-list li {
    border-bottom: 1px solid #edf1f6;
}

.category-headline-list li:last-child {
    border-bottom: 0;
}

.category-headline-list a {
    display: block;
    padding: 9px 0;
    line-height: 1.48;
    font-size: 15px;
    color: #1d2835;
}

.home-issue-section {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
}

.issue-keyword-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.keyword-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccd9e9;
    background: #f4f8ff;
    color: #16406c;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 500;
}

.home-most-viewed-section {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
}

.most-viewed-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.most-viewed-card {
    border: 1px solid #e7edf5;
    border-radius: 8px;
    background: #fbfdff;
}

.most-viewed-card a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px;
}

.most-viewed-card .order {
    min-width: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.most-viewed-card h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.home-latest-section {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px 16px;
}

.dense-news-list {
    margin-top: 10px;
    display: grid;
}

.dense-news-row {
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e8edf3;
}

.dense-news-row:last-child {
    border-bottom: 0;
}

.dense-news-row .thumb {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #ebeff5;
}

.dense-news-row .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dense-news-row h3 {
    margin: 7px 0 8px;
    font-size: 23px;
    line-height: 1.38;
    letter-spacing: -0.35px;
}

.dense-news-row p {
    margin: 0 0 8px;
    color: #36414e;
    line-height: 1.68;
    font-size: 15px;
}

.rail-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    padding: 12px;
}

.keyword-rank-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.keyword-rank-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #e5ebf2;
}

.keyword-rank-list li:last-child {
    border-bottom: 0;
}

.keyword-rank-list .rank {
    font-weight: 700;
    color: #2f4a66;
    font-size: 13px;
}

.keyword-rank-list a {
    font-size: 14px;
    color: #1d2936;
}

.rail-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.rail-mini-list article {
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 9px;
}

.rail-mini-list article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.rail-mini-list h4 {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.ad-rail-slot h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #54667e;
    letter-spacing: -0.1px;
}

.empty-note {
    margin: 10px 0 0;
    color: #6d7c8d;
    font-size: 13px;
}

.breadcrumb {
    margin: 16px 0;
    color: #637283;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--brand);
}

.article-detail-page {
    margin-top: 10px;
}

.detail-temu-banner {
    margin: 2px 0 14px;
}

.detail-temu-reaction-banner {
    margin: 10px 0 16px;
}

.detail-temu-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 0;
}

.detail-temu-carousel .temu-carousel-track {
    gap: 8px;
}

.detail-temu-carousel .temu-carousel-item {
    flex: 0 0 calc((100% - 48px) / 7);
    width: calc((100% - 48px) / 7);
    min-width: calc((100% - 48px) / 7);
}

.detail-temu-carousel .temu-carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 0;
    border-radius: 0;
}

/* Detail page top Temu banner: slightly smaller */
.detail-temu-banner .detail-temu-carousel .temu-carousel-track {
    gap: 6px;
}

.detail-temu-banner .detail-temu-carousel .temu-carousel-item {
    flex: 0 0 calc((100% - 42px) / 8);
    width: calc((100% - 42px) / 8);
    min-width: calc((100% - 42px) / 8);
}

.detail-temu-ad-label {
    position: absolute;
    right: 6px;
    bottom: 4px;
    font-size: 10px;
    line-height: 1;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 4px;
}

.article-detail-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.article-left-col {
    display: grid;
    gap: 16px;
    border-right: 1px solid #dcdcdc;
    padding-right: 16px;
    align-self: start;
    position: sticky;
    top: 110px;
}

.article-left-col .side-module:first-child {
    border-top: 0;
    padding-top: 0;
}

.reporter-profile-box {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.reporter-profile-box .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f2f2;
}

.reporter-profile-box .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reporter-profile-box .copy {
    display: grid;
    gap: 2px;
}

.reporter-profile-box .copy strong {
    font-size: 16px;
    line-height: 1.25;
}

.reporter-profile-box .copy small {
    color: #666;
    font-size: 12px;
}

.reporter-profile-box .copy .reporter-email {
    color: #888;
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.article-left-col .reporter-module .home-section-head.compact h2 {
    font-size: 12px !important;
    font-weight: 500;
    color: #666;
}

.reporter-stat {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e2e2;
    color: #333;
    font-size: 13px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
}

.article-main {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.article-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.28;
    color: var(--headline);
    margin: 10px 0;
}

.article-subtitle {
    color: #3f4b59;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.article-byline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 8px;
    font-size: 13px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    position: relative;
}

.article-byline-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    text-align: left;
    min-width: 0;
}

.article-byline-actions {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
}

.byline-icon-btn {
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
}

.byline-icon-btn .ic {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.byline-icon-btn .bi {
    font-size: 19px;
    line-height: 1;
    display: block;
}

.kakao-share-icon {
    width: 20px;
    height: 20px;
    border-radius: 0;
    display: block;
}

.byline-icon-btn.is-active {
    color: #111;
    opacity: .6;
}

.article-share-popover {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    width: min(340px, 100%);
    border: 1px solid #d8dde5;
    background: #fff;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.article-share-kakao-btn {
    width: 100%;
}

.article-share-copy-row {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
}

.article-share-copy-row input {
    width: 100%;
    min-width: 0;
    border: 1px solid #d6dbe3;
    padding: 8px 10px;
    font-size: 13px;
    color: #333;
}

.article-hero {
    margin: 18px 0 20px;
}

.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.article-content {
    line-height: 1.95;
    font-size: 18px;
    color: #1d2733;
    word-break: keep-all;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: #0d2238;
    margin: 0.7em 0 .7em;
    line-height: 1.45;
}

.article-content p {
    font-size: 1.2rem;
    margin: 0 0 1.05em;
}

.article-content ul,
.article-content ol {
    padding-left: 1.2em;
    margin: 1em 0;
}

.article-content img,
.article-content iframe,
.article-content table {
    max-width: 100%;
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.article-content iframe {
    width: 100%;
    min-height: 340px;
    border: 0;
    margin: 1.2em 0;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 15px;
}

.article-content table th,
.article-content table td {
    border: 1px solid #d7dde7;
    padding: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--brand);
    margin: 1.2em 0;
    padding: 10px 12px;
    background: #eef4fa;
    color: #2a3847;
}

.article-content .in-content-ad {
    text-align: center;
    margin: 40px 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-item {
    display: inline-block;
    font-size: 12px;
    color: #2f4663;
    border: 1px solid #c8d8ea;
    border-radius: 999px;
    padding: 5px 10px;
    background: #f1f7ff;
}

.article-reaction-panel,
.article-comments-panel {
    margin-top: 18px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.reaction-btn-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.reaction-btn {
    border: 0;
    background: transparent;
    padding: 6px 2px;
    font-size: 14px;
    cursor: pointer;
    display: grid;
    gap: 7px;
    justify-items: center;
    align-items: center;
    min-width: 0;
    width: 100%;
    min-height: 84px;
}

.reaction-emoji {
    font-size: 40px;
    line-height: 1;
    transition: transform .18s ease;
}

.reaction-btn.is-active {
    color: #000;
}

.reaction-btn.is-active .reaction-emoji {
    transform: scale(1.08);
}

.reaction-count {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
}

.reaction-login-hint {
    margin: 10px 0 0;
    font-size: 13px;
    color: #66758a;
}

.reaction-login-hint a {
    text-decoration: underline;
}

.comment-total {
    color: #6a7584;
    font-size: 13px;
}

.article-comment-form {
    margin-top: 8px;
}

.article-comment-form textarea {
    width: 100%;
    min-height: 110px;
    resize: vertical;
    border: 1px solid #d4dce5;
    border-radius: 10px;
    padding: 10px;
    font-family: var(--font-sans);
    font-size: 14px;
}

.comment-form-foot {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.comment-form-foot span {
    font-size: 12px;
    color: #6a7584;
}

.article-comment-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
}

.article-comment-item {
    border-top: 1px solid #ecf0f5;
    padding: 10px 0;
}

.article-comment-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.article-comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.article-comment-meta strong {
    font-size: 14px;
}

.article-comment-meta small {
    color: #6a7584;
    font-size: 12px;
}

.article-comment-content {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    white-space: pre-wrap;
    color: #1d2733;
}

.comment-delete-btn {
    border: 1px solid #d7dce3;
    background: #fff;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
}

.comment-empty {
    border-top: 1px solid #ecf0f5;
    padding: 10px 0;
    font-size: 13px;
    color: #6a7584;
}

.comment-more-wrap {
    margin-top: 10px;
    text-align: center;
}

.comment-more-wrap .btn {
    min-width: 120px;
}

.share-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.share-btn {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
}

.prev-next {
    margin-top: 20px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.prev-next a {
    display: block;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    font-size: 14px;
}

.article-mass-section {
    margin-top: 24px;
    border-top: 1px solid #000;
    padding-top: 12px;
}

.article-mass-section .home-section-head {
    margin-bottom: 10px;
}

.article-category-many {
    display: grid;
    gap: 4px;
}

.article-latest-many {
    margin-top: 4px;
}

.article-wide-news {
    margin-top: 26px;
}

.article-wide-news .article-mass-section:first-child {
    margin-top: 0;
}

.article-wide-news .grid-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-wide-news .news-card,
.article-wide-news .news-card .thumb,
.article-wide-news .news-card .thumb img,
.article-wide-news .latest-line-item .thumb,
.article-wide-news .latest-line-item .thumb img,
.article-wide-news .category-lead-news .thumb,
.article-wide-news .category-lead-news .thumb img {
    border-radius: 0 !important;
}

.article-wide-news .news-card {
    overflow: visible;
}

.article-related-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.article-related-split-item {
    border: 0;
}

.article-related-split-link {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.article-related-split-link .thumb {
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
    border-radius: 0 !important;
    overflow: hidden;
}

.article-related-split-link .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.article-related-split-link .copy h3 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.34;
    color: #000;
}

.article-related-split-link .copy p {
    margin: 0;
}

@media (max-width: 1260px) {
    .article-detail-grid {
        grid-template-columns: 220px minmax(0, 1fr) 300px;
        gap: 18px;
    }

    .article-left-col {
        padding-right: 12px;
    }

    .article-wide-news .grid-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .article-related-split-link {
        grid-template-columns: 160px minmax(0, 1fr);
    }
}

@media (max-width: 1180px) {
    .article-detail-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .article-left-col {
        position: static;
        top: auto;
        border-right: 0;
        padding-right: 0;
    }

    .article-right-col {
        position: static;
        top: auto;
        border-left: 0;
        padding-left: 0;
        border-top: 1px solid #dcdcdc;
        padding-top: 12px;
    }

    .article-wide-news .grid-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.page-link {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 8px;
    min-width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 10px;
    font-size: 14px;
}

.page-link.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

/* Search page */
.search-page {
    display: grid;
    gap: 14px;
}

.search-top-ad {
    width: 100%;
    min-height: 90px;
    margin: 4px 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-top-ad .kakao_ad_area {
    display: block !important;
    width: 728px !important;
    height: 90px !important;
    max-width: 728px;
}

.search-page-grid {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 250px;
    gap: 18px;
    align-items: start;
}

.search-left-rail,
.search-right-rail {
    align-self: start;
    position: sticky;
    top: 110px;
}

.search-center-col {
    display: grid;
    gap: 14px;
}

.search-left-ad {
    width: 160px;
    min-height: 600px;
}

.search-left-ad .kakao_ad_area {
    display: block !important;
    width: 160px !important;
    height: 600px !important;
}

.search-right-ad {
    width: 250px;
    min-height: 250px;
}

.search-right-ad .kakao_ad_area {
    display: block !important;
    width: 250px !important;
    height: 250px !important;
}

.search-keyword-module {
    margin-bottom: 10px;
}

.search-results-panel {
    padding-top: 8px;
}

.search-panel {
    border-bottom: 2px solid #111111;
    padding: 0 0 14px;
}

.search-panel-title {
    margin: 0 0 10px;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.3;
    color: #111111;
}

.search-page-form {
    display: grid;
    gap: 8px;
}

.search-page-label {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
}

.search-page-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 10px;
}

.search-page-input {
    width: 100%;
    height: 46px;
    border: 1px solid #222222;
    background: #ffffff;
    padding: 0 13px;
    font-size: 1.3rem;
    color: #111111;
    outline: none;
}

.search-page-input:focus {
    border-color: #000000;
}

.search-page-submit {
    height: 46px;
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
}

.search-page-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #555555;
    font-size: 1.2rem;
}

.search-page-meta strong {
    color: #111111;
}

.search-result-list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-result-item {
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}

.search-result-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.search-result-title {
    margin: 0 0 8px;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111111;
    transition: color 0.15s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.search-result-link:hover .search-result-title {
    color: #666666;
}

.search-result-summary {
    margin: 0;
    color: #444444;
    font-size: 1.2rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.search-result-meta {
    display: inline-block;
    margin-top: 6px;
    color: #777777;
    font-size: 1.1rem;
    font-weight: 600;
}

.search-empty-panel {
    padding: 14px 0;
}

.search-empty-text {
    margin: 0;
    font-size: 1.3rem;
    color: #666666;
}

@media (max-width: 720px) {
    .search-page-form-row {
        grid-template-columns: 1fr;
    }

    .search-page-submit {
        width: 100%;
    }

    .search-page-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1240px) {
    .search-page-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .search-left-rail,
    .search-right-rail {
        position: static;
        top: auto;
        width: 100%;
        max-width: 100%;
    }

    .search-center-col {
        order: 1;
    }

    .search-left-rail {
        order: 2;
    }

    .search-right-rail {
        order: 3;
    }

    .search-left-ad,
    .search-right-ad {
        width: 100%;
        min-height: 0;
    }

    .search-left-ad .kakao_ad_area {
        width: 160px !important;
        max-width: 100% !important;
        height: 600px !important;
    }

    .search-right-ad .kakao_ad_area {
        width: 250px !important;
        max-width: 100% !important;
        height: 250px !important;
    }
}

@media (max-width: 960px) {
    .search-top-ad {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .search-page-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .search-center-col,
    .search-panel,
    .search-results-panel,
    .search-result-list-clean,
    .search-result-item,
    .search-result-link {
        min-width: 0;
        max-width: 100%;
        overflow: visible !important;
    }

    .search-right-rail {
        position: static;
        top: auto;
        width: 100%;
        max-width: 100%;
    }

    .search-right-ad {
        width: 100%;
    }

    .search-top-ad .kakao_ad_area {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 90px;
        display: block !important;
        margin: 0 auto !important;
    }

    .search-left-ad .kakao_ad_area {
        width: 160px !important;
        max-width: 100% !important;
        height: 600px !important;
    }

    .search-right-ad .kakao_ad_area {
        width: 250px !important;
        max-width: 100% !important;
        height: 250px !important;
    }

    .search-top-ad iframe,
    .search-right-ad iframe,
    .search-left-ad iframe {
        max-width: 100% !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .search-panel-title {
        font-size: 2rem;
    }

    .search-result-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 720px) {
    .search-keyword-module {
        margin-top: 4px;
    }

    .search-panel-title {
        font-size: 1.8rem;
    }

    .search-page-input,
    .search-page-submit {
        height: 44px;
    }
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid #000;
    background: #000;
    padding: 24px 0 28px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
}

.footer-copy {
    color: #fff;
    font-size: 13px;
}

.is_blind {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.profile-page {
    max-width: 780px;
}

.profile-edit-form {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.profile-edit-form label {
    font-size: 14px;
    font-weight: 700;
}

.profile-edit-form input {
    width: 100%;
    border: 1px solid #d7dde5;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 14px;
}

.profile-readonly {
    margin-top: 6px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.profile-readonly div {
    border: 1px solid #e1e7ef;
    border-radius: 10px;
    padding: 10px;
    background: #fafcff;
}

.profile-readonly small {
    display: block;
    color: #6b7a8d;
    font-size: 12px;
}

.profile-readonly strong {
    display: block;
    margin-top: 4px;
    font-size: 14px;
}

.profile-form-actions {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.profile-account-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.profile-account-actions form {
    margin: 0;
}

.profile-account-actions .btn {
    min-width: 110px;
    text-align: center;
}

.profile-edit-message {
    margin: 0;
    min-height: 20px;
}

.confirm-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    z-index: 3000;
    padding: 20px;
}

.confirm-modal.is-open {
    display: flex;
}

.confirm-modal-dialog {
    width: min(420px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 20px 18px 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.confirm-modal-dialog h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
}

.confirm-modal-dialog p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.confirm-modal-sub {
    margin-top: 6px !important;
    color: #666;
}

.confirm-modal-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.site-footer a,
.site-footer .footer-links,
.site-footer .footer-copy {
    color: #fff !important;
}

.mobile-nav {
    display: none;
    padding: 8px 0 12px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav .category-list {
    flex-wrap: wrap;
    white-space: normal;
}

.error-text {
    color: #b0222c;
    font-size: 12px;
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .grid-cards.compact {
        grid-template-columns: repeat(3, 1fr);
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .home-two-column {
        grid-template-columns: 1fr;
    }

    .home-right-column {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .home-headline-panel {
        grid-template-columns: 1fr;
    }

    .headline-subpack {
        border-left: 0;
        border-top: 1px solid var(--border);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gpt-pick-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dense-news-row h3 {
        font-size: 21px;
    }
}

@media (max-width: 860px) {
    .main-head {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .logo-wrap {
        width: 100%;
    }

    .search-box {
        width: 100%;
        order: 3;
    }

    .header-actions {
        margin-left: auto;
    }

    .hamburger {
        display: inline-block;
    }

    .category-list.desktop-only {
        display: none;
    }

    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cards.compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .feed-row {
        grid-template-columns: 1fr;
    }

    .article-title {
        font-size: 31px;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.9;
    }

    .article-content iframe {
        min-height: 240px;
    }

    .home-right-column {
        grid-template-columns: 1fr;
    }

    .gpt-pick-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .headline-copy h1 {
        font-size: 33px;
    }

    .category-block-body {
        grid-template-columns: 1fr;
    }

    .dense-news-row {
        grid-template-columns: 1fr;
    }

    .most-viewed-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 16px);
    }

    .title-lg {
        font-size: 27px;
    }

    .title-md {
        font-size: 20px;
    }

    .title-sm {
        font-size: 17px;
    }

    .grid-cards,
    .grid-cards.compact {
        grid-template-columns: 1fr;
    }

    .article-main {
        padding: 0;
        border-radius: 0;
    }

    .article-share-popover {
        right: auto;
        left: 0;
        width: min(92vw, 340px);
    }

    .article-title {
        font-size: 28px;
        line-height: 1.34;
    }

    .article-subtitle {
        font-size: 17px;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.95;
    }

    .article-content iframe {
        min-height: 210px;
    }

    .prev-next {
        grid-template-columns: 1fr;
    }

    .reaction-btn-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .home-gpt-picks,
    .home-headline-panel,
    .home-category-section,
    .home-issue-section,
    .home-most-viewed-section,
    .home-latest-section,
    .rail-card {
        border-radius: 10px;
    }

    .home-section-head h2 {
        font-size: 20px;
    }

    .gpt-pick-strip {
        grid-template-columns: 1fr;
    }

    .headline-copy {
        padding: 13px;
    }

    .headline-copy h1 {
        font-size: 28px;
        line-height: 1.32;
    }

    .headline-copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .headline-subpack {
        grid-template-columns: 1fr;
    }

    .dense-news-row h3 {
        font-size: 20px;
        margin: 6px 0 7px;
    }
}

/* Monochrome newspaper override */
.site-header {
    background: #ffffff !important;
    backdrop-filter: none !important;
}

.top-line {
    background: #ffffff !important;
    color: #666666 !important;
    border-bottom: 1px solid #d7d7d7;
}

.logo-main,
.home-section-head h2,
.headline-copy h1,
.dense-news-row h3,
.article-title,
.block-title h2 {
    color: #000000 !important;
}

.search-box,
.btn,
.news-card,
.feed-row,
.home-gpt-picks,
.home-headline-panel,
.category-block,
.home-issue-section,
.home-most-viewed-section,
.home-latest-section,
.rail-card,
.article-main {
    background: #ffffff !important;
    border-color: #d7d7d7 !important;
}

.search-box button,
.btn.primary,
.page-link.active {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
}

.btn.danger {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #000000 !important;
}

.category-list a {
    color: #111111 !important;
}

.category-list a:hover,
.category-list a.active {
    background: #f1f1f1 !important;
    color: #000000 !important;
}

.category-label {
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 999px;
}

.meta,
.logo-sub,
.home-section-head a,
.footer-copy {
    color: #666666 !important;
}

.summary,
.headline-copy p,
.dense-news-row p,
.article-content {
    color: #222222 !important;
}

.headline-media,
.news-card .thumb,
.dense-news-row .thumb,
.category-lead .thumb {
    background: #f3f3f3 !important;
}

.subpack-item,
.category-headline-list li,
.dense-news-row,
.keyword-rank-list li,
.rail-mini-list article,
.rank-list li,
.article-byline,
.prev-next a {
    border-color: #e2e2e2 !important;
}

.home-section-head,
.category-block-head {
    border-color: #000000 !important;
}

.keyword-chip,
.tag-item,
.share-btn,
.page-link {
    background: #ffffff !important;
    color: #111111 !important;
    border-color: #cfcfcf !important;
}

.most-viewed-card,
.gpt-pick-item,
.subpack-item,
.headline-subpack,
.category-block,
.home-gpt-picks,
.rail-card {
    background: #ffffff !important;
}

.most-viewed-card .order,
.gpt-pick-item .rank,
.keyword-rank-list .rank {
    color: #000000 !important;
}

.ad-slot {
    background: transparent !important;
    color: inherit !important;
    border: 0 !important;
}

.global-news-toast {
    position: fixed;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%) translateY(14px);
    z-index: 3000;
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    white-space: nowrap;
}

.global-news-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.article-content blockquote {
    background: #ffffff !important;
    border-left-color: #000000 !important;
    color: #222222 !important;
}

/* Newspaper home layout (non-card) */
.home-newspaper {
    gap: 14px;
}

.home-top-picks {
    border-top: 2px solid #000;
    border-bottom: 1px solid #d7d7d7;
    padding: 10px 0 12px;
}

.pick-headline-row {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.pick-headline-row a {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.45;
    padding-right: 8px;
    border-right: 1px solid #e3e3e3;
}

.pick-headline-row a:last-child {
    border-right: 0;
}

.pick-rank {
    min-width: 16px;
    font-weight: 700;
    color: #000;
}

.home-newspaper-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.home-main-col {
    display: grid;
    gap: 22px;
}

.headline-section {
    border-top: 0;
    padding-top: 12px;
}

.headline-main-link {
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    gap: 16px;
}

.headline-main-image {
    aspect-ratio: 16 / 10;
    background: #f4f4f4;
}

.headline-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headline-main-copy h1 {
    margin: 8px 0 8px;
    font-size: 44px;
    line-height: 1.24;
    letter-spacing: -0.7px;
    color: #000;
}

.headline-main-copy p {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1.75;
}

.headline-under-two {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #dfdfdf;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.under-two-item {
    border-right: 1px solid #e2e2e2;
    padding-right: 12px;
}

.under-two-item:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
}

.under-two-item a {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.under-two-item .thumb {
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
    margin-bottom: 0;
}

.under-two-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.under-two-item h3 {
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.42;
    color: #000;
    letter-spacing: -0.2px;
}

.under-two-item .copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
}

.home-inline-ad {
    min-height: 90px;
}

.ad-slot.home-inline-ad,
.ad-slot.article-inline-ad {
    width: 100%;
    min-height: 90px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-slot.home-inline-ad .kakao_ad_area {
    display: block !important;
    width: 728px !important;
    height: 90px !important;
    max-width: 728px;
}

.ad-slot.article-inline-ad {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ad-slot.article-inline-ad .kakao_ad_area {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 90px;
}

.ad-slot.article-inline-ad iframe {
    width: 100% !important;
    max-width: 100% !important;
}

.ad-slot.article-inline-ad.article-top-ad {
    margin: 2px auto 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-slot.article-inline-ad.article-top-ad .kakao_ad_area {
    display: block !important;
    width: 728px !important;
    height: 90px !important;
    max-width: 728px;
}

@media (max-width: 860px) {
    .ad-slot.home-inline-ad .kakao_ad_area,
    .ad-slot.article-inline-ad .kakao_ad_area {
        width: 100% !important;
        height: auto !important;
        min-height: 90px;
    }

    .ad-slot.article-inline-ad.article-top-ad .kakao_ad_area {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 90px;
    }
}

.category-inline-ad {
    margin: 12px 0 6px;
}

.category-inline-ad .ad-slot {
    min-height: 96px;
}

.most-read-section,
.latest-line-section {
    border-top: 1px solid #000;
    padding-top: 12px;
}

.category-news-section {
    border-top: 0;
    padding-top: 12px;
}

.category-top-headline-wrap {
    border-top: 1px solid #000;
    padding-top: 12px;
}

.headline-popular-prefix {
    display: inline-block;
    margin-right: 10px;
    border: 1px solid #000;
    padding: 1px 8px;
    font-size: 0.55em;
    font-weight: 700;
    line-height: 1.35;
    vertical-align: middle;
}

.category-top-headline-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.category-top-headline-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 14px;
    align-items: start;
}

.category-top-headline-link .copy h3 {
    margin: 8px 0 8px;
    font-size: 34px;
    line-height: 1.32;
    color: #000;
}

.category-top-headline-link .copy p {
    margin: 0;
    font-size: 17px;
    line-height: 1.68;
    color: #222;
}

.category-top-headline-link .thumb {
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
}

.category-top-headline-link .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-news-block {
    border-bottom: 1px solid #dcdcdc;
    padding: 12px 0;
}

.category-news-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.category-news-head h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

.category-news-head a {
    font-size: 13px;
    color: #666;
}

.category-news-body {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 16px;
}

.category-lead-news .thumb {
    aspect-ratio: 16 / 9;
    background: #f2f2f2;
    margin-bottom: 8px;
}

.category-lead-news .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-lead-news h4 {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
}

.category-line-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-line-list li {
    border-bottom: 1px solid #ededed;
}

.category-line-list li:last-child {
    border-bottom: 0;
}

.category-line-list a {
    display: block;
    padding: 9px 0;
    font-size: 15px;
    line-height: 1.45;
}

.most-read-line-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.most-read-line-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid #ededed;
}

.most-read-line-list .order {
    font-weight: 700;
    color: #000;
}

.latest-line-list {
    margin-top: 10px;
    display: grid;
}

.latest-line-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* Category page lower list: slightly larger thumbnails */
.category-newspaper-page .latest-line-item {
    grid-template-columns: 240px minmax(0, 1fr);
}

.latest-line-item .thumb {
    aspect-ratio: 16 / 9;
    background: #f3f3f3;
}

.latest-line-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-line-item h3 {
    margin: 8px 0 8px;
    font-size: 25px;
    line-height: 1.35;
    color: #000;
}

.latest-line-item p {
    margin: 0 0 8px;
    color: #222;
    font-size: 15px;
    line-height: 1.7;
}

.latest-line-temu-slot {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.home-side-col {
    border-left: 1px solid #dcdcdc;
    padding-left: 16px;
    display: grid;
    gap: 16px;
    align-self: start;
    position: sticky;
    top: 110px;
}

.side-module {
    border-top: 1px solid #000;
    padding-top: 10px;
}

.side-module.keyword-module {
    border-top: 0;
    padding-top: 0;
}

.side-module.keyword-module .home-section-head.compact {
    border-bottom: 0;
    padding-bottom: 0;
}

.side-module.side-video-module {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.side-video-wrap {
    margin-top: 0;
    line-height: 0;
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
}

.side-video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    border: 0 !important;
    box-shadow: none !important;
    vertical-align: top;
}

.side-video-module + .side-module.keyword-module {
    border-top: 0 !important;
    padding-top: 0 !important;
}

.side-module h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.ad-title {
    font-size: 7px !important;
    line-height: 1.2;
}

.coupang-disclosure {
    margin: 10px 0 0;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    color: #b42318;
    background: #fff4eb;
    border: 1px solid #f4c8a7;
}

.left-coupang-ad-slot {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.temu-ad-slot {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.temu-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.temu-carousel-track {
    display: flex;
    gap: 8px;
    width: 100%;
    will-change: transform;
    transform: translateX(0);
}

.temu-carousel-item {
    flex: 0 0 calc((100% - 8px) / 2);
    width: calc((100% - 8px) / 2);
    min-width: calc((100% - 8px) / 2);
    display: block;
}

.temu-carousel-item img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 0;
}

.keyword-rotator-window {
    height: 34px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
}

.keyword-rotator-list {
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 34px;
}

.keyword-rotator-list li {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 34px;
}

.keyword-rotator-list li.is-active {
    display: flex;
}

.keyword-rotator-list .rank {
    min-width: 16px;
    font-weight: 700;
}

.keyword-rotator-list a {
    font-size: 15px;
    line-height: 1.45;
}

.keyword-rotator-list .keyword-text {
    font-size: 15px;
    line-height: 1.45;
}

.side-line-list {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.side-line-list article {
    border-bottom: 1px solid #ececec;
    padding-bottom: 8px;
}

.side-line-list article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.side-line-list h4 {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 3px;
}

.side-line-rank {
    flex: 0 0 auto;
    min-width: 1.1em;
    font-weight: 700;
    color: #111;
}

@media (max-width: 1120px) {
    .home-newspaper-grid {
        grid-template-columns: 1fr;
    }

    .home-side-col {
        position: static;
        border-left: 0;
        border-top: 1px solid #dcdcdc;
        padding-left: 0;
        padding-top: 12px;
    }

    .headline-main-link {
        grid-template-columns: 1fr;
    }

    .pick-headline-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .headline-main-copy h1 {
        font-size: 34px;
    }

    .headline-under-two {
        grid-template-columns: 1fr;
    }

    .under-two-item {
        border-right: 0;
        padding-right: 0;
    }

    .category-news-body {
        grid-template-columns: 1fr;
    }

    .latest-line-item {
        grid-template-columns: 1fr;
    }

    .category-newspaper-page .latest-line-item {
        grid-template-columns: 1fr;
    }

    .category-top-headline-link {
        grid-template-columns: 1fr;
    }

    .category-top-headline-link .copy h3 {
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .pick-headline-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .pick-headline-row a {
        border-right: 0;
        border-bottom: 1px solid #efefef;
        padding: 8px 0;
    }

    .headline-main-copy h1 {
        font-size: 28px;
    }

    .category-news-head h3 {
        font-size: 20px;
    }

    .latest-line-item h3 {
        font-size: 22px;
    }

    .category-top-headline-link .copy h3 {
        font-size: 24px;
    }

    .category-top-headline-link .copy p {
        font-size: 16px;
    }
}

/* Header search toggle + typography upscale */
.main-head {
    align-items: center;
}

.icon-btn {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: #000000;
    font-size: 42px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    outline: 0;
}

.search-icon-btn {
    line-height: 1;
}

.header-actions .header-icon-btn,
.header-actions .header-icon-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111111;
    font-size: 30px !important;
    padding: 0;
    line-height: 1;
}

.header-actions .header-icon-link {
    text-decoration: none;
}

.header-kakao-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header-kakao-login-link img {
    display: block;
    height: 40px;
    width: auto;
}

.header-icon-svg {
    width: 1em;
    height: 1em;
    display: block;
}

.icon-btn:focus-visible {
    outline: 0;
}

.article-summary-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}

.summary-clamp-headline {
    -webkit-line-clamp: 5;
}

.summary-clamp-under {
    -webkit-line-clamp: 4;
}

.summary-clamp-latest {
    -webkit-line-clamp: 3;
}

.header-search-wrap {
    display: none;
    padding: 0 0 12px;
}

.header-search-wrap.open {
    display: block;
}

.header-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    border: 2px solid #000000;
    background: #ffffff;
}

.header-search-form input {
    border: 0;
    outline: 0;
    padding: 14px 16px;
    font-size: 19px;
    font-family: var(--font-sans);
    font-weight: 500;
    color: #111111;
}

.header-search-form button {
    border: 0;
    background: #000000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-sans);
    cursor: pointer;
}

body {
    font-size: 18px;
    font-weight: 500;
}

.logo-main {
    font-size: 60px !important;
    line-height: 1.02;
    letter-spacing: -1.2px;
}

.logo-sub {
    font-size: 18px !important;
    font-weight: 600;
}

.top-line {
    font-size: 13px !important;
}

.btn {
    font-size: 15px;
    font-weight: 700;
}

.category-list a {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 14px;
}

.home-section-head h2 {
    font-size: 32px !important;
}

.home-section-head a {
    font-size: 15px !important;
    font-weight: 600;
}

.headline-main-copy h1 {
    font-size: 62px !important;
    font-weight: 700;
}

.headline-main-copy p {
    font-size: 20px !important;
    line-height: 1.78;
}

.under-two-item h3 {
    font-size: 28px !important;
    line-height: 1.38;
}

.under-two-item .copy p {
    font-size: 17px !important;
    line-height: 1.62;
}

.category-news-head h3 {
    font-size: 32px !important;
}

.category-lead-news h4 {
    font-size: 22px !important;
    line-height: 1.45;
}

.category-line-list a {
    font-size: 18px !important;
}

.keyword-chip {
    font-size: 15px !important;
    font-weight: 600;
}

.most-read-line-list a {
    font-size: 18px !important;
    line-height: 1.5;
}

.latest-line-item h3 {
    font-size: 36px !important;
    font-weight: 700;
    line-height: 1.34;
}

.latest-line-item p {
    font-size: 18px !important;
}

.meta {
    font-size: 14px !important;
}

.category-label {
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 5px 10px !important;
}

.pick-headline-row a {
    font-size: 16px !important;
}

.keyword-rotator-list a,
.keyword-rotator-list .keyword-text,
.side-line-list h4 {
    font-size: 17px !important;
}

.article-title {
    font-size: 58px !important;
}

.article-subtitle {
    font-size: 24px !important;
}

.article-content {
    font-size: 22px !important;
}

@media (max-width: 1120px) {
    .logo-main {
        font-size: 48px !important;
    }

    .headline-main-copy h1 {
        font-size: 50px !important;
    }

    .latest-line-item h3 {
        font-size: 30px !important;
    }
}

@media (max-width: 860px) {
    .logo-main {
        font-size: 40px !important;
    }

    .logo-sub {
        font-size: 15px !important;
    }

    .header-search-form {
        grid-template-columns: 1fr 110px;
    }

    .header-search-form input {
        font-size: 17px;
    }

    .category-list a {
        font-size: 16px;
    }

    .home-section-head h2 {
        font-size: 27px !important;
    }

    .headline-main-copy h1 {
        font-size: 40px !important;
    }

    .under-two-item h3 {
        font-size: 23px !important;
    }

    .under-two-item a {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .category-news-head h3 {
        font-size: 27px !important;
    }

    .latest-line-item h3 {
        font-size: 28px !important;
    }

    .latest-line-temu-slot .detail-temu-carousel .temu-carousel-item {
        flex: 0 0 calc((100% - 24px) / 4);
        width: calc((100% - 24px) / 4);
        min-width: calc((100% - 24px) / 4);
    }

    .home-newspaper,
    .category-newspaper-page {
        overflow-x: hidden;
    }

    .home-newspaper .home-newspaper-grid,
    .home-newspaper .home-main-col,
    .home-newspaper .home-side-col,
    .category-newspaper-page .home-newspaper-grid,
    .category-newspaper-page .home-main-col,
    .category-newspaper-page .home-side-col,
    .home-newspaper .headline-main-link,
    .home-newspaper .under-two-item a,
    .home-newspaper .latest-line-item,
    .category-newspaper-page .category-top-headline-link,
    .category-newspaper-page .latest-line-item {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .home-newspaper .ad-slot,
    .category-newspaper-page .ad-slot,
    .home-newspaper .home-inline-ad,
    .category-newspaper-page .category-inline-ad .ad-slot {
        max-width: 100%;
        overflow: hidden;
    }

    .home-newspaper .ad-slot iframe,
    .home-newspaper .ad-slot ins,
    .category-newspaper-page .ad-slot iframe,
    .category-newspaper-page .ad-slot ins {
        max-width: 100% !important;
    }

    .home-newspaper h1,
    .home-newspaper h2,
    .home-newspaper h3,
    .home-newspaper h4,
    .category-newspaper-page h1,
    .category-newspaper-page h2,
    .category-newspaper-page h3,
    .category-newspaper-page h4 {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    /* Detail page mobile overflow guard */
    .article-detail-page {
        overflow-x: hidden;
    }

    .article-detail-page .article-detail-grid,
    .article-detail-page .article-main,
    .article-detail-page .article-hero,
    .article-detail-page .article-hero img,
    .article-detail-page .article-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .article-detail-page .article-title,
    .article-detail-page .article-content {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .article-detail-page .article-title {
        font-size: 34px !important;
        line-height: 1.34 !important;
    }

    .article-detail-page .article-content {
        font-size: 17px !important;
        line-height: 1.9 !important;
    }

    .detail-temu-carousel .temu-carousel-item {
        flex: 0 0 calc((100% - 24px) / 4);
        width: calc((100% - 24px) / 4);
        min-width: calc((100% - 24px) / 4);
    }

    .detail-temu-banner .detail-temu-carousel .temu-carousel-item {
        flex: 0 0 calc((100% - 24px) / 5);
        width: calc((100% - 24px) / 5);
        min-width: calc((100% - 24px) / 5);
    }

    .article-related-split-grid {
        grid-template-columns: 1fr;
    }

    .article-related-split-link {
        grid-template-columns: 150px minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    body {
        font-size: 17px;
    }

    .logo-main {
        font-size: 34px !important;
    }

    .logo-sub {
        font-size: 14px !important;
    }

    .icon-btn {
        font-size: 34px;
        padding: 0 2px;
    }

    .header-search-form {
        grid-template-columns: 1fr 96px;
    }

    .header-search-form input {
        font-size: 16px;
        padding: 12px 12px;
    }

    .header-search-form button {
        font-size: 16px;
    }

    .home-section-head h2 {
        font-size: 24px !important;
    }

    .headline-main-copy h1 {
        font-size: 33px !important;
    }

    .under-two-item h3 {
        font-size: 21px !important;
    }

    .under-two-item a {
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 10px;
    }

    .latest-line-item h3 {
        font-size: 24px !important;
    }

    .latest-line-temu-slot .detail-temu-carousel .temu-carousel-item {
        flex: 0 0 calc((100% - 16px) / 3);
        width: calc((100% - 16px) / 3);
        min-width: calc((100% - 16px) / 3);
    }

    .under-two-item .copy p,
    .latest-line-item p,
    .category-line-list a,
    .most-read-line-list a {
        font-size: 16px !important;
    }

    .article-detail-page .article-title {
        font-size: 28px !important;
        line-height: 1.34 !important;
    }

    .article-detail-page .article-content {
        font-size: 16px !important;
        line-height: 1.95 !important;
    }

    .detail-temu-carousel .temu-carousel-item {
        flex: 0 0 calc((100% - 16px) / 3);
        width: calc((100% - 16px) / 3);
        min-width: calc((100% - 16px) / 3);
    }

    .detail-temu-banner .detail-temu-carousel .temu-carousel-item {
        flex: 0 0 calc((100% - 18px) / 4);
        width: calc((100% - 18px) / 4);
        min-width: calc((100% - 18px) / 4);
    }

    .article-related-split-link {
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 10px;
    }

    .article-related-split-link .copy h3 {
        font-size: 20px;
        line-height: 1.35;
    }
}

/* Main headline typography override */
.home-newspaper .headline-main-copy h1 {
    font-size: 2.8rem !important;
}

.home-newspaper .headline-main-copy p {
    font-size: 1.2rem !important;
    color: #444 !important;
}

.home-newspaper .under-two-item h3 {
    font-size: 1.8rem !important;
}

.home-newspaper .under-two-item .copy p {
    font-size: 1.2rem !important;
    color: #444 !important;
}

.home-newspaper .latest-line-item p {
    font-size: 1.2rem !important;
    color: #444 !important;
}

.category-newspaper-page .category-top-headline-link .copy h3,
.category-newspaper-page .latest-line-item h3 {
    font-size: 2.8rem !important;
}

.category-newspaper-page .category-top-headline-link .copy p,
.category-newspaper-page .latest-line-item p {
    font-size: 1.2rem !important;
}

.home-side-col .home-section-head.compact h2,
.article-right-col .home-section-head.compact h2 {
    font-size: 1.8rem !important;
}

.home-newspaper .category-news-head h3 {
    font-size: 2rem !important;
}

.home-newspaper .most-read-section .home-section-head h2,
.home-newspaper .latest-line-section .home-section-head h2 {
    font-size: 2rem !important;
}

.home-newspaper .latest-line-item h3 {
    font-size: 2.2rem !important;
}

.home-newspaper .latest-line-item p {
    font-size: 1.2rem !important;
}

/* Detail typography (match main scale) */
.article-detail-page .article-mass-section .home-section-head h2,
.article-detail-page .article-category-many .category-news-head h3 {
    font-size: 2rem !important;
}

.article-detail-page .article-latest-many .latest-line-item h3,
.article-detail-page .article-related-split-link .copy h3 {
    font-size: 2.2rem !important;
}

.article-detail-page .article-latest-many .latest-line-item p,
.article-detail-page .article-related-split-link .copy p {
    font-size: 1.2rem !important;
    color: #444 !important;
}

/* Detail title hover */
.article-detail-page .article-right-col .side-line-list h4,
.article-detail-page .article-right-col .side-line-list a,
.article-detail-page .article-wide-news .latest-line-item h3,
.article-detail-page .article-related-split-link .copy h3,
.article-detail-page .article-category-many .category-lead-news h4,
.article-detail-page .article-category-many .category-line-list a {
    transition: color .16s ease;
}

.article-detail-page .article-right-col .side-line-list a:hover h4,
.article-detail-page .article-right-col .side-line-list a:hover,
.article-detail-page .article-wide-news .latest-line-item a:hover h3,
.article-detail-page .article-related-split-link:hover .copy h3,
.article-detail-page .article-category-many .category-lead-news a:hover h4,
.article-detail-page .article-category-many .category-line-list a:hover {
    color: #666 !important;
}

/* Title hover (main/category only, exclude detail page) */
.home-newspaper a h1,
.home-newspaper a h2,
.home-newspaper a h3,
.home-newspaper a h4 {
    transition: color .16s ease;
}

.home-newspaper a:hover h1,
.home-newspaper a:hover h2,
.home-newspaper a:hover h3,
.home-newspaper a:hover h4 {
    color: #666 !important;
}

/* Main: category news + most-read title hover color */
.home-newspaper .category-lead-news h4,
.home-newspaper .category-line-list a,
.home-newspaper .most-read-line-list a {
    transition: color .16s ease;
}

.home-newspaper .category-lead-news a:hover h4,
.home-newspaper .category-line-list a:hover,
.home-newspaper .most-read-line-list a:hover {
    color: #666 !important;
}

/* Hide cm_ad blocks on mobile in main/category/detail */
@media (max-width: 860px) {
    .home-newspaper .cm_ad,
    .home-newspaper [id*="cm_ad"],
    .home-newspaper [class*="cm_ad"],
    .category-newspaper-page .cm_ad,
    .category-newspaper-page [id*="cm_ad"],
    .category-newspaper-page [class*="cm_ad"],
    .article-detail-page .cm_ad,
    .article-detail-page [id*="cm_ad"],
    .article-detail-page [class*="cm_ad"] {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

/* Header category right-tail link (실시간비행정보) */
.category-list .live-flight-link-item {
    margin-left: auto;
}

.category-list .live-flight-link {
    border: 0;
    font-weight: 700;
    color: #111111;
    background: transparent;
}

.category-list .live-flight-link:hover,
.category-list .live-flight-link.active {
    background: transparent !important;
    border-color: transparent;
    color: #444444;
}

@media (max-width: 860px) {
    .mobile-nav .category-list .live-flight-link-item {
        margin-left: 0;
    }
}

/* Detail heading size tune */
.article-detail-page .article-title {
    font-size: 3rem !important;
    line-height: 1.3 !important;
}

.article-detail-page .article-content h2 {
    font-size: 2rem !important;
    line-height: 1.4 !important;
}

@media (max-width: 860px) {
    .article-detail-page .article-title {
        font-size: 2.2rem !important;
    }

    .article-detail-page .article-content h2 {
        font-size: 1.6rem !important;
    }
}
