/* 行业资讯板块 */
.industry-news {
    background-color: #001962;
    padding: clamp(50px, 5.208vw, 100px) 0;
}

/* 文章详情页「相关推荐」：融入详情页背景，不画独立底色 */
.industry-news--related {
    background-color: transparent;
    padding: clamp(40px, 4.167vw, 80px) 0 0;
    margin-top: clamp(30px, 3.125vw, 50px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.industry-news--related .container {
    padding: 0;
}

.industry-news .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4.167vw, 80px);
}

.industry-news .section-title {
    font-size: clamp(39px, 3.75vw, 46px);
    font-weight: 700;
    text-align: center;
    margin-bottom: -20px;
    line-height: 1.2;
    color: var(--text-white);
    font-family: 'Source Han Sans CN', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

.industry-news .section-divider {
    text-align: center;
    margin: 0 0 clamp(30px, 3.125vw, 60px) 0;
    padding: 0;
}

.industry-news .section-divider img {
    width: 50%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    vertical-align: top;
}

.industry-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.083vw, 40px);
    margin-top: clamp(30px, 3.125vw, 60px);
}

.industry-news-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: clamp(16px, 1.563vw, 30px);
    padding: clamp(24px, 2.083vw, 42px) clamp(26px, 2.083vw, 44px);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    min-width: 0;
    height: 100%;
}

.industry-news-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.industry-news-card:hover,
.industry-news-card:focus-visible {
    background: #00124b;
    border-color: #00124b;
    transform: translateY(-4px);
    outline: none;
}

.industry-news-title {
    font-size: clamp(18px, 1.354vw, 22px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-white);
    margin: 0 0 clamp(12px, 1.042vw, 18px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-family: 'Source Han Sans CN', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

.industry-news-card:hover .industry-news-title,
.industry-news-card:focus-visible .industry-news-title {
    color: #ff5b1a;
}

.industry-news-summary {
    font-size: clamp(14px, 1.042vw, 16px);
    line-height: 1.6;
    color: #8e8e8e;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.industry-news-card:hover .industry-news-summary,
.industry-news-card:focus-visible .industry-news-summary {
    color: #fff;
}

/* 右列：时间 + 箭头（竖排，日期在上，箭头在下） */
.industry-news-foot {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 0.833vw, 12px);
    padding-left: clamp(16px, 1.563vw, 30px);
}

.industry-news-date {
    font-size: clamp(14px, 1.042vw, 16px);
    color: #8e8e8e;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.industry-news-card:hover .industry-news-date,
.industry-news-card:focus-visible .industry-news-date {
    color: #ff5b1a;
}

.industry-news-arrow {
    flex: 0 0 auto;
    width: clamp(26px, 1.979vw, 38px);
    height: clamp(26px, 1.979vw, 38px);
    background: url('../img/industry-news/arrow.png') center / contain no-repeat;
    transition: opacity 0.2s ease;
}

.industry-news-card:hover .industry-news-arrow,
.industry-news-card:focus-visible .industry-news-arrow {
    background-image: url('../img/industry-news/arrow-hover.png');
}

/* 状态 */
.industry-news-state {
    grid-column: 1 / -1;
    text-align: center;
    color: #8e8e8e;
    font-size: clamp(15px, 1.146vw, 18px);
    padding: clamp(30px, 3.125vw, 60px) 0;
}

/* 移动端响应 */
@media (max-width: 768px) {
    .industry-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-news-card {
        padding: 20px 22px;
    }
}
