/* Video Modal Styles */
.video-modal-content video {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

/* Hide Video Controls */
.video-modal-content video::-webkit-media-controls {
    display: none !important;
}

.video-modal-content video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-modal-content video::-webkit-media-controls-panel {
    display: none !important;
}

/* Ensure modal is always on top */
.video-modal * {
    z-index: 10000;
}

/* 공통 스타일 */
:root {
    --primary-color: #0066b3;
    --secondary-color: #00a0e9;
    --accent-color: #ff4081;
    --text-color: #333;
    --text-light: #666;
    --text-dark: #111;
    --white: #fff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.more-view-button {
    display: flex; /* Flexbox로 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
    margin: 20px 0; /* 상하 여백 */
}

/* 버튼 스타일 */
.more-view-button a {
    background-color: #007bff; /* 배경색 */
    color: white; /* 글자색 */
    padding: 10px 20px; /* 여백 */
    text-decoration: none; /* 밑줄 제거 */
    border-radius: 5px; /* 모서리 둥글게 */
    display: inline-block; /* inline-block으로 설정 */
}

.card-btn {
    background-color: #007bff;  /* 버튼 배경색 */
    color: white;                /* 글자색 */
    padding: 10px 20px;         /* 여백 */
    text-decoration: none;       /* 밑줄 제거 */
    border-radius: 5px;         /* 둥글게 */
    display: inline-block;       /* inline-block으로 설정 */
}
.header-container {
    max-width: 1350px;
    height: 100%;
    margin: 0 auto;
    padding: 0 25px 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
    max-width: 200px; 
    width: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation menu */
.main-menu {
    position: relative;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-menu > ul > li {
    position: relative;
}

.main-menu > ul > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    display: block;
    padding: 20px 0;
    position: relative;
}

.main-menu > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

.main-menu > ul > li:hover > a {
    color: #0066cc;
}

.main-menu > ul > li:hover > a::after {
    width: 100%;
}

/* Submenu styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    padding: 15px 0;
    margin-top: 15px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transform: translateX(-50%) translateY(5px);
}

.submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 -2px 2px rgba(31, 38, 135, 0.1));
}

.submenu li {
    padding: 0;
    position: relative;
    width:calc(50% - 4px) !important;
}

.submenu a {
    padding: 12px 25px;
    font-size: 0.95em;
    color: #333;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: block;
    position: relative;
    font-weight: 400;
    letter-spacing: -0.3px;
    text-decoration: none;
}

.submenu a:hover {
    color: #0066cc;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.03) 100%);
    padding-left: 25px;
    text-decoration: none;
}

.submenu a::after {
    content: '';
    position: absolute;
    left: 25px;
    bottom: 8px;
    width: 0;
    height: 1px;
    background: #0066cc;
    transition: all 0.3s ease;
}

.submenu a:hover::after {
    width: calc(100% - 50px); /* 좌우 패딩(25px)을 고려한 너비 */
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .main-menu > ul > li > a {
        padding: 12px 0;
    }

    .main-menu > ul > li > a::after {
        display: none;
    }

    .submenu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 20px;
        margin-top: 0;
        display: none;
        backdrop-filter: none;
        border: none;
        background: transparent;
    }

    .submenu::before {
        display: none;
    }

    .has-submenu:hover .submenu {
        transform: none;
        display: block;
    }

    .submenu a {
        padding: 8px 15px;
        color: #666;
    }

    .submenu a:hover {
        background: none;
        padding-left: 25px;
    }

    .submenu a::after {
        left: 15px;
        bottom: 6px;
    }

    .submenu a:hover::after {
        width: calc(100% - 30px);
    }

    .logo img {
        height: 30px;
        display: block;
        margin: 0 auto;
    }
}

/* Header right section */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.4 {
    display: flex;
    gap: 10px;
}
.language-switch a {
    text-decoration: none;
    color: #666;
    font-size: 0.8em;
}

.language-switch a.active {
    color: #0056b3;
    font-weight: 500;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 40px;
    color: #333;
    cursor: pointer;
    padding: 0;
}

.shop-btn {
    background: #0056b3;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.shop-btn:hover {
    background: #003d82;
}

/* Main banner */
.main-banner {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-top: 90px;
}

.banner-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

