/**
 * News & Notification section – same chrome as main site (desktop nav + footer).
 * Mobile hamburger from responsive.css + script.js
 */
:root {
    --primary-red: #c62828;
    --accent-red: #b71c1c;
    --footer-black: #0f0f0f;
    --gold: #ffc107;
    --white: #ffffff;
}
html { overflow-x: hidden; }
body.news-notification-site {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}
.news-notification-site * { box-sizing: border-box; }
.news-notification-site a { text-decoration: none; color: inherit; transition: 0.3s; cursor: pointer; }
.news-notification-site .page-content a,
.news-notification-site .breadcrumb a,
.news-notification-site .blog-post-body a,
.news-notification-site footer.news-notification-footer a {
    pointer-events: auto;
    position: relative;
    z-index: 1;
}
.news-notification-site ul { list-style: none; margin: 0; padding: 0; }

.top-bar {
    background: var(--footer-black);
    color: white;
    padding: 10px 0;
    font-size: 13px;
}
.top-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-info i { margin-right: 5px; color: var(--primary-red); }
.social-icons { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.social-icons a { color: white; }
.social-icons a:hover { color: var(--primary-red); }

.main-header { background: var(--white); padding: 15px 0; border-bottom: 3px solid var(--primary-red); }
.header-flex { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-img { display: flex; align-items: center; justify-content: center; }
.logo-img img { height: 66px; width: auto; object-fit: contain; max-width: 100%; }
.header-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.iso-badge { border: 1px solid #ddd; padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: bold; color: green; background: #e8f5e9; }

.navbar {
    background: var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.news-notification-site .nav-menu {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.news-notification-site .nav-menu > li {
    flex: 1;
    text-align: center;
    position: relative;
    min-width: 0;
}
.news-notification-site .nav-menu > li > a {
    display: block;
    padding: 15px 8px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-decoration: none !important;
    transition: all 0.3s ease;
}
@media (min-width: 1100px) {
    .news-notification-site .nav-menu > li > a { font-size: 12px; padding: 15px 10px; }
}
.news-notification-site .nav-menu > li:last-child > a { border-right: none; }
.news-notification-site .nav-menu > li > a:hover {
    background: rgba(0,0,0,0.2) !important;
    color: var(--gold) !important;
}
.news-notification-site .nav-menu > li > a.active { background: rgba(255,255,255,0.1); }
.news-notification-site .nav-menu li.dropdown > a i { margin-left: 4px; font-size: 9px; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--footer-black);
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1001;
}
.news-notification-site .nav-menu li.dropdown:hover > .dropdown-menu { display: block; }
.dropdown-menu li {
    flex: none !important;
    text-align: left !important;
    border-bottom: 1px solid #333;
    position: relative;
}
.dropdown-menu li a {
    padding: 12px 18px !important;
    border-right: none !important;
    text-transform: none !important;
    font-size: 14px !important;
    white-space: nowrap;
    display: block;
}
.dropdown-menu li a:hover { background: var(--primary-red) !important; }
.dropdown-sub { position: relative; }
.dropdown-menu-sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--footer-black);
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1002;
}
.dropdown-sub:hover > .dropdown-menu-sub { display: block; }
.dropdown-sub > a i { float: right; margin-top: 3px; font-size: 10px; }

.marquee-box { background: var(--footer-black); color: #fff; display: flex; }
.marquee-title { background: var(--primary-red); padding: 8px 20px; font-weight: bold; font-size: 14px; z-index: 2; flex-shrink: 0; }
.marquee-content { padding: 8px; flex-grow: 1; color: var(--gold); font-weight: 600; font-size: 14px; min-width: 0; overflow: hidden; }

.breadcrumb { padding: 12px 0; font-size: 14px; color: #666; }
.breadcrumb a { color: var(--primary-red); }

footer.news-notification-footer {
    background: linear-gradient(to bottom, #111111, #000000);
    color: #aaa;
    padding-top: 50px;
    font-size: 14px;
    border-top: 5px solid var(--primary-red);
    margin-top: 40px;
}
.news-notification-footer .footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    display: inline-block;
    position: relative;
    width: 100%;
}
.news-notification-footer .footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 40px;
    background: var(--gold);
}
.news-notification-footer .footer-links li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}
.news-notification-footer .footer-links li a:hover { color: var(--gold); }
.news-notification-footer .contact-list li {
    margin-bottom: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.news-notification-footer .copyright {
    background: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #777;
    font-size: 13px;
}

/* —— Footer layout (4 columns → stack on small screens) —— */
.news-notification-footer .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px 24px;
    padding: 0 1.25rem 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}
.news-notification-footer .footer-col {
    flex: 1 1 230px;
    min-width: 200px;
    max-width: 100%;
}
.news-notification-footer .footer-col:first-child p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.75;
}
.news-notification-footer .footer-links li a {
    color: #ccc;
    display: inline-block;
}
.news-notification-footer .footer-contact-intro {
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 15px;
}
.news-notification-footer .footer-contact-link {
    color: #ccc !important;
}
.news-notification-footer .footer-contact-link:hover {
    color: var(--gold) !important;
}

@media (max-width: 767px) {
    footer.news-notification-footer {
        padding-top: 32px !important;
    }
    footer.news-notification-footer .footer-grid {
        flex-direction: column;
        gap: 26px;
        padding-bottom: 24px !important;
    }
    footer.news-notification-footer .footer-col {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }
    footer.news-notification-footer .footer-col h3 {
        text-align: center !important;
    }
    /* About: readable block */
    footer.news-notification-footer .footer-col:first-child p {
        text-align: justify;
        padding: 0 4px;
    }
    /* Quick Links + Courses: keep tap targets */
    footer.news-notification-footer .footer-col:nth-child(2) .footer-links li a,
    footer.news-notification-footer .footer-col:nth-child(3) .footer-links li a {
        justify-content: center !important;
    }
    /* Contact: left-aligned address & phones (override mobile-footer-polish center) */
    footer.news-notification-footer .footer-col:last-child .contact-list,
    footer.news-notification-footer .footer-col:last-child .contact-list li {
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    footer.news-notification-footer .footer-col:last-child .footer-contact-link,
    footer.news-notification-footer .footer-col:last-child .footer-contact-link span {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    footer.news-notification-footer .footer-col:last-child .phone-numbers {
        flex-wrap: wrap;
        justify-content: flex-start !important;
    }
    footer.news-notification-footer .footer-social-wrap > div {
        justify-content: center !important;
    }
}
