/*
 * Home Page Styles
 * 首页专用样式文件
 */

/* ============================================
   覆盖原有的 main-wrapper 样式
   ============================================ */
.main-wrapper.home-page-wrapper {
    background: transparent;
    padding: 0;
}

/* ============================================
   Hero Banner Section
   ============================================ */
.home-page-wrapper {
    background: transparent;
}

.home-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #fff;
}

.highlight-text {
    color: #FFD93D;
    position: relative;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Search Bar */
.hero-search-bar {
    margin-bottom: 30px;
}

.hero-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-search-form .search-icon {
    color: #AB47BC;
    font-size: 18px;
    margin-right: 12px;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px 0;
    color: #333;
}

.hero-search-input::placeholder {
    color: #999;
}

.hero-search-btn {
    background: #AB47BC;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-search-btn:hover {
    background: #8E24AA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 71, 188, 0.4);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-btn.primary-btn {
    background: #fff;
    color: #AB47BC;
}

.hero-btn.primary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-btn.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    font-size: 24px;
    color: #FFD93D;
}

.trust-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Image Content */
.hero-image-content {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-main-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    border-radius: 50px;
}

.hero-floating-card {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
    color: #AB47BC;
    font-size: 20px;
}

.hero-floating-card.card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.decoration-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.decoration-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
}

.decoration-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
}

/* ============================================
   Features Section
   ============================================ */
.home-features-section {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ============================================
   Products Section
   ============================================ */
.home-products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header-with-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header-left {
    flex: 1;
}

.section-label {
    display: inline-block;
    color: #AB47BC;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin: 0 0 10px 0;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.view-all-products-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #AB47BC;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.view-all-products-link:hover {
    gap: 12px;
    color: #8E24AA;
}

/* ============================================
   Advertising Section
   ============================================ */
.home-advertising-section {
    padding: 80px 0;
    background: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.advertising-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ad-slot {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.ad-slot:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ad-slot-content {
    margin-bottom: 20px;
}

.ad-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.ad-slot-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.ad-slot-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
}

.ad-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ad-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.ad-features li i {
    color: #AB47BC;
    font-size: 16px;
}

.ad-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #AB47BC;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.ad-cta-btn:hover {
    background: #8E24AA;
    gap: 12px;
}

.ad-preview {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.ad-preview-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.ad-preview-icon {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 36px;
}

.ad-preview-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.preview-title {
    font-size: 16px;
    font-weight: 600;
    color: #999;
}

.preview-size {
    font-size: 12px;
    color: #bbb;
}

.ad-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ad-placeholder span {
    font-size: 16px;
    font-weight: 600;
    color: #999;
}

.ad-placeholder small {
    font-size: 12px;
    color: #bbb;
}

.product-placeholder i,
.content-placeholder i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 10px;
}

/* ============================================
   Stats Section
   ============================================ */
.home-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.stat-content {
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #fff;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.stat-growth {
    font-size: 13px;
    color: #FFD93D;
}

/* ============================================
   Articles Section
   ============================================ */
.home-articles-section {
    padding: 80px 0;
    background: #fff;
}

.articles-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.featured-article-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.featured-article-large {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-article-large:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.article-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.article-image {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-article-large:hover .article-image {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.featured-article-large .article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    background: #AB47BC;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.article-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.article-title a:hover {
    color: #AB47BC;
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 auto 0;
    flex: 1;
    /* 使用CSS限制显示行数，但保留完整HTML内容 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-info img {
    border-radius: 50%;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
}

/* Small Articles List */
.articles-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.article-small-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    flex: 1;
    min-height: 0;
}

.article-small-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.article-small-image {
    flex-shrink: 0;
    width: 120px;
    overflow: hidden;
}

.article-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-small-card:hover .article-small-image img {
    transform: scale(1.1);
}

.article-small-content {
    flex: 1;
    padding: 15px 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category-small {
    display: inline-block;
    color: #AB47BC;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.article-small-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.article-small-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-small-title a:hover {
    color: #AB47BC;
}

.article-small-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.article-small-meta i {
    margin-right: 4px;
}

/* ============================================
   Partners Section
   ============================================ */
.home-partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-height: 120px;
}

.partner-logo-item:hover {
    border-color: #AB47BC;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.logo-brand {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #ddd;
    text-align: center;
}

.partners-cta {
    text-align: center;
}

.partners-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #AB47BC;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.partners-cta-btn:hover {
    background: #8E24AA;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(171, 71, 188, 0.3);
}

/* ============================================
   Bottom CTA Section
   ============================================ */
.home-bottom-cta-section {
    padding: 80px 0;
    background: #fff;
}

.bottom-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #AB47BC 0%, #8E24AA 100%);
    border-radius: 16px;
    padding: 50px;
    overflow: hidden;
}

.cta-card.brands {
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.cta-card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #fff;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #AB47BC;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button.secondary {
    color: #333;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    gap: 14px;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.decoration-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.decoration-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
}

/* ============================================
   Dark Mode Styles
   ============================================ */
body.dark-mode .home-page-wrapper {
    background: #1a1a1a;
}

body.dark-mode .home-features-section,
body.dark-mode .home-advertising-section,
body.dark-mode .home-articles-section,
body.dark-mode .home-bottom-cta-section {
    background: #2a2a2a;
}

body.dark-mode .home-products-section,
body.dark-mode .home-partners-section {
    background: #1a1a1a;
}

body.dark-mode .feature-card,
body.dark-mode .ad-slot,
body.dark-mode .featured-article-large,
body.dark-mode .article-small-card,
body.dark-mode .partner-logo-item {
    background: #333;
}

body.dark-mode .logo-brand {
    color: #e0e0e0;
    background: linear-gradient(135deg, #AB47BC 0%, #BA68C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .logo-tagline {
    color: #888;
}

body.dark-mode .feature-card:hover,
body.dark-mode .ad-slot:hover {
    background: #3a3a3a;
}

body.dark-mode .section-main-title,
body.dark-mode .feature-title,
body.dark-mode .ad-slot-title,
body.dark-mode .article-title a,
body.dark-mode .article-small-title a {
    color: #e0e0e0;
}

body.dark-mode .section-description,
body.dark-mode .feature-description,
body.dark-mode .ad-slot-description,
body.dark-mode .article-excerpt {
    color: #aaa;
}

body.dark-mode .ad-preview {
    background: #2a2a2a;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero-banner-content {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advertising-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero-banner {
        padding: 60px 0 40px;
    }
    
    .hero-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-content {
        order: -1;
    }
    
    .hero-main-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-trust-indicators {
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header-with-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .section-main-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-layout {
        grid-template-columns: 1fr;
    }
    
    .featured-article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bottom-cta-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   Mobile Responsive - Features Section
   手机端特色服务区优化
   ============================================ */
@media (max-width: 768px) {
    /* Features Section */
    .home-features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .feature-card {
        padding: 30px 20px !important;
    }
    
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
        margin: 0 auto 15px !important;
    }
    
    .feature-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .feature-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    
    /* Featured Articles */
    .featured-article-wrapper {
        grid-template-columns: 1fr !important;
    }
}