/* Removing the gradient overlay */
.slide::after {
    display: none;
}
.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.banner-content h2 {
    font-size: 3.8em;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #fff;
    font-family: 'GmarketSansBold', sans-serif !important;
    text-transform: uppercase;
    position: relative;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    opacity: 0.9;
}

.banner-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #fff;
    opacity: 0.8;
}

.banner-content p {
    margin-bottom: 15px;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.3;
    color: #cef5dc;
    opacity: 0.9;
    font-family: 'GmarketSansBold', sans-serif !important;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.banner-content .description {
    font-size: 1.2em;
    margin: 25px 0 40px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.banner-content .more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.banner-content .more-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slide-indicators span {
    color: #fff;
    cursor: pointer;
    font-size: 18px;     /* ← 여기서 숫자 크기 조정 */
    opacity: 0.5;
    transition: opacity 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-indicators span.active {
    opacity: 1;
    font-size: 18px;     /* ← 활성 슬라이드 번호 크기 */
}

/* Product showcase */
.product-showcase {
    padding: 30px 0 0px;
    background-color: #fff;
    position: relative;
    background: url('../images/bg-pattern.jpg') center center/cover fixed;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin: 0 40px 40px 40px;
}

.product-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* 제품 이미지 스타일 */
.product-image {
    flex: 1;
    position: relative;
    width: 1980px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #FFA500;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-image::after {
    opacity: 0.5;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0056b3;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.product-info p {
    margin-bottom: 20px;
    font-size: 1.4em;
    line-height: 1.8;
    color: #444;
}

.product-info .description {
    color: #444;
    font-size: 1.3em;
    margin-bottom: 35px;
    line-height: 2;
    font-weight: 500;
}

.btn-more {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s ease-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-more:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 뉴스 & 공지사항 */
.news-notice {
    padding: 100px 0;
    background: var(--gray-100);
}

.news-list {
    max-width: 3200px;
    margin: 0 auto;
}

.news-list li {
    list-style: none;
    margin-bottom: 20px;
}

.news-list a {
    display: block;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s;
}

.news-list a:hover {
    transform: translateX(10px);
}

.news-date {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Footer */
footer {    
    background: var(--c-primary);
    padding: 25px 0 25px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-content h4 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #fff;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 10px;
}

.link-group a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.link-group a:hover {
    color: #fff;
}

.company-info h4 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #fff;
}

.company-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.company-info li {
    margin-bottom: 10px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}
/* Responsive design */
@media (max-width: 1024px) {
    .header-container {
        padding: 15px;
    }

    .main-menu ul {
        gap: 20px;
    }

    .product-item {
        gap: 40px;
    }
}


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

    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .main-banner {
        height: 400px;
    }

    .banner-content {
        left: 5%;
        max-width: 90%;
    }

    .product-item {
        flex-direction: column;
        gap: 30px;
    }

    .product-item:nth-child(even) {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .banner-content h2 {
        font-size: 3.8em;
        font-family: 'GmarketSansBold', sans-serif !important;
    }

    .banner-content p {
        font-size: 2.5em;
        font-family: 'GmarketSansBold', sans-serif !important;
    }

    .banner-content .description {
        font-size: 1.2em;
        margin: 20px 0 30px;
    }

    .banner-content .more-btn {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    .banner-content h2::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
}/* News section */
.news-section {
    padding: 0px 0;
    background-color: #f8f8f8;
}

.news-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.news-section .section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #333;
}

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

.news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-content {
    padding: 25px;
}

.news-source {
    display: inline-block;
    font-size: 14px;
    color: #0066cc;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}
.news-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-date {
    display: block;
    font-size: 14px;
    color: #999;
}

.btn-more-wrap {
    text-align: center;
    margin-top: 10px;  /* 기존 30px에서 줄이기 */
    margin-bottom: 10px;  /* 필요시 하단도 */
}

.btn-more {
    display: inline-block;
    padding: 8px 20px;  /* 버튼 자체의 안쪽 여백도 조정 가능 */
    background-color: #0066cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-more:hover {
    background-color: #0052a3;
}

/* 로딩 상태 스타일 */
.loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #666;
    grid-column: 1 / -1;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    border: 2px solid #ddd;
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 에러 메시지 스타일 */
.error-message {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.error-message p {
    color: #dc3545;
    margin-bottom: 16px;
}
.error-message button {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.error-message button:hover {
    background: #0052a3;
}
/* 반응형 스타일 */
@media (max-width: 768px) {

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

    .news-grid table {
        table-layout: auto !important;
    }
    .news-grid th:nth-child(2),
    .news-grid td:nth-child(2) {
        text-align: center !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
    
    .news-content {
        padding: 15px;
    }

    .news-title {
        font-size: 16px;
    }
}

/* 모바일 공지사항 테이블 최적화 */
@media (max-width: 768px) {
    /* 공지사항 카드의 제목 열 너비 조정 */
    .info-card.news-card th:nth-child(2),
    .info-card.news-card td:nth-child(2) {
        width: auto !important; /* 고정 너비 해제 */
        max-width: 200px !important; /* 모바일 화면에 맞춰 축소 */
    }

    /* 화면이 아주 좁을 경우 순번(1번째 열)이나 작성일(3번째 열)을 숨겨 공간 확보 */
    .info-card.news-card th:nth-child(1),
    .info-card.news-card td:nth-child(1),
    .info-card.news-card th:nth-child(3),
    .info-card.news-card td:nth-child(3) {
        display: none; 
    }

    /* 테이블 레이아웃을 고정에서 자동으로 변경 */
    .info-card.news-card table {
        table-layout: auto !important;
    }
}

/* 더 많은 뉴스 보기 버튼 스타일 */
.btn-more-wrap {
    text-align: center;
    margin-top: 10px;  /* 기존 30px에서 줄이기 */
    margin-bottom: 10px;  /* 필요시 하단도 */
}

.btn-more {
    display: inline-block;
    padding: 8px 20px;  /* 버튼 자체의 안쪽 여백도 조정 가능 */
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .product-image {
        width: 100% !important;
        /* 기존 20.2%의 두 배 정도인 비율로 설정 */
        aspect-ratio: 16 / 9; 
        height: auto !important;
        padding-top: 0 !important; /* 기존 패딩 제거 */
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 이미지가 찌그러지지 않게 꽉 채움 */
    }
}

/* 추가 정보 섹션 스타일 */
.info-section {
    padding: 0 0 20px 0;
    background-color: #f8f9fa;
}

.info-section .container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.info-card h3 {
    font-size: 1.5em;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: 600;
}
.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* What's News 카드 스타일 */
.news-card {
    grid-column: span 2;
}

.news-list {
    list-style: none;
    padding: 0;
}
.news-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list .category {
    color: #0066cc;
    font-weight: 500;
    margin-right: 10px;
}

.news-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.news-list a:hover {
    color: #0066cc;
}

.news-list .date {
    float: right;
    color: #999;
    font-size: 0.9em;
}
/* 사이버감사실 카드 스타일 */
.audit-card .contact-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.audit-card .contact-info p {
    margin-bottom: 10px;
}

.audit-card .contact-info p:last-child {
    margin-bottom: 0;
}

/* 공통 버튼 스타일 */
.card-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* 모바일 화면에서는 공지사항 더보기 버튼 숨기기 */
    .info-card.news-card .more-view-button {
        display: none;
    }

    /* 또는 다른 버튼 클래스가 사용된 경우 */
    .btn-more-wrap {
        display: block;
    }
}
@media (max-width: 768px) {
    .language-switch {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0px;
        right: 40px;
        gap: 0px;
        font-size: 20px;
        text-align: right;
        z-index: 999; /* 햄버거 메뉴 위에 표시되도록 */
      }
    
      .language-switch a {
        display: block;
        padding: 1px 5px;
        line-height: 1.2;
      }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card {
        grid-column: span 1;
    }
    
    .info-card {
        padding: 20px;
    }
}

    

.ct_TBtn_zone_01 {height:40px; padding-top: 10px; clear: both; text-align: center; border-top: 1px solid #e1e1e1;}
.ct_TBtn_zone_01 > a {display: inline-block; font-weight:bold; padding: 6px 30px 6px; font-size: 1em; color: #fff; white-space: nowrap; background-color: #363e48; border: 1px solid #292929;}
.ct_TBtn_zone_01 > a:hover {border: 1px solid #d82900; background-color: #ff6905;}
.ct_TBtn_zone_01 > a:focus {border: 1px solid #d82900; background-color: #ff6905;} 



















