@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

/* ==========================================================================
    1. Common CSS (전체스타일 & 변수)
    ========================================================================== */
:root {
    /* Base Colors */
    --primary-color: #1a365d; 
    --primary-hover: #2b6cb0;
    --text-main: #1a202c;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --border-color: #e2e8f0;
    
    /* Redesign Brand Colors */
    --color-blue: #28589B;
    --color-green: #5BC894;
    --primary-gradient: linear-gradient(135deg, var(--color-blue), var(--color-green));
    --theme-accent: #387c98;
    
    /* Layout */
    --max-width: 1140px;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.03rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-blue);
}

ul, ol, li {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

em {
    font-style: normal;
    color: var(--primary-color);
    font-weight: bold;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    padding: 40px 0 !important;
}

.main-content {
    flex: 1;
    min-width: 0;
    background-color: #fff;
}

.aside.view-sidebar {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        padding: 20px !important;
    }
    .aside.view-sidebar {
        width: 100%;
    }
}

/* ==========================================================================
    2. Header (Redesign 반영)
    ========================================================================== */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.site-logo img {
    height: 72px;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* 스크롤 시 헤더 축소 효과 */
.site-header.is-scrolled .header-top {
    padding: 10px 0;
}
.site-header.is-scrolled .site-logo img {
    height: 40px;
}

.header-search {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-blue);
    border-radius: 30px;
    padding: 4px;
    background: #fff;
}

.header-search input {
    padding: 8px 16px;
    border: none;
    outline: none;
    width: 240px;
    font-size: 15px;
    background: transparent;
}

.header-search button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-search button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(40, 88, 155, 0.3);
}

.gnb {
    background: #fff;
    border-top: 1px solid #d7e5ee;
}

.gnb-list {
    display: flex;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding: 12px 20px;
}

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

.gnb-item a {
    display: block;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.gnb-item a:hover {
    background: var(--bg-light);
    color: var(--color-blue);
}

.gnb-item.active a {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(40, 88, 155, 0.25);
}

@media (max-width: 768px) {
    .header-search { display: none; }
    .header-top { justify-content: center; }
    .gnb-list { justify-content: flex-start; column-gap: 0; }
    .gnb-item a { padding: 8px 14px; font-size: 14px; }
}

/* ==========================================================================
    3. Main Page CSS
    ========================================================================== */
.main-hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.hero-main-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: block;
}

.hero-main-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-main-card:hover img {
    transform: scale(1.03);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
    color: #fff;
}

.hero-category {
    background: var(--primary-gradient);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(91, 200, 148, 0.3);
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
}

.hero-content p {
    color: #cbd5e1;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-sub-cards {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}

.hero-sub-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #28627b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    padding-right: 16px;
}

.hero-sub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    color: var(--color-blue);
}

.hero-sub-card img {
    width: 140px;
    height: 100%;
    min-height: 130px;
    object-fit: cover;
}

.hero-sub-title {
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    color: #fff;
}

.section-header {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.category-grid a { display: block; }

.cat-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-grid a:hover .cat-card-img {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cat-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

/* Section News */
.section-news-wrapper { margin-bottom: 70px; }

.section-news-main-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-main);
}

.section-news-grid-wrap {
    border-top: 3px solid var(--color-blue);
    padding-top: 30px;
    position: relative;
}

.section-news-grid-wrap::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 25%;
    height: 3px;
    background: var(--primary-gradient);
}

.section-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
}

.section-news-cate {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-blue);
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 12px;
}

.section-news-top {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: center;
}

.section-news-top img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-news-top .tit {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.section-news-top:hover .tit {
    color: var(--color-blue);
}

.section-news-list {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.section-news-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 12px;
    position: relative;
}

.section-news-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 8px;
    color: var(--color-green);
}

/* Network News */
.network-news-fullbleed {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #4b98a1, #1a5c64);
    padding: 60px 0;
    margin-bottom: 60px;
}

