/* ==========================================================================
   TNB NEWS & ARTICLES (EMPTY STATE)
   ========================================================================== */
.tnb-news-section {
    padding: 100px 0;
    background-color: #F8FAFD;
}

.tnb-news-empty {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid #EAEFEF;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tnb-news-empty:hover {
    box-shadow: 0 20px 50px rgba(55, 100, 235, 0.08);
    transform: translateY(-5px);
}

/* Garis aksen hijau/biru di atas kartu */
.tnb-news-empty::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3764EB 0%, #00B0FC 100%);
}

/* Icon Amplop/Koran Kosong */
.tnb-news-icon {
    font-size: 65px;
    color: #D2DCE9;
    margin-bottom: 25px;
    display: inline-block;
    background: #F4F7FC;
    width: 140px;
    height: 140px;
    line-height: 140px;
    border-radius: 50%;
    border: 2px dashed #EAEFEF;
}

.tnb-news-title {
    color: #142441;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Arimo', sans-serif;
}

.tnb-news-desc {
    color: #6B778C;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    padding: 0 20px;
}

/* Tombol Kembali ke Produk */
.tnb-btn-outline {
    background: transparent;
    color: #3764EB;
    padding: 14px 35px;
    border-radius: 40px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #3764EB;
}

.tnb-btn-outline:hover {
    background: #3764EB;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(55, 100, 235, 0.2);
}