﻿#breaking-news-container {
    height: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #3b6fa1;
    font-family: Arial, sans-serif;
    margin: 10px 0;
    border-radius: 14px;
    margin-top: 25px;
    margin-bottom: 5px;
    border: 1px solid #3b6fa1;
}

.breaking-news-title {
    background-color: #fff37a;
    color: #000000;
    display: inline-block;
    height: 30px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 3px 0 10px;
    line-height: 30px;
    z-index: 3;
}

    .breaking-news-title::after {
        content: '';
        position: absolute;
        top: 0;
        right: -15px;
        width: 0;
        height: 0;
        border-top: 30px solid #fff37a;
        border-right: 15px solid transparent;
    }

.breaking-news-scroll {
    position: absolute;
    left: 85px;
    top: 0;
    height: 30px;
    width: calc(100% - 160px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breaking-news-headline {
    max-width: 100%;
    font-size: 14px;
    color: white;
    line-height: 30px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.learn-more-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff37a;
    color: #1b1e21;
    border: none;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    z-index: 3;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

    .learn-more-button:hover {
        background-color: #fcec40;
    }

.event-datetime {
    font-size: 12px;
    color: #004588;
    text-align: end;
    margin-top: 5px;
    font-weight: bolder;
    margin-right: 7px;
}
