.premium-hero-section {
    padding: 20px 0 30px 0;
    background: #fff;
    font-family: var(--inf-font-primary), sans-serif;
    border-bottom: 2px solid #f1f5f9;
}

/* Section Headers */
.hero-section-title {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 5px;
}

.btn-more-channels {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-more-channels:hover {
    background: #e2e8f0;
    color: #000;
}

.hero-main-item {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 20px !important;
}

.hero-main-title-lg {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
    color: #000;
}

.hero-main-title-lg a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-main-title-lg a:hover {
    color: #dc2626;
}

/* List Items (Horizontal Card) */
.hero-list-item-sm {
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.hero-list-item-sm:first-child {
    border-top: none;
    padding-top: 0;
}

.hero-list-item-sm:last-child {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.hero-list-date {
    display: block;
    font-size: 11px;
    color: #64748b;
    margin-top: 5px;
    font-weight: 500;
}

.dark-mode .hero-list-date {
    color: #94a3b8;
}

.hero-list-title-sm {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-list-title-sm a {
    color: inherit;
    text-decoration: none;
}

.hero-list-title-sm a:hover {
    color: #dc2626;
}

.hero-list-category {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: capitalize;
    display: block;
}

.hero-list-img-sm img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0;
}

/* Ad Styling (Column 3) */
.hero-ad-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ad-wrapper ins,
.hero-ad-wrapper img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
}

.hero-ad-wrapper .container-bn {
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
}

/* Responsive adjustments handled by Bootstrap grid */



/* Trending List (Column 3) */
.hero-trending-title-sm {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #1a1a1a;
}

.hero-trending-title-sm a {
    color: inherit;
    text-decoration: none;
}

.hero-trending-title-sm a:hover {
    color: #dc2626;
}

/* General Layout Utilities */
.hero-main-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.hero-main-image-wrapper img {
    width: 100%;
    height: 360px !important;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #dc2626;
    color: #fff;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #e2e8f0;
    }
}

/* Dark Mode Support */
.dark-mode .premium-hero-section {
    background: #1e1e1e;
    border-bottom-color: #333;
}

.dark-mode .hero-section-title,
.dark-mode .hero-main-title-lg,
.dark-mode .hero-list-title-sm,
.dark-mode .hero-trending-title-sm {
    color: #f1f5f9 !important;
}

.dark-mode .hero-list-item-sm,
.dark-mode .border-end-md,
.dark-mode .border-bottom {
    border-color: #333 !important;
}

.dark-mode .btn-more-channels {
    background: #2d2d2d;
    color: #94a3b8;
}

.dark-mode .btn-more-channels:hover {
    background: #444;
    color: #fff;
}