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

.news-module {
    width: 100%;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 15px;
}

/* 主容器布局 */
.news-container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 20px;
}

/* 左侧大图文章样式 */
.main-article {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.main-article:hover {
    transform: translateY(-3px);
}

.main-article-image {
    width: 100%;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.main-article-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background-color: #f9f9f9;
}

.main-article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e63946;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.main-article-content {
    padding: 20px;
    background-color: #fff;
}

.main-article-title {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.main-article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.main-article-title a:hover {
    color: #e63946;
}

.main-article-meta {
    display: flex;
    font-size: 0.9rem;
    color: #888;
}

.main-article-meta span {
    display: flex;
    align-items: center;
}

.main-article-meta span::before {
    content: "•";
    margin: 0 8px;
    font-size: 0.7rem;
}

.main-article-meta span:first-child::before {
    display: none;
}

/* 右侧小文章区域 */
.news-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.side-article {
    display: flex;
    height: calc(33.333% - 12px);
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.side-article:hover {
    transform: translateY(-2px);
}

.side-article-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #457b9d;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
}

.side-article-image {
    width: 35%;
    min-width: 120px;
    position: relative;
}

.side-article-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f9f9f9;
}

.side-article-content {
    width: 65%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.side-article-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.side-article-title a:hover {
    color: #457b9d;
}

.side-article-meta {
    font-size: 0.85rem;
    color: #888;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .side-article {
        height: auto;
    }
}

@media (max-width: 576px) {
    .side-article {
        flex-direction: column;
    }
    
    .side-article-image,
    .side-article-content {
        width: 100%;
    }
    
    .side-article-image {
        height: 160px;
    }
    
    .main-article-title {
        font-size: 1.4rem;
    }
}

/* 俱乐部介绍模块样式 */
.club-intro-module {
    width: 100%;
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 15px;
}

.club-intro-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
}

/* 左侧图片区域 */
.club-intro-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.club-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.club-intro-container:hover .club-intro-image img {
    transform: scale(1.05);
}

.club-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    padding: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 10;
}

.club-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* 右侧内容区域 */
.club-intro-content {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.club-intro-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
    position: relative;
    padding-bottom: 15px;
}

.club-intro-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #3b82f6;
}

.club-intro-excerpt {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.club-intro-link {
    display: inline-block;
    color: #fff;
    background-color: #3b82f6;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.club-intro-link:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .club-intro-container {
        grid-template-columns: 1fr;
    }
    
    .club-intro-image {
        min-height: 300px;
    }
    
    .club-intro-content {
        padding: 30px 35px;
    }
}

@media (max-width: 768px) {
    .club-intro-title {
        font-size: 1.7rem;
    }
    
    .club-badge {
        width: 65px;
        height: 65px;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .club-intro-content {
        padding: 25px 20px;
    }
    
    .club-intro-excerpt {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* 球员轮播模块容器 */
.players-carousel-module {
    width: 100%;
    margin: 60px 0;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* 模块标题 */
.carousel-title-container {
    max-width: 1600px;
    margin: 0 auto 50px;
    padding: 0 20px;
    text-align: center;
}

.carousel-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: #3b82f6;
    border-radius: 2px;
}

/* 轮播容器 */
.players-carousel {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px; /* 增加内边距，为大卡片留出空间 */
    position: relative;
}

/* 轮播轨道 */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    gap: 40px; /* 加大间距，避免拥挤 */
}

/* 球员卡片 - 更大尺寸 */
.player-slide {
    min-width: calc(33.333% - 27px); /* 每行3个大卡片 */
    box-sizing: border-box;
}

.player-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.player-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* 球员照片容器 - 确保完全显示 */
.player-photo-container {
    width: 100%;
    aspect-ratio: 3/4; /* 标准人像比例 */
    overflow: hidden;
    background-color: #f1f5f9; /* 与图片背景协调 */
}

.player-photo {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 改为contain确保图片完全显示，不裁剪 */
    background-color: #f1f5f9; /* 与容器背景一致，避免边缘突兀 */
    transition: transform 0.8s ease;
}

.player-card:hover .player-photo {
    transform: scale(1.05); /* 轻微缩放，避免过度变形 */
}

/* 球员标题（姓名）- 放大字体 */
.player-name {
    padding: 25px 15px 20px;
    text-align: center;
}

.player-name a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-card:hover .player-name a {
    color: #3b82f6;
}

/* 轮播控制按钮 - 加大尺寸 */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1e40af;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background-color: #1e40af;
    color: #fff;
    transform: translateY(-50%) scale(1.15);
}

.carousel-prev {
    left: -10px;
}

.carousel-next {
    right: -10px;
}

/* 响应式设计 - 保持大卡片特性 */
@media (max-width: 1400px) {
    .player-slide {
        min-width: calc(50% - 20px); /* 每行2个大卡片 */
    }
}

@media (max-width: 992px) {
    .player-name a {
        font-size: 1.4rem;
    }
    
    .carousel-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .player-slide {
        min-width: 100%; /* 每行1个大卡片 */
    }
    
    .carousel-title {
        font-size: 2.2rem;
    }
    
    .carousel-control {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .players-carousel {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .players-carousel-module {
        padding: 35px 0;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .player-name {
        padding: 20px 10px 15px;
    }
}

/* 下方文章列表容器 */
.more-articles-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.more-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}
@media (max-width: 768px) {
    .more-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .more-articles-grid {
        grid-template-columns: 1fr;
    }
}
.more-article-item {
    border-radius: 4px;
    overflow: hidden;
}
.more-article-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.more-article-info {
    padding: 10px 15px;
    background-color: #fff;
}
.more-article-cate {
    font-size: 12px;
    color: #000;
    margin-bottom: 5px;
}
.more-article-title {
    font-size: 16px;
    margin: 0 0 8px;
    line-height: 1.4;
}
.more-article-title a {
    color: #000;
    text-decoration: none;
}
.more-article-title a:hover {
    color: #000;
}
.more-article-meta {
    font-size: 12px;
    color: #999;
}

/* H1隐藏样式（仅SEO用，不影响视觉） */
.hidden-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