.network-news-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.network-news-title {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.network-news-title::after {
    content: '';
    position: absolute;
    right: -14px;
    top: -5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
}

.network-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.network-news-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.network-news-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.network-news-item:hover img {
    transform: scale(1.05);
}

.network-news-item p {
    color: #f8fafc;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.network-news-item:hover p {
    color: var(--color-green);
}

/* Youtube Section */
.youtube-section {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
}

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

.youtube-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.youtube-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.youtube-item:hover img {
    transform: scale(1.03);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(229, 62, 62, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    padding-left: 6px;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
    transition: transform 0.2s;
}

.youtube-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Issue Section */
.issue-section { margin-bottom: 80px; }

.issue-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.issue-main { display: block; }
.issue-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.issue-main h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.2s;
}

.issue-main:hover h3 { color: var(--color-blue); }

.issue-main p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.issue-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.issue-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.issue-item:last-child {
    border: none;
    padding-bottom: 0;
}

.issue-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.issue-item-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.issue-item:hover h4 { color: var(--color-blue); }

@media (max-width: 992px) {
    .main-hero-section { grid-template-columns: 1fr; }
    .hero-main-card img { height: 350px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .section-news-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .network-news-grid { grid-template-columns: repeat(2, 1fr); }
    .issue-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-content { padding: 20px; }
    .hero-title { font-size: 20px; }
    .hero-content p {font-size: 14px; }
    .category-grid, .section-news-grid, .network-news-grid, .youtube-grid { grid-template-columns: 1fr; }
    .youtube-section { padding: 0; background: #fff; }
    .section-header, .section-news-main-title { font-size: 20px;}
    .cat-card-title { font-size: 18px; }
}

/* ==========================================================================
    4. List Page CSS
    ========================================================================== */
.list-article {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.list-article-img {
    width: 240px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.list-article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-article-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.list-article-meta {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .list-article { flex-direction: column; }
    .list-article-img { width: 100%; height: 200px; }
     .list-article-title { font-size: 18px; }
    .list-article-desc { font-size: 15px; }
}

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

.page-btn {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
}

.page-btn:hover {
    background: var(--bg-light);
    text-decoration: none;
}

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

/* ==========================================================================
    5. View Page & Sidebar CSS
    ========================================================================== */
.article-view-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-view-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.article-view-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.article-view-body {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.article-view-body img {
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-tools {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tool-btn {
    padding: 8px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-main);
}

.tool-btn:hover { background: #e2e8f0; }

/* 본문 내 타이틀 디자인 (중복 Override 통합) */
.content-wrapper h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    border-bottom: 2px solid var(--theme-accent); /* 수정본 컬러 통합 */
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-wrapper h4 {
    font-size: 1.15rem;
    color: #333;
    border-left: 4px solid var(--theme-accent); /* 수정본 컬러 통합 */
    padding-left: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.content-wrapper h4 em,
[class*=ad_text] h4 em {
    color: var(--theme-accent) !important;
    font-style: normal;
    font-weight: 700;
}

.content-wrapper h4 a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Sidebar Ads */
.ad_text_pic_B {
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    background: #fafafa;
}

.ad_text_pic_B h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.ad_text_pic_B li a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ad_text_pic_B .thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.ad_text_pic_B .tit {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ad_vert { margin-bottom: 20px; }
.ad_vert img { width: 100%; border-radius: 8px; }

@media (max-width: 576px) {
    .ad_text_pic_B ul { grid-template-columns: 1fr; }
    .ad_vert { padding: 0 20px; }
    .article-view-title { font-size: 24px; margin-top: 20px; }
    .article-view-body  { font-size: 15px;}
    .article-view-meta { font-size: 12px;}
}

/* ==========================================================================
    6. About Page CSS
    ========================================================================== */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-blue);
}

.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.tab-btn {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn.active {
    color: var(--color-blue);
    border-bottom-color: var(--color-blue);
}

.tab-btn:hover { color: var(--primary-hover); }

.tab-content {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    line-height: 1.8;
}

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

.tab-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-main);
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 10px;
}

.tab-content p { margin-bottom: 15px; }
.tab-content ul { padding-left: 20px; margin-bottom: 15px; }
.tab-content li { list-style-type: disc; margin-bottom: 8px; }

.contact-box {
    background: var(--bg-light);
    padding: 20px;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 5px;
    font-weight: 500;
}

/* ==========================================================================
    7. Ad Banners
    ========================================================================== */
.ad-banner {
    width: fit-content;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 2rem auto;
    padding: 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;
}

.ad-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    font-weight: bold;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.1);
    color: #cecdcd;
    padding: 2px 6px;
    border-radius: 3px;
}

.banner_ad {
    position: absolute;
    top: 2px;
    right: 2px;
    width: auto !important;
    height: 16px;
    z-index: 1;
    cursor: pointer;
}

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

/* ==========================================================================
    8. Footer
    ========================================================================== */
.site-footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 20px 0;
    font-size: 13px;
    margin-top: 60px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #2d3748;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #cbd5e0;
    font-weight: 500;
}

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

.footer-info p { margin-bottom: 5px; }

.footer-copyright {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 576px) {
    .site-footer {font-size: 12px;}
}