/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "微软雅黑", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}
.container1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    box-sizing: border-box;
}


/* Header */
.header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 50px;
    margin-right: 10px;
}

.header .logo h1 {
    font-size: 24px;
    color: #0056b3;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-right a { text-decoration:none;}

.countdown {
    margin-right: 30px;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
}

.search-bar {
    /*display: flex;*/
    align-items: center;
    margin-right: 20px;
}

.search-bar input {
    width: 300px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 5px;
    height: 40px;
    line-height: 20px;
    box-sizing: border-box;
}

.search-bar button {
    background-color: #0069B7;
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 40px;
    box-sizing: border-box;
}

.search-bar button img {
    height: 17px;
    width: auto;
}

.exhibitor-login {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background-color: #0069B7;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.exhibitor-icon {
    height: 16px;
    width: auto;
}

/* Navbar */
.navbar {
    background-color: #0056b3;
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

.nav-links a:hover {
    background-color: #004085;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    min-width: 130px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
    text-align: center;
    font-size: 16px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color: #0092FF;
    font-weight: bold;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

.dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-menu span {
    height: 3px;
    width: 25px;
    background-color: white;
    margin-bottom: 4px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    overflow: visible;
}

.hero-banner .swiper-container {
    width: 100%;
    height: 0;
    padding-bottom: 32.85%; /* 16:9 宽高比 */
    position: relative;
    overflow: hidden;
}

.hero-banner .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-banner .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.hero-banner .swiper-slide img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 98%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 999;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
}

.hero-content h2 {
    font-size: 4em;
    margin-bottom: 10px;
}

.hero-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 0;
    position: relative;
    /* z-index: 999; */
    flex-wrap: wrap;
}

.hero-buttons a{ text-decoration:none;}

.hero-buttons .btn {
    width: 368px;
    height: 100px;
    background-color: #006ab8;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    background-color: #006ab8;
    transform: translateY(-2px);
}

.hero-buttons .btn .btn-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-right: 15px;
}

.hero-buttons .btn span:not(.arrow) {
    flex: 1;
    text-align: left;
}

.hero-buttons .btn .arrow {
    margin-left: auto;
    font-weight: bold;
}

/* Stats Section */
.stats {
    padding: 50px 0;
    background-image: url('../images/sjbg.jpg'); 
    background-size: cover; 
    background-position: center;
    color: #fff;
    font-size: 32px;
    margin-top: 80px;
}

.stats-title {
    text-align: center;
    margin-bottom: 40px;
}

.stats-title h2 {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
}

.stats-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    color:#fff;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
}

/* Media Center */
.media-center {
    padding: 40px 0;
    background-color: #fff;
}

.media-center h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
}

.media-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.media-left {
    flex: 1;
    position: relative;
}

.custom-slider {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

.image-caption {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

.media-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.media-right .tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.media-right input[type="radio"] {
    display: none;
}

.media-right .tab-button {
    padding: 8px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    position: relative;
}

/* 修复标签按钮激活状态 */
#tab1:checked ~ .tabs label[for="tab1"],
#tab2:checked ~ .tabs label[for="tab2"] {
    color: #0069B7;
    font-weight: bold;
}

#tab1:checked ~ .tabs label[for="tab1"]::after,
#tab2:checked ~ .tabs label[for="tab2"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0069B7;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

/* 默认显示展会新闻 */
#news {
    display: block;
}
/* 推荐：让 .search-bar 内部横向排列 */
.search-bar form {
    display: flex;
    align-items: center;
    /*gap: 5px; */
}

/* 标签切换 */
#tab1:checked ~ .tab-content #news {
    display: block;
}

#tab1:checked ~ .tab-content #announcement {
    display: none;
}

#tab2:checked ~ .tab-content #news {
    display: none;
}

#tab2:checked ~ .tab-content #announcement {
    display: block;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    /*display: flex;*/
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.news-list li:first-child {
    flex-direction: column;
    align-items: flex-start;
}

.news-list li:first-child .title-date-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}

