/* ===== 公司介绍区 ===== */
.about-wrap {
    padding-top: 2rem;
}

.section-title--left {
    text-align: left;
}

/* ===== 核心优势区 ===== */
.advantages-section {
    background-color: #F9FDFF;
}

/* ===== CTA 联系按钮区 ===== */
.cta-section {
    padding: 2rem 0 3rem;
}

.cta-wrap {
    text-align: center;
    margin-top: 2rem;
}

.cta-btn {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    font-size: 1.3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* ===== 企业动态/新闻区 ===== */
.news-section {
    padding: 3rem 0;
    background: #fff;
}

.section-desc {
    text-align: center;
    color: var(--text-gray, #666);
    margin-bottom: 2rem;
}

.news-section .section-title {
    position: relative;
    padding-bottom: 1rem;
}

.news-section .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: #ef4444;
    border-radius: 3px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
}

.news-item {
    display: block;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.25s ease;
}

.news-item:hover {
    border-color: var(--primary, #0f4c5f);
    color: var(--primary, #0f4c5f);
    box-shadow: 0 4px 14px rgba(15, 76, 95, 0.10);
}

@media (max-width: 768px) {
    .news-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
