/* =============================== BENGALI SERIAL – DARK GOLD THEME =============================== */
.tfk-bengali-serial-wrapper {
    width: 100%;
    background: #000000;
    padding: 16px;
    box-sizing: border-box;
}

.tfk-bs-container {
    max-width: 1200px;
    margin: auto;
}

/* MAIN TITLE */
.tfk-ts-title {
    color: #F5C518;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid #F5C518;
}

/* GRID */
.tfk-bs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* equal width columns */
    gap: 16px;
}

/* MAIN STORY - FIRST CARD */
.tfk-bs-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: #000000;
    aspect-ratio: 16 / 9;           /* fixed ratio box for all main images */
}

/* MAIN STORY IMAGE */
.tfk-bs-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;              /* image fills box, cropped if needed */
    display: block;
}

.tfk-bs-main-content {
    position: absolute;
    bottom: 0;
    padding: 14px;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.6),
        transparent
    );
}

.tfk-bs-main-content h3 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.tfk-bs-main-content p {
    color: #C4C4C4;
    font-size: 14px;
}

/* SIDE LIST */
.tfk-bs-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tfk-bs-card {
    display: flex;
    gap: 10px;
    text-decoration: none;
    background: #1A1A1A;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #343451;
    transition: all 0.3s ease;
}

.tfk-bs-card img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
}

.tfk-bs-card-content h4 {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.tfk-bs-card-content p {
    color: #C4C4C4;
    font-size: 12px;
}

/* HOVER GOLD ACCENT */
.tfk-bs-card:hover h4,
.tfk-bs-main:hover h3 {
    color: #F5C518;
}

.tfk-bs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.3);
}

/* VIEW MORE */
.tfk-bs-more {
    margin-top: 16px;
    text-align: center;
}

.tfk-bs-more a {
    background: transparent;
    color: #F5C518;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #F5C518;
    transition: all 0.3s ease;
}

.tfk-bs-more a:hover {
    background: #F5C518;
    color: #000000;
}

/* EMPTY */
.tfk-bs-empty {
    color: #FFFFFF;
    text-align: center;
    padding: 40px;
    font-size: 16px;
}

/* =============================== MOBILE RESPONSIVE =============================== */
@media (max-width: 768px) {
    .tfk-bs-grid {
        grid-template-columns: 1fr;
    }

    .tfk-bs-main {
        aspect-ratio: 16 / 9;   /* keeps same look on mobile also */
    }

    .tfk-bs-main-content h3 {
        font-size: 16px;
    }

    .tfk-bs-card {
        align-items: center;
    }

    .tfk-bs-card img {
        width: 80px;
        height: 60px;
    }

    .tfk-bs-card-content h4 {
        font-size: 13px;
    }

    .tfk-ts-title {
        font-size: 24px;
    }
}
