/* ── Article Content ─────────────────────────────── */
.article-content {
    font-family: Georgia, 'Times New Roman', serif;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* ── Explanations ───────────────────────────────── */
.explanation-content {
    font-family: Georgia, 'Times New Roman', serif;
    color: #555;
}

.explanation-content p {
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #bb1a21;
    font-weight: 600;
}

.accordion-button:focus {
    border-color: #bb1a21;
    box-shadow: 0 0 0 0.25rem rgba(187, 26, 33, 0.25);
}

/* ── Breaking News Pulse ────────────────────────── */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ── Hero Image ─────────────────────────────────── */
.news-hero-image-wrap {
    background: #111;
}

.news-hero-image {
    display: block;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

/* ── Hover Lift (detail page) ───────────────────── */
.hover-lift {
    transform: translateY(0);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.hover-lift:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2) !important;
}
