/* ── Breaking News: shared base ── */
.hnf-bn-wrap * {
    box-sizing: border-box;
}

.hnf-bn-wrap a {
    text-decoration: none;
}

.hnf-bn-wrap img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── Section heading ── */
.hnf-bn-heading {
    background: transparent !important;
    color: black !important;
    border-bottom: 3px solid !important;
    border-radius: 0 !important;
    width: 100% !important;
    font-weight: bolder !important;
    font-size: 28px !important;
    margin-bottom: 4px !important;
    margin-top: 20px;
    padding-right: 10px;
}

.hnf-bn-heading-dot {
    width: 10px;
    height: 10px;
    background: #cc0000;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: hnf-bn-blink 1s infinite;
}

@keyframes hnf-bn-blink {
    0%,
    100% { opacity: 1; }
    50%  { opacity: 0.3; }
}

/* ── Card ── */
.hnf-bn-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.hnf-bn-card-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    object-position: left top;
}

/* Overlay at bottom of image */
.hnf-bn-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.3) 70%, transparent 100%);
    padding: 40px 18px 40px;
    border-radius: 0 0 4px 4px;
}

.hnf-bn-card-label {
    display: inline-block;
    background: #cc0000;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
    font-family: inherit;
}

.hnf-bn-card-title {
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.3;
    font-family: inherit;
    font-size: 28px !important;
    line-height: 1.2;
}

.hnf-bn-card-title a {
    color: #fff;
}

.hnf-bn-read-more {
    color: #cc0000;
    font-weight: 600;
    margin-left: 4px;
    font-family: inherit;
}

.hnf-bn-read-more:hover {
    text-decoration: underline;
}

/* ── Ticker ── */
.hnf-bn-ticker {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
}

.hnf-bn-ticker-label {
    background: #cc0000;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border-radius: 3px;
    margin-right: 14px;
    flex-shrink: 0;
    font-family: inherit;
}

.hnf-bn-ticker-divider {
    color: #444;
    margin-right: 14px;
    flex-shrink: 0;
}

.hnf-bn-ticker-track {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.hnf-bn-ticker-text {
    white-space: nowrap;
    display: inline-block;
    animation: hnf-bn-scroll 22s linear infinite;
}

.hnf-bn-ticker-text a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
}

.hnf-bn-ticker-text a:hover {
    color: #ffaaaa;
}

@keyframes hnf-bn-scroll {
    0%   { transform: translateX(60vw); }
    100% { transform: translateX(-100%); }
}