/* ============ Container fallback (lost when migrating to base-new) ============ */
.common-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.common-container.sm-size {
    max-width: 1200px;
}

/* ============ Wrap & breadcrumb ============ */
.news_news_wrap__2cbiV {
    padding-bottom: 60px;
    background: #f7f8fa;
}

.breadcrumb {
    padding: 18px 0 8px;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #DC0000;
}

.breadcrumb-sep {
    margin: 0 6px;
    color: #c8c8c8;
}

/* ============ Tabs ============ */
.tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 28px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.tab-label {
    padding: 0 14px 0 4px;
    margin-right: 6px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    border-right: 1px solid #ececec;
    cursor: default;
}

.tab-button {
    padding: 13px 30px;
    border: none;
    cursor: pointer;
    background: #f4f5f7;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.2s;
}

.tab-button:hover {
    background: #ffe9e9;
    color: #DC0000;
}

.tab-button.active {
    background: linear-gradient(135deg, #DC0000 0%, #B30000 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(220, 0, 0, 0.25);
}

.tabs .divider {
    display: none;
}

/* ============ Cards ============ */
.tab-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
}

.card {
    padding: 22px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ececec;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
    border-color: rgba(220, 0, 0, 0.4);
    box-shadow: 0 6px 18px rgba(220, 0, 0, 0.08);
}

.card a {
    text-decoration: none;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.2s;
}

.card:hover h3 {
    color: #DC0000;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.card p {
    flex: 1;
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arrow-right {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    transition: transform 0.25s;
}

.card:hover .arrow-right {
    transform: translateX(6px);
}

.arrow-right img {
    width: 24px;
    height: 24px;
    margin: 0;
}

.page-title {
    display: none;
}

/* ============ Mobile ============ */
@media (max-width: 1080px) {
    .news_news_wrap__2cbiV {
        padding-bottom: 24px;
    }

    .common-container {
        padding: 0 16px;
    }

    .breadcrumb {
        padding: 14px 0 4px;
        font-size: 12px;
    }

    .tabs {
        gap: 6px;
        padding: 10px;
        margin: 12px 0 18px;
        border-radius: 12px;
    }

    .tab-label {
        display: none;
    }

    .tab-button {
        flex: 1;
        padding: 11px 10px;
        font-size: 14px;
        text-align: center;
    }

    .tab-content {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card {
        padding: 16px 18px;
        border-radius: 12px;
    }

    .card h3 {
        font-size: 16px;
    }

    .card p {
        font-size: 13px;
    }

    .arrow-right,
    .arrow-right img {
        width: 22px;
        height: 22px;
    }
}