.news-list li:first-child a {
    margin-bottom: 0;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list a {
    flex: 1;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
    position: relative;
}

.news-list li:not(:first-child) a::before {
    content: "•";
    color: #0069B7;
    margin-right: 8px;
    font-size: 20px;
}

.news-list a:hover {
    color: #0056b3;
}

.news-list span {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
    float: right;
}

.news-list p {
    display: none;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 5px;
}

.news-list li:first-child p {
    display: block;
}

.view-more {
    display: inline-block;
    text-align: right;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #0069B7;
    padding: 6px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    float: right;
}

.view-more:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Quick Navigation */
.quick-nav {
    padding:0;
}

.quick-nav h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.quick-nav-left {
    grid-column: 1;
}

.quick-nav-right {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quick-nav-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.quick-nav-left .quick-nav-item {
   /* height: 100%;*/
}



.quick-nav-item:hover {
    transform: translateY(-5px);
}

.quick-nav-item .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.quick-nav-item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.quick-nav-item .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* 移动端响应式布局 */
@media screen and (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #0056b3;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
        padding-top: 20px;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-content {
        position: static;
        background-color: rgba(0, 0, 0, 0.6);
        width: 100%;
        transform: none;
        display: none;
        margin-top: 0;
        padding: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 0;
        text-align: center;
        padding-left: 20px;
    }

    .quick-nav-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-nav-left {
        grid-column: 1;
    }

    .quick-nav-right {
        grid-column: 1;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .hero-banner .swiper-container {
        padding-bottom: 34.14%; /* 16:9 宽高比 */
    }
}

@media screen and (max-width: 480px) {
    .quick-nav-right {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

}

/* Partners */
.partners {
    padding: 40px 0 20px;
    text-align: center;
}
.media-partners {
    padding: 20px 0;
    text-align: center;
}

.partners h2, .media-partners h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

.partner-logos, .media-partner-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 20px 0;
}

.partner-logos img, .media-partner-logos img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 5px;
    background: white;
}

.partner-logos img:hover, .media-partner-logos img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1200px) {
    .partner-logos, .media-partner-logos {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .partner-logos, .media-partner-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .partner-logos, .media-partner-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .partner-logos, .media-partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.footer {
    background-color: #006ab8;
    color: white;
    padding: 20px 0 0;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 3;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.footer-col ul li a:hover {
    color: white;
}

.qr-code {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.qr-code img {
    width: 100px;
    height: 100px;
    background-color: white;
    /*padding: 5px;*/
    border-radius: 5px;
    margin-bottom: 10px;
}

.qr-code p {
    font-size: 0.9em;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin-top: 10px;
    }

    .search-bar, .countdown, .exhibitor-login {
        width: 100%;
        margin-bottom: 10px;
    }

    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0056b3;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .hamburger-menu {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    .hero-content h3 {
        font-size: 1.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 80%;
        margin: 5px auto;
    }

    .stats {
        flex-direction: column;
    }

    .media-content {
        flex-direction: column;
    }

    .quick-nav-grid {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .media-content {
        flex-direction: column;
    }
    .section-title { margin-top: 40px;}
    .custom-slider {
        height: 300px;
    }
    
    .media-right .tabs {
        justify-content: center;
    }
    .stats { margin-top: 0;}
    .stat-item p {
        font-size: 1.5rem;
        color: #fff;
        font-weight: bold;
    }
    .stat-item h3 {
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 10px;
    }
    .hero-buttons .btn .btn-icon {
        width: 2rem;
        height: 2rem;
        object-fit: contain;
        font-size: 0.875rem;
        margin-right: 15px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
.stats-title h2 {
    font-size: 1.5rem;

}
}

/* 移动端响应式布局 */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 5px;
    }

    /* 头部样式调整 */
    .header .container {
        flex-direction: column;
        padding: 10px 0;
    }

    .header .logo {
        padding: 0;
        margin: 0;
    }

    .header .logo img {
        margin-right: 0;
        width: 100%;
        height: auto;
        padding: 0 5px;
    }

    .header-right {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .countdown {
        margin-right: 0;
        justify-content: center;
    }

    .search-bar {
        width: 100%;
        margin-right: 0;
        padding: 0 5px;
    }

    .search-bar input {
        width: 100%;
    }

    .exhibitor-login {
        width: 100%;
        display: none;
        justify-content: center;
    }

    /* 导航栏调整 */
    .navbar {
        position: relative;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #0056b3;
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
        gap: 20px;
        z-index: 999;
        padding: 60px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 15px 20px;
        font-size: 18px;
    }

    .dropdown-content {
        position: static;
        background-color: rgba(0, 0, 0, 0.3);
        width: 100%;
        transform: none;
        display: none;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 12px 20px;
        font-size: 16px;
    }

    .hamburger-menu {
        display: flex;
    }

    /* 轮播图调整 */
    .hero-banner {
        height: auto;
    }

    .hero-content {
        padding: 5px;
        position:unset;
        transform:unset;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 2px;
    }

    .swiper-button-next { display: none;} 
    .swiper-button-prev { display: none;}

    .hero-buttons .btn {
        width: 100%;
        height: auto;
        padding: 10px;
        font-size: 1.2rem;
    }

    /* 统计数据调整 */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 媒体中心调整 */
    .media-content {
        flex-direction: column;
    }

    .media-left, .media-right {
        width: 100%;
    }

    /* 快速导航调整 */
    .quick-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 合作伙伴和媒体合作伙伴调整 */
    .partner-logos, .media-partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 页脚调整 */
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 20px;
        min-width: 100px;
    }
    
    /* .footer-col.qr-code {
        grid-column: span 3;
        text-align: center;
    } */

    .copyright {
        font-size: 12px;
    }
}

/* 小屏幕手机适配 */
@media screen and (max-width: 480px) {
    .stats {
        padding: 20px 0;
    }
    .stats-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    .stats-content .stat-item:nth-child(4),
    .stats-content .stat-item:nth-child(5) {
        grid-column: span 1.5;
    }
    .quick-nav-grid {
        grid-template-columns: 1fr;
    }
    .partner-logos, .media-partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .footer-col {
        font-size: 14px;
    }
    
    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
.title-date-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}

.title-date-wrapper a {
    flex: 1;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-date-wrapper span {
    flex-shrink: 0;
    color: #666;
    font-size: 14px;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #0066cc;
}

