.news-tabs{
        list-style:none;
        padding-left:0;
        margin-bottom:3rem;
    }
    
    .news-tabs .nav-link{
        border:none;
        color:#777;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:12px 28px;

        background:transparent;
    }

    .news-tabs .nav-link.active {
        color: var(--primary-color);
        background: transparent;
        border-bottom: 4px solid var(--primary-color);
    }

    .tab-main{
        font-size:1.15rem;
        font-weight:800;
        line-height:1.2;
    }

    .tab-sub{
        margin-top:4px;

        font-size:0.78rem;
        font-weight:500;

        color:#999;
        letter-spacing:0.02em;
    }

    .news-tabs .nav-link.active .tab-main{
        color:var(--primary-color);
    }

    .news-tabs .nav-link.active .tab-sub{
        color:#777;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .news-card {
        display: block;
        height: 100%;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
        padding: 22px;
        text-decoration: none;
        color: #111;
        transition: all 0.25s ease;
    }

    .news-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.08);
        border-color: var(--primary-color);
        color: #111;
    }

    .news-date {
        font-family: Georgia, serif;
        font-size: 1rem;
        color: #333;
        margin-bottom: 8px;
    }

    .news-title {
        font-size: 1.3rem;
        font-weight: 900;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .news-summary {
        font-size: 1rem;
        line-height: 1.75;
        color: #222;
    }

    .news-thumb {
        float: right;
        width: 130px;
        height: 86px;
        object-fit: contain;
        object-position: center;
        background: #f5f7f7;
        margin-left: 16px;
        margin-bottom: 8px;
    }

    @media (max-width: 992px) {
        .news-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .news-grid {
            grid-template-columns: 1fr;
        }
    }