/* ============================================================
   LoadedPlug — homepage cover-story badge + headline badge
   Moved verbatim out of the inline <style> that used to sit
   in index.php. Enqueued on the front page.
   ============================================================ */

.headline-badge {
    background-color: #D90429;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    display: inline-block;
    border-radius: 2px;
    line-height: 1.2;
}

.lp-cover-story-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.lp-cover-story-star {
    font-size: 18px;
    line-height: 1;
}

.lp-cover-story-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #D90429;
    background: rgba(217, 4, 41, 0.12);
    padding: 4px 12px;
    border-radius: 4px;
}

.lp-cover-story-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.lp-cover-story-timer svg {
    width: 14px;
    height: 14px;
    color: #666;
}


.lp-home-story-image-with-overlay {
    position: relative;
    overflow: hidden;
}

.lp-cover-story-badge-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 15;
    background-color: #ff0000;
    color: #ffffff;
    padding: 2px 12px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .lp-desktop-only-badge {
        display: none !important;
    }

    .lp-cover-story-badge-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .lp-cover-story-badge {
        gap: 6px;
    }

    .lp-cover-story-label {
        font-size: 10px;
        padding: 3px 10px;
    }

    .lp-cover-story-timer {
        font-size: 11px;
    }

    .lp-cover-story-timer svg {
        width: 12px;
        height: 12px;
    }
}
