/* ===== 公司介绍区 ===== */
.about-wrap {
    padding-top: 2rem;
}

.section-title--left {
    text-align: left;
}

/* ===== 核心优势区：米白底 ===== */
.advantages-section {
    background-color: #fdf6ec;
}

/* ===== CTA 联系按钮区：米白到浅酒红渐变 ===== */
.cta-section {
    padding: 2rem 0 3rem;
    background: linear-gradient(135deg, #fdf6ec 0%, #f5ead3 100%);
}

.cta-wrap {
    text-align: center;
    margin-top: 2rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 32px;
    font-size: 1.3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 6px 14px rgba(146, 64, 14, 0.35);
    transition: transform .2s ease, box-shadow .25s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(146, 64, 14, 0.45);
}

/* ===== 首页最新文章：两列卡片网格（米白底 + 酒红 hover） ===== */
.news-section-home {
    padding: 55px 0;
    background: #fdf6ec;
}

.news-title-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 44px;
}

.news-title-home::before,
.news-title-home::after {
    content: "";
    width: 72px;
    height: 3px;
    background: var(--accent);
    border-radius: 4px;
}

.news-title-home h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

.news-list-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
}

.news-item-home {
    background: #ffffff;
    border: 1px solid #ecd9bd;
    border-radius: 14px;
    padding: 24px 28px;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(146, 64, 14, 0.05);
    transition: all 0.25s ease;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-item-home:hover {
    border-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 12px 28px rgba(146, 64, 14, 0.13);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .news-title-home {
        gap: 12px;
        margin-bottom: 30px;
    }

    .news-title-home::before,
    .news-title-home::after {
        width: 36px;
    }

    .news-title-home h2 {
        font-size: 1.3rem;
    }

    .news-list-home {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .news-item-home {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 1.1rem;
        padding: 10px 24px;
    }
}
