:root {
    --primary-color: #6b21a8;
    --primary-light: #9333ea;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --bg-body: #f9fafb;
    --bg-white: #ffffff;
    --font-family: -apple-system, BlinkMacSystemFont, "Malgun Gothic", "맑은 고딕", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    font-size: 16px;
}

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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

button {
    cursor: pointer;
    font-family: inherit;
}


/* 2. Layout & Common Components */

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--text-main);
}

.section-title .more-link {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    transition: color 0.2s;
}

.section-title .more-link:hover {
    color: var(--primary-color);
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--primary-light);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 8px;
}


/* 3. Header & Navigation */

.site-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    max-height: 60px;
}

.logo-text {
    font-size: 28.8px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary-color);
}

.search-form {
    display: flex;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    overflow: hidden;
    width: 300px;
}

.search-input {
    border: none;
    padding: 10px 15px;
    flex: 1;
    outline: none;
    font-size: 15.2px;
}

.search-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 20px;
    font-weight: bold;
    transition: background 0.2s;
}

.search-btn:hover {
    background-color: #581c87;
}

.main-nav {
    border-top: 1px solid var(--border-color);
}

.nav-list {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px 0;
    scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-item a {
    font-weight: 700;
    font-size: 16.8px;
    padding-bottom: 14px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    color: #333;
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}


/* 4. Main Content Area & Sidebar Layout */

.page-view {
    padding: 40px 0;
    animation: fadeIn 0.4s ease-out;
}

.content-layout {
    display: flex;
    gap: 40px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.aside.view-sidebar {
    width: 320px;
    flex-shrink: 0;
    padding: 40px 0;
}


/* 5. Main Page Sections */

.hero-banner {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    color: #fff;
    aspect-ratio: 3/2;
    cursor: pointer;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.5s ease;
}

.hero-banner:hover img {
    transform: scale(1.03);
    opacity: 0.5;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    z-index: 2;
}

.hero-title {
    font-size: 38.4px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-desc {
    font-size: 18.4px;
    color: #e5e7eb;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-light);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s;
}

.hero-banner:hover .hero-btn {
    background: var(--primary-color);
}

.top-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.news-card.row-style {
    flex-direction: row;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.news-card.row-style .thumb {
    width: 140px;
    flex-shrink: 0;
    aspect-ratio: 16/10;
}

.news-card .thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.news-card .thumb img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.news-card:hover .thumb img {
    transform: scale(1.05);
}

.news-card .title {
    font-size: 19.2px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s;
}

.news-card:hover .title {
    color: var(--primary-color);
}

.news-card .desc {
    font-size: 15.2px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.youtube-section {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.youtube-section .section-title {
    border-bottom-color: #444;
    color: #fff;
    margin-bottom: 25px;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.yt-card {
    cursor: pointer;
}

.yt-card .thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    aspect-ratio: 16/9;
    background: #333;
}

.yt-card .thumb img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.yt-card:hover .thumb img {
    opacity: 1;
}

.yt-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 19.2px;
    transition: transform 0.2s;
}

.yt-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.yt-card .title {
    font-weight: bold;
    font-size: 16.8px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.issue-mixed-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.issue-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
    background: var(--bg-white);
}

.issue-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.issue-item .thumb {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.issue-item .thumb img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
}

.issue-item:hover .thumb img {
    transform: scale(1.05);
}

.issue-item .info {
    padding: 18px;
}

.issue-item .title {
    font-weight: 700;
    font-size: 17.6px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.ad-banner {
    width: 100%;
    background-color: #161B2E;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 48px 0;
}

.ad-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.1), transparent, rgba(30, 58, 138, 0.1));
    opacity: 0.5;
}

.ad-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.ad-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
}

.ad-text {
    color: #94a3b8;
    font-weight: 500;
}

@media (min-width: 768px) {
    .ad-text {
        font-size: 18px;
    }
}

.ad-badge {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 9px;
    color: #fff;
    font-weight: bold;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
}


/* 6. Sidebar */

.side_section {
    margin-bottom: 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.side_section_title {
    font-weight: 800;
    font-size: 18.4px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

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

.side_section_ranking li {
    margin-bottom: 14px;
    font-size: 15.2px;
}

.side_section_ranking li a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: color 0.2s;
    cursor: pointer;
}

.side_section_ranking li a:hover {
    color: var(--primary-color);
}

.side_section_ranking .num {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 17.6px;
    min-width: 15px;
}

.side_section_ranking .text {
    flex: 1;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side_section_keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.side_section_keywords span {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13.6px;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.side_section_keywords span:hover {
    background: var(--primary-light);
    color: #fff;
    border-color: var(--primary-light);
}

.side_section_gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.side_section_gallery .gallery_item {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.side_section_gallery .gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.side_section_gallery .gallery_item:hover img {
    transform: scale(1.1);
}

.ad_text {
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 10px;
}

.ad_text_title {
    font-size: 12.8px;
    color: #a16207;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.ad_text_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ad_text_list li {
    display: flex;
    gap: 10px;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 12px;
}

.ad_text_list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ad_text_list img {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: cover;
}

.ad_text_list p {
    font-size: 14.4px;
    font-weight: 600;
    line-height: 1.3;
    color: #1f2937;
    cursor: pointer;
}

.ad_text_list li:hover p {
    color: var(--primary-color);
    text-decoration: underline;
}

.ad_text_list.text-only li {
    padding-bottom: 8px;
    border-bottom: none;
}

.ad_text_list.text-only a {
    font-size: 15.2px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.ad_text_list.text-only a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/* 7. List Page */

.list-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--text-main);
}

.list-header h2 {
    font-size: 35.2px;
    font-weight: 800;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.list-item {
    display: flex;
    gap: 24px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.list-item .thumb {
    width: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.list-item .thumb img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
}

.list-item:hover .thumb img {
    transform: scale(1.05);
}

.list-item .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-item .title {
    font-size: 21.6px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.2s;
}

.list-item:hover .title {
    color: var(--primary-color);
}

.list-item .desc {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.list-item .meta {
    font-size: 13.6px;
    color: #9ca3af;
    display: flex;
    gap: 15px;
}

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

.pagination button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.pagination button:hover {
    background: #f3f4f6;
}

.pagination button.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}


/* 8. View Page (Article Detail) */

.article-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.article-category {
    color: var(--primary-light);
    font-weight: 800;
    margin-bottom: 12px;
    display: inline-block;
    font-size: 17.6px;
}

.article-title-main {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.article-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    background: #f9fafb;
    border-radius: 8px;
}

.article-meta-info .reporter {
    font-weight: 600;
    color: #374151;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body strong {
    font-weight: 800;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, rgba(147, 51, 234, 0.15) 50%);
}

.article-figure {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.article-figure img {
    width: 100%;
    border-radius: 8px;
}

.article-figure figcaption {
    font-size: 14.4px;
    color: #6b7280;
    text-align: center;
    margin-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.quote-box {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    background: #f3f4f6;
    margin: 30px 0;
    font-size: 17.6px;
    font-style: italic;
    color: #4b5563;
}

.share-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.btn-share {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-share:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

.btn-share.kakao {
    border-color: #FEE500;
    background: #FEE500;
    color: #000;
}

.btn-share.kakao:hover {
    background: #FDD800;
}


/* 9. About Page (Tabs) */

.about-wrap {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 35px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 18.4px;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    margin-bottom: -2px;
    transition: color 0.2s;
}

.tab-btn:hover {
    color: #374151;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s;
}

.tab-pane.active {
    display: block;
}

.about-content h3 {
    margin: 25px 0 15px;
    font-size: 22.4px;
    color: var(--text-main);
    font-weight: 800;
}

.about-content p {
    margin-bottom: 18px;
    font-size: 16.8px;
    color: #4b5563;
}

.contact-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-box p {
    margin-bottom: 10px;
    color: #1e293b;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    display: inline-block;
    width: 120px;
    color: var(--primary-color);
    font-weight: 800;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 10. Footer */

.site-footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 50px 0 30px;
    margin-top: 80px;
    font-size: 15.2px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #374151;
    padding-bottom: 25px;
}

.footer-nav a {
    color: #e5e7eb;
    font-weight: 700;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-info-grid strong {
    color: #d1d5db;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 25px;
    font-size: 13.6px;
    color: #6b7280;
}


/* Sidebar & Headings Extra adjustments */

.view-sidebar h2,
.view-sidebar [class*="section_"] h3,
.view-sidebar [class*="ad_text"] h4 {
    border-bottom: 2px solid #e5e7eb !important;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    padding: 0 0 10px 0 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    background: transparent !important;
    margin-bottom: 16px !important;
    margin-top: 24px !important;
}

.view-sidebar > *:first-child h2,
.view-sidebar > *:first-child h3,
.view-sidebar > *:first-child h4,
.view-sidebar > h2:first-of-type {}

.view-sidebar [class*="section_"] li,
.view-sidebar [class*="ad_text"] li {
    list-style: none;
}

.view-sidebar .tit,
.view-sidebar strong.tit,
.view-sidebar strong,
.view-sidebar [class*="ad_text"] h4 a,
.view-sidebar [class*="ad_text"] li a {}

.view-sidebar a:hover,
.view-sidebar a:hover .tit,
.view-sidebar a:hover strong.tit,
.view-sidebar a:hover strong,
.view-sidebar [class*="ad_text"] li a:hover {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.view-sidebar .lede,
.view-sidebar .press,
.view-sidebar .date,
.view-sidebar .hit,
.view-sidebar .txt_age {
    font-size: 13px !important;
    margin-top: 6px !important;
}

.view-sidebar .txt_age {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.view-sidebar .thumb,
.view-sidebar .thumb_wrap,
.view-sidebar .thumb img,
.view-sidebar .thumb_wrap img {
    border-radius: 6px !important;
}

.view-sidebar div[class*="ad_text_"],
.view-sidebar div[class*="section_"] {
    margin-bottom: 10px !important;
    background: var(--bg-white) !important;
    border: 1px solid var(--border-color) !important;
    padding: 0 24px 24px !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.view-sidebar .ad_text_pic_r_C .rank_num {
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 22px !important;
    font-size: 12px !important;
    border-radius: 4px 0 6px 0;
}

.view-sidebar .section_05 .rank_num {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    width: 24px !important;
    line-height: 1 !important;
    text-align: left !important;
}

.view-sidebar .section_05 li a {
    padding-left: 28px !important;
}

.view-sidebar .section_05 .thumb {
    margin-left: 0 !important;
    margin-right: 12px !important;
    border-radius: 6px !important;
    width: 80px !important;
    height: 60px !important;
}

.view-sidebar .section_05 .info {
    padding-left: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.view-sidebar .section_05 .tit {
    margin-top: 0 !important;
    font-size: 16px;
}

.view-sidebar .section_10 .thumb_wrap::after,
.view-sidebar .section_11 .thumb_wrap::after,
.view-sidebar .section_12 .thumb_wrap::after {
    content: '▶' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 3px !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.view-sidebar .ad_text_r_F ul {
    padding: 0 !important;
    margin: 0 !important;
}

.view-sidebar .ad_text_r_F li {
    border: none !important;
    padding: 6px 0 !important;
}

.view-sidebar .ad_text_r_F li a {
    font-size: 14px !important;
    line-height: 1.6 !important;
    padding-left: 12px !important;
    position: relative;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
}

.view-sidebar .ad_text_r_F li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.section_03 .ico_exclusive {
    color: #fff !important;
    background-color: var(--primary-color) !important;
}

.view-sidebar .section_06 .thumb {
    border-radius: 6px !important;
    margin-bottom: 10px !important;
}

.view-sidebar .section_02 li a,
.view-sidebar .section_04 li a {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
}

.section_02 li:first-child a {
    padding-top: 0 !important;
}

.section_04 li:first-child a {
    padding-top: 0 !important;
}

.section_04>ul>li+li {
    margin-top: 0;
}

.view-sidebar .section_02 .txt_age,
.view-sidebar .section_04 .txt_age {
    order: 1 !important;
    flex-shrink: 0 !important;
    width: 45px !important;
    white-space: nowrap !important;
    color: var(--primary-color, #e4161b) !important;
    font-size: 16px !important;
    text-align: left !important;
    margin-top: 0 !important;
}

.view-sidebar .section_02 .info,
.view-sidebar .section_04 .info {
    order: 2 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: block !important;
}

.view-sidebar .section_02 .info .tit,
.view-sidebar .section_04 .info .tit {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    word-break: break-all !important;
    line-height: 1.3 !important;
    font-size: 16px !important;
    max-height: 2.8em !important;
}

.view-sidebar .section_02 .thumb,
.view-sidebar .section_04 .thumb {
    order: 3 !important;
    flex-shrink: 0 !important;
    width: 80px !important;
    height: 60px !important;
    margin: 0 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    display: block !important;
}

.view-sidebar .section_02 .thumb img,
.view-sidebar .section_04 .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}


/* ==========================================================================
   Mobile Optimization (Media Queries)
   ========================================================================== */

@media (max-width: 992px) {
    .logo-img {
        max-height: 40px;
    }
    .content-layout {
        flex-direction: column;
    }
    .aside.view-sidebar {
        width: 100%;
    }
    .search-form {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-view {
        padding: 20px 0;
    }
    .hero-title {
        font-size: 28px;
        padding: 0 10px;
    }
    .top-news-grid,
    .youtube-grid {
        grid-template-columns: 1fr;
    }
    .youtube-section {
        padding: 20px;
    }
    .article-title-main {
        font-size: 24px;
    }
    .list-header h2 {
        font-size: 24px;
    }
    .about-wrap {
        padding: 20px;
    }
    .footer-info-grid {
        grid-template-columns: 1fr;
    }
    .view-sidebar div[class*="ad_text_"],
    .view-sidebar div[class*="section_"] {
        padding: 0 16px 16px !important;
        margin-bottom: 12px !important;
    }
    .view-sidebar h2,
    .view-sidebar [class*="section_"] h3,
    .view-sidebar [class*="ad_text"] h4 {
        font-size: 16px !important;
        padding: 0 0 8px 0 !important;
        margin-top: 16px !important;
        margin-bottom: 12px !important;
    }
    .view-sidebar .section_02 li a,
    .view-sidebar .section_04 li a {
        padding: 10px 0 !important;
        gap: 12px !important;
    }
    .view-sidebar .section_02 .txt_age,
    .view-sidebar .section_04 .txt_age {
        font-size: 14px !important;
        width: 38px !important;
    }
    .view-sidebar .section_02 .info .tit,
    .view-sidebar .section_04 .info .tit,
    .view-sidebar .section_05 .tit {
        font-size: 14px !important;
    }
    .view-sidebar .section_02 .thumb,
    .view-sidebar .section_04 .thumb,
    .view-sidebar .section_05 .thumb {
        width: 70px !important;
        height: 52px !important;
    }
}

@media (max-width: 600px) {
    .hero-banner {
        aspect-ratio: 4/6;
    }
    .issue-mixed-list {
        grid-template-columns: 1fr;
    }
    .list-item {
        flex-direction: column;
        gap: 15px;
    }
    .list-item .thumb {
        width: 100%;
        aspect-ratio: 16/9;
    }
}