/* ========================================================================== [1] LAYOUT & RESET (공통 초기화 및 기본 레이아웃) ========================================================================== */
:root { --primary-color: #003366; --accent-color: #e50914; --text-dark: #111111; --text-gray: #666666; --bg-light: #f4f6f9; --border-color: #dddddd; --max-width: 1200px; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif; color: var(--text-dark); background-color: #ffffff; line-height: 1.6; -webkit-text-size-adjust: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ========================================================================== [2] HEADER STYLE (PC 기준 기본 헤더) ========================================================================== */
.site-header { background-color: #ffffff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-utility { background-color: #f8f9fa; border-bottom: 1px solid #eeeeee; font-size: 12px; color: #666666; padding: 6px 0; }
.utility-container { display: flex; justify-content: space-between; align-items: center; }
.utility-left { display: flex; align-items: center; gap: 12px; }
.utility-date { font-weight: 600; }
.utility-divider { color: #e0e0e0; }
.utility-weather { display: flex; align-items: center; gap: 4px; }
.utility-right { display: flex; align-items: center; gap: 15px; }
.utility-link { transition: color 0.2s; font-weight: 500; }
.utility-link:hover { color: var(--primary-color); }
.header-main { border-bottom: 1px solid #f1f1f1; }
.header-main-container { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.header-left-space { flex: 1; }
.logo-center-box { flex: 2; display: flex; justify-content: center; align-items: center; }
.logo-image { height: 52px; max-width: 280px; object-fit: contain; transition: all 0.3s ease; }
.header-search-box { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.header-search { display: flex; align-items: center; border: 1px solid var(--border-color); border-radius: 20px; padding: 6px 15px; background: var(--bg-light); transition: border-color 0.2s, background-color 0.2s; }
.header-search:focus-within { border-color: var(--primary-color); background-color: #ffffff; }
.search-input { border: none; background: none; outline: none; font-size: 13px; width: 170px; }
.search-btn { background: none; border: none; cursor: pointer; font-size: 14px; }

/* ========================================================================== [3] NAVIGATION MENU (PC 기준 메뉴) ========================================================================== */
.main-nav { background-color: #ffffff; border-bottom: 2px solid var(--primary-color); }
.nav-list { display: flex; justify-content: center; overflow-x: auto; padding: 0; scrollbar-width: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-link { display: block; padding: 14px 22px; font-size: 16px; font-weight: 700; color: #333333; transition: color 0.3s ease; white-space: nowrap; position: relative; }
.nav-link::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background-color: var(--primary-color); transform: scaleX(0); transform-origin: bottom right; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-link:hover { color: var(--primary-color); }
.nav-link:hover::before, .nav-link.active::before { transform: scaleX(1); transform-origin: bottom left; }

/* ========================================================================== [4] MAIN GRID & EDITORIAL (메인 콘텐츠 레이아웃) ========================================================================== */
.content-wrapper { display: flex; gap: 30px; padding: 30px 0; }
.main-content { flex: 1; min-width: 0; }
.hero-editorial-section { display: flex; gap: 25px; margin-bottom: 40px; }
.hero-main-featured { flex: 1.7; background-color: #ffffff; border: 1px solid #eeeeee; border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.hero-main-featured:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.hero-main-img-box { width: 100%; height: 380px; overflow: hidden; position: relative; background-color: var(--bg-light); }
.hero-main-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.hero-main-featured:hover .hero-main-img { transform: scale(1.03); }
.hero-main-body { padding: 24px; }
.hero-main-category { font-size: 13px; font-weight: 800; color: var(--accent-color); margin-bottom: 10px; display: block; }
.hero-main-title { font-size: 26px; font-weight: 800; color: var(--text-dark); line-height: 1.35; margin-bottom: 12px; }
.hero-main-desc { font-size: 15px; color: var(--text-gray); line-height: 1.6; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-main-meta { font-size: 12px; color: #999999; display: flex; gap: 15px; }
.hero-sub-list-wrap { flex: 1.3; display: flex; flex-direction: column; gap: 15px; }
.hero-sub-card { display: flex; gap: 15px; background-color: #ffffff; border: 1px solid #eeeeee; border-radius: 8px; padding: 12px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; height: 120px; align-items: center; }
.hero-sub-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.hero-sub-img-box { width: 110px; height: 80px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background-color: var(--bg-light); }
.hero-sub-img { width: 100%; height: 100%; object-fit: cover; }
.hero-sub-body { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.hero-sub-category { font-size: 11px; font-weight: 800; color: var(--primary-color); margin-bottom: 4px; }
.hero-sub-title { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-sub-meta { font-size: 11px; color: #999999; }

/* ========================================================================== [5] CONTENT BLOCKS (기사 리스트 & 비디오 그리드) ========================================================================== */
.section-container { margin-bottom: 45px; }
.section-title-bar { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--primary-color); padding-bottom: 8px; margin-bottom: 20px; }
.section-title { font-size: 20px; font-weight: 800; color: var(--primary-color); display: flex; align-items: center; gap: 8px; }
.section-title::before { content: ''; display: inline-block; width: 4px; height: 18px; background-color: var(--primary-color); }
.more-link { font-size: 13px; color: var(--text-gray); }
.more-link:hover { color: var(--primary-color); text-decoration: underline; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.news-card { background: #ffffff; border: 1px solid #eeeeee; border-radius: 6px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 6px 12px rgba(0,0,0,0.08); }
.card-thumb-wrapper { position: relative; padding-top: 60%; background-color: #eaeaea; overflow: hidden; }
.card-thumb { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 15px; }
.card-category { font-size: 11px; color: var(--primary-color); font-weight: bold; margin-bottom: 6px; }
.card-title { font-size: 15px; font-weight: bold; color: var(--text-dark); line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 42px; }
.card-summary { font-size: 13px; color: var(--text-gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.card-meta { font-size: 11px; color: #999999; display: flex; justify-content: space-between; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.video-card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.video-frame-mock { position: relative; padding-top: 56.25%; background-color: #000000; }
.video-thumbnail { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(229, 9, 20, 0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; border: none; cursor: pointer; font-size: 18px; }
.video-play-btn::after { content: '▶'; margin-left: 3px; }
.video-title { padding: 12px; background-color: #111111; color: #ffffff; font-size: 14px; font-weight: bold; }

/* ========================================================================== [6] SUB PAGES & VIEW (서브페이지 컴포넌트) ========================================================================== */
.list-header-box { background-color: var(--bg-light); border: 1px solid var(--border-color); padding: 25px; border-radius: 6px; margin-bottom: 30px; text-align: center; }
.list-header-title { font-size: 24px; font-weight: bold; color: var(--primary-color); margin-bottom: 10px; }
.list-search-wrap { display: flex; max-width: 500px; margin: 0 auto; gap: 10px; }
.list-search-select { padding: 8px 12px; border: 1px solid var(--border-color); border-radius: 4px; background: white; font-size: 14px; }
.list-search-input { flex: 1; padding: 8px 15px; border: 1px solid var(--border-color); border-radius: 4px; font-size: 14px; }
.list-search-btn { background-color: var(--primary-color); color: white; border: none; padding: 8px 20px; border-radius: 4px; cursor: pointer; font-weight: bold; }
.list-container { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.list-item { display: flex; gap: 20px; border-bottom: 1px solid #eeeeee; padding-bottom: 20px; cursor: pointer; }
.list-thumb-box { width: 200px; height: 125px; border-radius: 4px; overflow: hidden; flex-shrink: 0; background: var(--bg-light); }
.list-thumb { width: 100%; height: 100%; object-fit: cover; }
.list-info { display: flex; flex-direction: column; justify-content: center; flex: 1; gap: 15px; }
.list-item-title { font-size: 18px; font-weight: bold; color: var(--text-dark); margin-bottom: 8px; }
.list-item-title:hover { color: var(--primary-color); }
.list-item-desc { font-size: 14px; color: var(--text-gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.list-item-meta { font-size: 12px; color: #999999; display: flex; gap: 15px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 30px; }
.page-btn { border: 1px solid var(--border-color); background-color: white; padding: 8px 14px; font-size: 14px; cursor: pointer; border-radius: 4px; }
.page-btn.active, .page-btn:hover { background-color: var(--primary-color); color: white; border-color: var(--primary-color); }
.article-view-header { border-bottom: 1px solid var(--border-color); padding-bottom: 20px; margin-bottom: 25px; }
.view-category { font-size: 14px; color: var(--primary-color); font-weight: bold; margin-bottom: 10px; }
.news-article-title { font-size: 30px; font-weight: 800; line-height: 1.3; color: var(--text-dark); margin-bottom: 15px; }
.view-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-gray); }
.meta-left { display: flex; gap: 15px; }
.meta-reporter { font-weight: bold; }
.action-btn { background: none; border: 1px solid var(--border-color); padding: 4px 10px; font-size: 12px; border-radius: 3px; cursor: pointer; }
.article-view-body { font-size: 17px; line-height: 1.8; color: #222222; }
.article-view-img { margin: 20px auto; display: block; border-radius: 4px; max-width: 100%; }
.view-footer-actions { margin: 40px auto; padding: 20px 0; border-top: 1px solid #eeeeee; display: flex; gap: 10px; }

/* ========================================================================== [7] PURE CSS TAB SWITCHER (소개 페이지 탭) ========================================================================== */
.about-container { display: block; width: 100%; }
.tab-input { display: none !important; }
.about-tabs { display: flex; border-bottom: 1px solid var(--border-color); margin-bottom: 30px; gap: 5px; }
.about-tab-btn { padding: 12px 20px; font-size: 15px; font-weight: bold; border: 1px solid transparent; cursor: pointer; border-radius: 4px 4px 0 0; color: var(--text-gray); transition: all 0.2s ease; }
.about-tab-btn:hover { color: var(--primary-color); background-color: var(--bg-light); }
.about-tab-contents { width: 100%; }
.about-tab-content { display: none; padding: 10px 5px; animation: fadeIn 0.4s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
#tab-intro:checked ~ .about-tabs label[for="tab-intro"], #tab-report:checked ~ .about-tabs label[for="tab-report"], #tab-sales:checked ~ .about-tabs label[for="tab-sales"], #tab-privacy:checked ~ .about-tabs label[for="tab-privacy"], #tab-ethics:checked ~ .about-tabs label[for="tab-ethics"] { border: 1px solid var(--border-color); border-bottom-color: #ffffff; background-color: #ffffff; color: var(--primary-color); }
#tab-intro:checked ~ .about-tab-contents #content-intro, #tab-report:checked ~ .about-tab-contents #content-report, #tab-sales:checked ~ .about-tab-contents #content-sales, #tab-privacy:checked ~ .about-tab-contents #content-privacy, #tab-ethics:checked ~ .about-tab-contents #content-ethics { display: block; }
.about-company-img { width: 100%; height: 250px; object-fit: cover; border-radius: 6px; margin-bottom: 30px; }
.info-card { border: 1px solid var(--border-color); padding: 20px; border-radius: 6px; background-color: #ffffff; margin-bottom: 20px; }
.info-card.accent-left-border { border-left: 5px solid var(--primary-color); }
.about-intro-headline { font-size: 18px; font-weight: bold; margin-bottom: 15px; color: var(--primary-color); }
.about-intro-p1, .about-intro-p2 { margin-bottom: 12px; }
.sales-card-title { font-size: 18px; margin-bottom: 12px; color: var(--primary-color); }
.sales-card-email { font-weight: bold; color: var(--accent-color); }
.privacy-bullet-list, .ethics-numbered-list { padding-left: 20px; font-size: 14px; line-height: 1.8; color: #555555; }
.report-form { display: flex; flex-direction: column; gap: 15px; max-width: 600px; background-color: var(--bg-light); padding: 25px; border-radius: 8px; border: 1px solid var(--border-color); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: bold; }
.form-control { padding: 10px; border: 1px solid var(--border-color); border-radius: 4px; font-size: 14px; outline: none; }
.form-textarea { height: 150px; resize: vertical; }

/* ========================================================================== [8] ASIDE SIDEBAR & ADS (사이드바 및 광고 지면) ========================================================================== */
.view-sidebar { width: 320px; flex-shrink: 0; }
.sidebar-section { border: 1px solid var(--border-color); border-radius: 6px; padding: 18px; background-color: #ffffff; margin-bottom: 25px; }
.sidebar-title { font-size: 16px; font-weight: 800; color: #111111; border-bottom: 2px solid var(--primary-color); padding-bottom: 8px; margin-bottom: 15px; }
.rank-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item { display: flex; gap: 12px; cursor: pointer; }
.rank-num { font-size: 16px; font-weight: 800; color: var(--primary-color); width: 24px; height: 24px; background-color: var(--bg-light); display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.rank-num.top-3 { background-color: var(--primary-color); color: white; }
.rank-content { font-size: 13.5px; font-weight: bold; line-height: 1.4; }
.photo-news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.photo-item { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
.photo-img-box { position: relative; padding-top: 66%; background-color: #eaeaea; border-radius: 4px; overflow: hidden; }
.photo-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-title { font-size: 12px; font-weight: bold; }
.ad-container { border: 1px dashed var(--accent-color); border-radius: 6px; padding: 15px; background-color: #fffaf0; margin-bottom: 25px; position: relative; }
.ad-badge { position: absolute; top: 6px; right: 6px; font-size: 9px; background-color: #eaeaea; color: #666666; padding: 1px 4px; }
.ad-title-label { font-size: 12px; color: var(--accent-color); font-weight: bold; margin-bottom: 8px; display: block; }
.ad-text-list { display: flex; flex-direction: column; gap: 8px; }
.ad-text-item { font-size: 13px; font-weight: bold; color: #444444; }
.ad-banner { width: 100%; background-color: #161B2E; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; cursor: pointer; margin: 2rem 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: 0.25rem; }
.ad-text { color: #94a3b8; font-weight: 500; }
.banner_ad { position: absolute; top: 2px; right: 2px; width: auto !important; height: 16px; z-index: 1; cursor: pointer; }


/* 소개 상세 텍스트 */
        .intro-text-box {
            font-size: 16px;
            line-height: 1.8;
            color: #444444;
        }

        .about-intro-headline {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .about-intro-p1 {
            margin-bottom: 10px;
        }

        .about-intro-p2 {
            margin-bottom: 20px;
        }

        .about-intro-bold {
            font-weight: bold;
        }

        /* 기사제보 폼 */
        .report-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
            background-color: var(--bg-light);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 14px;
            font-weight: bold;
            color: #333333;
        }

        .form-control {
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 14px;
        }

        .form-textarea {
            height: 150px;
            resize: vertical;
        }

        .form-submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            font-size: 15px;
            transition: background 0.2s;
        }

        .form-submit-btn:hover {
            background-color: #002244;
        }

        /* 광고문의 / 규정 레이아웃 */
        .info-card {
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 6px;
            background-color: #ffffff;
            margin-bottom: 20px;
        }

        .info-card.accent-left-border {
            border-left: 5px solid var(--primary-color);
        }

        .info-card h4 {
            font-size: 16px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .sales-card-title {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary-color);
        }

        .sales-card-desc {
            font-size: 15px;
            margin-bottom: 15px;
            color: #555555;
        }

        .sales-card-email {
            font-weight: bold;
            font-size: 16px;
            color: var(--accent-color);
        }

        .privacy-intro-text, .ethics-intro-text {
            margin-bottom: 15px;
        }

        .privacy-bullet-list {
            list-style: square;
            padding-left: 20px;
            font-size: 14px;
            color: #555555;
            line-height: 1.8;
        }

        .ethics-numbered-list {
            list-style: decimal;
            padding-left: 20px;
            font-size: 14px;
            color: #555555;
            line-height: 1.8;
        }

/* ========================================================================== [9] FOOTER STYLE (하단 푸터 영역) ========================================================================== */
.site-footer { background-color: #222222; color: #cccccc; padding: 40px 0 30px; margin-top: auto; border-top: 5px solid #111111; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 25px; border-bottom: 1px solid #333333; margin-bottom: 25px; }
.footer-logo { font-size: 22px; font-weight: 800; color: #ffffff; }
.footer-menu { display: flex; gap: 20px; }
.footer-menu-link { font-size: 14px; color: #bbbbbb; }
.footer-menu-link.highlight { color: #ff9900; font-weight: bold; }
.company-info { font-size: 13px; line-height: 1.8; color: #999999; }

/* ========================================================================== [10] GLOBAL MOBILE & TABLET RESPONSIVE OVERRIDES (모바일 전용 최적화 오버라이드)==========================================================================*/ @media (max-width: 991px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    .main-content { margin:15px 0; }
    .view-sidebar {
        width: 100%;
        flex-shrink: initial;
        margin-top: 20px;
    }

    .hero-editorial-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .hero-main-featured {
        flex: none;
        width: 100%;
    }

    .hero-main-img-box {
        height: 280px;
    }

    .hero-sub-list-wrap {
        flex: none;
        width: 100%;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-utility {
        padding: 8px 0;
    }

    .utility-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .utility-right {
        display: none;
    }

    .header-main-container {
        flex-direction: column;
        gap: 15px;
        padding: 14px 0;
    }

    .header-left-space {
        display: none;
    }

    .logo-center-box {
        width: 100%;
        justify-content: center;
    }

    .logo-image {
        height: 38px;
        max-width: 200px;
    }

    .header-search-box {
        width: 100%;
        justify-content: center;
    }

    .header-search {
        width: 100%;
        max-width: 320px;
        padding: 5px 12px;
    }

    .search-input {
        width: 100%;
        font-size: 12px;
    }

    .main-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-list {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
    }

    .hero-main-title {
        font-size: 20px;
    }

    .hero-main-body {
        padding: 16px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .list-header-box {
        padding: 18px;
        margin-bottom: 20px;
    }

    .list-header-title {
        font-size: 20px;
    }

    .list-search-wrap {
        flex-direction: column;
        gap: 8px;
    }

    .list-search-select,
    .list-search-input,
    .list-search-btn {
        width: 100%;
    }

    .about-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        gap: 2px;
    }

    .about-tab-btn {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 4px;
    }

    .news-article-title {
        font-size: 24px;
    }

    .article-view-body {
        font-size: 16px;
        line-height: 1.7;
    }

    .site-footer {
        padding: 30px 0 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 15px;
    }

    .company-info {
        text-align: center;
        font-size: 12px;
    }

    .ad-banner {
        margin: 1.5rem 0;
        padding: 0;
    }

    .ad-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-sub-card {
        flex-direction: column;
        height: auto;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }

    .hero-sub-img-box {
        width: 100%;
        height: 160px;
    }

    .hero-sub-body {
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .list-item {
        flex-direction: column;
        gap: 12px;
        padding-bottom: 15px;
    }

    .list-thumb-box {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
    }

    .list-info {
        gap: 8px;
    }

    .list-item-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .view-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .view-footer-actions {
        flex-wrap: wrap;
        justify-content: center;
        margin: 25px auto;
    }

    .photo-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .report-form {
        padding: 15px;
    }
}