/* ==================== 首页内容区专属样式 ==================== */
.home-kicker,
.home-section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-kicker {
    margin-bottom: 1rem;
    color: #a9edd8;
}

.home-content {
    max-width: 1100px;
    margin: 0 auto;
}

.home-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.home-section-heading .section-title {
    margin: 0;
}

.home-section-eyebrow {
    color: var(--brand);
}

.news-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
}

.news-card .news-img {
    height: clamp(11rem, 23vw, 14rem);
    border-radius: 0;
}

.news-body {
    padding: 1.25rem 1.35rem 1.35rem;
}

.news-title {
    margin-bottom: 0.6rem;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.45;
}

.news-title a {
    color: var(--ink);
    text-decoration: none;
}

.news-title a:hover {
    color: var(--brand-strong);
}

.news-text {
    display: -webkit-box;
    margin-bottom: 1rem !important;
    overflow: hidden;
    color: var(--ink-muted) !important;
    font-size: 0.92rem;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-date {
    margin: 0 !important;
    color: var(--ink-muted) !important;
    font-size: 0.78rem;
}

.home-empty-state {
    display: grid;
    min-height: 9rem;
    place-items: center;
    color: var(--ink-muted);
    background: var(--surface-muted);
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
}

@media (max-width: 767.98px) {
    .home-section-heading {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 0.35rem;
    }
}
