/* General container for the entire ticker */
.top-news-ticker {
    display: flex;
    align-items: center;
    height: 35px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 0 5px;
    margin-top: 15px;
    overflow: hidden;
}

/* The "Breaking News" button-like label */
.top-news-ticker .title {
    display: inline-flex;
    align-items: center;
    background-color: #e9ecef;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    padding: 0 15px;
    height: 35px;
    border-radius: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 15px;
}

/* Styling for the lightning bolt icon */
.top-news-ticker .title .fa-bolt {
    margin-right: 8px;
    color: #d90429;
}

.top-news-ticker-runner {
    width: 100%;
    overflow: hidden;
}

/* Individual news item links */
.top-news-ticker-runner a {
    color: #212529;
    text-decoration: none;
    margin-right: 30px;
    font-size: 15px;
    transition: color 0.3s;

    display: inline-flex;
    align-items: center;
    font-size: 20px;
}

.top-news-ticker-runner a::before {
    display: none;
}


.top-news-ticker-runner a::after {
    display: none;
}

/* === MODIFIED SECTION FOR RESPONSIVENESS === */

@media (max-width: 767px) {
    .top-news-ticker {
        height: 32px;
        padding: 0 8px;
    }

    .top-news-ticker .title {
        margin-right: 10px;
        padding: 0 10px;
        height: 30px;
        font-size: 13px;
    }

    .top-news-ticker-runner a {
        font-size: 17px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {


    .top-news-ticker .title {
        padding: 0 10px;
        margin-right: 8px;
    }

    .top-news-ticker .title .fa-bolt {
        margin-right: 0;
    }
}


.reporter-bar .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.reporter-bar .social-icon:hover {
    opacity: 0.85;
}

.reporter-bar .action-icon {
    font-family: sans-serif;
    font-weight: bold;
}

/* Social Media Brand Colors */
.bg-facebook {
    background-color: #3b5998;
}

.bg-twitter {
    background-color: #1DA1F2;
}

.bg-linkedin {
    background-color: #0077b5;
}

.bg-whatsapp {
    background-color: #25D366;
}

.bg-print {
    background-color: #dc3545;
}

.bg-font-adjust {
    background-color: #198754;
}

@media (min-width: 992px) {

    .lg-margin--bottom {
        margin-bottom: 45px;
    }

    .lg-margin--top {
        margin-top: 40px;
    }

    .video--bottom {
        margin-bottom: 50px;
    }
}
