.hero-news-wrap {
    padding: 18px 0 10px;
}

.hero-news-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hero-news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b11c1c;
    box-shadow: 0 0 0 4px rgba(177, 28, 28, 0.15);
}

.hero-news-count {
    font-size: 12px;
    color: #6b7280;
    margin-left: 6px;
}

.hero-news-all {
    font-size: 14px;
    text-decoration: none;
    color: #111827;
    opacity: .8;
}

    .hero-news-all:hover {
        opacity: 1;
        text-decoration: underline;
    }

/* GRID */
.hero-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

/* FEATURED */
.hero-news-feature {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 240px;
    border: 1px solid rgba(31,42,55,.08);
    box-shadow: 0 12px 30px rgba(16,24,40,.08);
}

.hero-news-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-news-overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.60) 100%);
    color: #fff;
}

.hero-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-news-date {
    font-size: 12px;
    opacity: .9;
}

.hero-news-title {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-news-desc {
    margin: 0 0 12px;
    font-size: 14px;
    opacity: .95;
    max-width: 68ch;
}

.hero-news-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-news-btn {
    border-radius: 10px;
}

/* SIDE */
.hero-news-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-news-mini {
    background: #fff;
    border: 1px solid rgba(31,42,55,.08);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 12px 25px rgba(16,24,40,.06);
    display: flex;
    gap: 12px;
    min-height: 113px;
}

.hero-news-mini-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #f3f4f6;
    font-size: 18px;
    flex: 0 0 auto;
}

.hero-news-mini-body {
    width: 100%;
}

.hero-news-mini-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.hero-news-mini-title {
    margin: 0 0 6px;
    font-weight: 800;
    color: #111827;
    font-size: 14px;
    line-height: 1.2;
}

.hero-news-mini-text {
    margin: 0 0 10px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.35;
}

.hero-news-mini-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.hero-news-link {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #1d4ed8;
}

    .hero-news-link:hover {
        text-decoration: underline;
    }

/* Chips & badges */
.hero-chip {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
}

.hero-news-mini .hero-chip {
    background: #f3f4f6;
    border: 0;
    color: #374151;
}

.hero-badge {
    font-size: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 800;
}

    .hero-badge.danger {
        background: rgba(220,38,38,.16);
        color: #fecaca;
        border: 1px solid rgba(254,202,202,.25);
    }

    .hero-badge.warning {
        background: rgba(245,158,11,.18);
        color: #fde68a;
        border: 1px solid rgba(253,230,138,.25);
    }

    .hero-badge.success {
        background: rgba(16,185,129,.16);
        color: #a7f3d0;
        border: 1px solid rgba(167,243,208,.25);
    }

/* Controls + Dots */
.hero-news-control {
    width: auto;
    opacity: 1;
}

.hero-news-arrow {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(31,42,55,.12);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(16,24,40,.10);
    color: #111827;
    font-size: 22px;
}

.hero-news-dots {
    position: static;
    margin-top: 10px;
}

    .hero-news-dots [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 0;
        background: rgba(17,24,39,.25);
    }

    .hero-news-dots .active {
        background: #b11c1c;
    }

/* Responsive */
@media (max-width: 992px) {
    .hero-news-grid {
        grid-template-columns: 1fr;
    }

    .hero-news-title {
        font-size: 22px;
    }

    .hero-news-feature {
        min-height: 220px;
    }
}

@media (max-width: 576px) {
    .hero-news-overlay {
        padding: 14px;
    }

    .hero-news-title {
        font-size: 20px;
    }
}
