:root {
    --mavl-primary: #002D72;
    --mavl-secondary: #0056B3;
    --mavl-accent: #E31212;
    --mavl-bg-main: #F8F9FA;
    --mavl-text-primary: #1A1A1A;
    --mavl-text-secondary: #4A4A4A;
    --mavl-text-muted: #757575;
    --mavl-border: #DEE2E6;
    --mavl-status-breaking: #CC0000;
}

.mavl-portal-theme {
    background-color: var(--mavl-bg-main);
    color: var(--mavl-text-primary);
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.mavl-portal-theme h1,
.mavl-portal-theme h2,
.mavl-portal-theme h3,
.mavl-portal-theme h4,
.mavl-portal-theme h5,
.mavl-portal-theme h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--mavl-primary);
}

.text-muted {
    color: var(--mavl-text-muted) !important;
}

.mavl-smooth-transition {
    transition: all 0.3s ease-in-out;
}

.mavl-card-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mavl-btn-primary {
    background-color: var(--mavl-primary);
    color: #FFFFFF;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    padding: 12px 24px;
    border: none;
    transition: background-color 0.15s ease-in-out;
}

.mavl-btn-primary:hover {
    background-color: #001f4d;
    color: #FFFFFF;
}

.mavl-btn-ghost {
    border: 2px solid var(--mavl-primary);
    color: var(--mavl-primary);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 22px;
    background: transparent;
}

.mavl-btn-ghost:hover {
    background-color: var(--mavl-primary);
    color: #FFFFFF;
}

.mavl-section-gap {
    padding-top: 64px;
    padding-bottom: 64px;
}

@media (max-width: 768px) {
    .mavl-section-gap {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* ===== header ===== */
.mavl-header .navbar {
    background-color: #002D72 !important;
    padding: 0.75rem 0;
    border-bottom: 2px solid #0056B3;
}

.mavl-header .mavl-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.mavl-header .mavl-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.mavl-header .nav-link {
    color: #E0E0E0 !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease-in-out;
}

.mavl-header .nav-link:hover {
    color: #FFFFFF !important;
}

.mavl-header .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    color: #FFFFFF;
}

.mavl-header .navbar-toggler:focus {
    shadow: none;
    outline: none;
}

.mavl-header .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: background-color 0.2s;
}

.mavl-header .mavl-cta:hover {
    background-color: #CC0000;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .mavl-header .navbar-collapse {
        background-color: #002D72;
        margin-top: 1rem;
        padding-bottom: 1rem;
    }

    .mavl-header .nav-link {
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mavl-header .mavl-cta {
        width: 100%;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.hero-editorial {
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-editorial .hero-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
    transition: transform 0.3s ease;
}

.hero-editorial .hero-card-tall {
    height: 100%;
    min-height: 600px;
}

.hero-editorial .hero-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 0.6s ease;
}

.hero-editorial .hero-card:hover .hero-card-img {
    transform: scale(1.05);
}

.hero-editorial .hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 45, 114, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s ease;
}

.hero-editorial .hero-card:hover .hero-card-overlay {
    opacity: 0.95;
}

.hero-editorial .hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
}

.hero-editorial .hero-badge {
    background: #002D72;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    border-radius: 2px;
}

.hero-editorial .hero-badge-hot {
    background: #E31212;
}

.hero-editorial .hero-meta {
    display: flex;
    gap: 15px;
    color: #B0B0B0;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.hero-editorial .hero-meta i {
    color: #0056B3;
}

.hero-editorial .hero-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.hero-editorial .hero-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-editorial .hero-title a:hover {
    color: #0056B3;
}

.hero-editorial .hero-excerpt {
    color: #E0E0E0;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-editorial .hero-video-block {
    background: #ffffff;
    border: 1px solid #DEE2E6;
    border-radius: 4px;
    overflow: hidden;
}

.hero-editorial .hero-video-preview {
    height: 350px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-editorial .video-overlay-play {
    color: rgba(255, 255, 255, 0.8);
    font-size: 5rem;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 3;
}

.hero-editorial .video-overlay-play:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.hero-editorial .video-info-panel {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 45, 114, 0.85);
    padding: 15px;
    color: #ffffff;
    max-width: 300px;
    border-left: 4px solid #E31212;
}

.hero-editorial .video-info-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-editorial .video-info-panel p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.hero-editorial .video-footer-row {
    padding: 15px;
    background: #ffffff;
}

.hero-editorial .video-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 0.8rem;
}

.hero-editorial .video-thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.hero-editorial .video-thumb:hover span {
    color: #0056B3;
}

@media (max-width: 991px) {
    .hero-editorial .hero-card-tall {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .hero-editorial .hero-title {
        font-size: 1.25rem;
    }

    .hero-editorial .hero-card {
        height: 300px;
    }

    .hero-editorial .video-info-panel {
        display: none;
    }
}

/* ===== world-news-preview ===== */
.world-news-section {
    background-color: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.world-news-section .news-label {
    background-color: #002D72;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.world-news-section .section-title {
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
}

.world-news-section .news-card {
    background: #FFFFFF;
    border: 2px solid #DEE2E6;
    border-left: 4px solid #002D72;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.world-news-section .news-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.world-news-section .news-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.world-news-section .news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.world-news-section .news-card:hover .news-card-img {
    transform: scale(1.1);
}

.world-news-section .news-meta {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: #757575;
    display: flex;
    align-items: center;
}

.world-news-section .news-dot {
    height: 4px;
    width: 4px;
    background-color: #0056B3;
    border-radius: 50%;
    margin: 0 8px;
}

.world-news-section .news-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1A1A1A;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 4.68rem;
}

.world-news-section .btn-news-action {
    display: inline-block;
    background-color: #002D72;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out;
    width: 100%;
    text-align: center;
}

.world-news-section .btn-news-action:hover {
    background-color: #001A44;
    color: #FFFFFF;
}

.world-news-section .btn-news-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #002D72;
    color: #002D72;
    padding: 0.6rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.world-news-section .btn-news-ghost:hover {
    background-color: #002D72;
    color: #FFFFFF;
}

.world-news-section .btn-news-ghost i {
    font-size: 1.2rem;
    margin-left: 8px;
}

@media (max-width: 767.98px) {
    .world-news-section .section-title {
        font-size: 1.5rem;
    }

    .world-news-section .news-card-title {
        min-height: auto;
        -webkit-line-clamp: initial;
    }
}

/* ===== science-tech-preview ===== */
.science-tech-preview {
    background-color: #F8F9FA;
}

.science-tech-preview .science-card {
    background: #FFFFFF;
    border: 2px solid #DEE2E6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.science-tech-preview .science-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.science-tech-preview .science-card-img-wrapper {
    height: 200px;
}

.science-tech-preview .science-card-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.science-tech-preview .science-card:hover img {
    transform: scale(1.05);
}

.science-tech-preview .btn-primary {
    background-color: #002D72;
    border-color: #002D72;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
}

.science-tech-preview .btn-primary:hover {
    background-color: #001F4D;
    border-color: #001F4D;
}

.science-tech-preview .btn-outline-primary {
    color: #002D72;
    border-color: #002D72;
    border-radius: 0;
}

.science-tech-preview .btn-outline-primary:hover {
    background-color: #002D72;
    color: #FFFFFF;
}

.science-tech-preview .bg-primary {
    background-color: #002D72 !important;
}

/* ===== culture-nature-preview ===== */
.culture-nature-preview {
    background-color: #F8F9FA;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

.culture-nature-preview .cn-overline {
    color: #E31212;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.culture-nature-preview .cn-main-title {
    color: #002D72;
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
}

.culture-nature-preview .cn-divider {
    height: 2px;
    background-color: #DEE2E6;
}

.culture-nature-preview .cn-category-title {
    color: #002D72;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
}

.culture-nature-preview .cn-category-link {
    color: #002D72;
    transition: color 0.3s;
}

.culture-nature-preview .cn-category-link:hover {
    color: #0056B3;
}

.culture-nature-preview .cn-card-inner {
    background: #FFFFFF;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-color: #DEE2E6 !important;
}

.culture-nature-preview .cn-card-inner:hover {
    transform: translateY(-5px);
    border-color: #002D72 !important;
}

.culture-nature-preview .cn-featured-img {
    height: 280px;
    object-fit: cover;
}

.culture-nature-preview .cn-badge {
    background-color: #002D72;
    font-size: 0.75rem;
}

.culture-nature-preview .cn-badge-nature {
    background-color: #0056B3;
}

.culture-nature-preview .cn-meta {
    font-size: 0.8rem;
    color: #757575;
}

.culture-nature-preview .cn-post-title-lg {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #1A1A1A;
}

.culture-nature-preview .cn-btn-primary {
    background-color: #002D72;
    border: none;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.culture-nature-preview .cn-btn-primary:hover {
    background-color: #0056B3;
}

.culture-nature-preview .cn-list-card {
    background: #FFFFFF;
    transition: background 0.3s;
    border-color: #DEE2E6 !important;
}

.culture-nature-preview .cn-list-card:hover {
    background: #F0F2F5;
}

.culture-nature-preview .cn-small-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.culture-nature-preview .cn-list-date {
    font-size: 0.75rem;
    color: #757575;
    margin-bottom: 4px;
}

.culture-nature-preview .cn-post-title-sm {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 767px) {
    .culture-nature-preview .cn-main-title {
        font-size: 1.25rem;
    }

    .culture-nature-preview .cn-category-title {
        font-size: 1rem;
    }

    .culture-nature-preview .cn-post-title-lg {
        font-size: 1.1rem;
    }

    .culture-nature-preview .cn-post-title-sm {
        font-size: 0.85rem;
    }

    .culture-nature-preview .cn-featured-img {
        height: 200px;
    }
}

/* ===== about-portal ===== */
.about-portal-section {
    background-color: #F8F9FA;
    overflow: hidden;
}

.about-portal-section .about-portal-title {
    color: #002D72;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.2;
}

.about-portal-section .about-portal-text {
    color: #4A4A4A;
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
}

.about-portal-section .feature-icon-wrapper {
    background-color: #002D72;
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.about-portal-section .feature-title {
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.about-portal-section .feature-desc {
    color: #757575;
    font-size: 0.95rem;
}

.about-portal-section .about-portal-image-container {
    position: relative;
    border-left: 4px solid #002D72;
    padding-left: 1rem;
}

.about-portal-section .about-portal-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 10px 10px 0px rgba(0, 45, 114, 0.1);
}

@media (max-width: 767px) {
    .about-portal-section .about-portal-title {
        font-size: 1.5rem;
    }

    .about-portal-section .about-portal-img {
        height: 300px;
    }

    .about-portal-section .about-portal-image-container {
        border-left: none;
        border-top: 4px solid #002D72;
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 2rem;
    }
}

/* ===== footer ===== */
.mavl-footer-section {
    background-color: #002D72;
    color: #FFFFFF;
    padding: 80px 0 40px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    border-top: 4px solid #E31212;
}

.mavl-footer-section .footer-logo {
    max-width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
}

.mavl-footer-section .footer-description {
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.mavl-footer-section .footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    position: relative;
}

.mavl-footer-section .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mavl-footer-section .footer-link:hover {
    color: #E31212;
    transform: translateX(5px);
}

.mavl-footer-section .contact-list i {
    color: #0056B3;
    font-size: 1.4rem;
    line-height: 1;
}

.mavl-footer-section .contact-list span {
    font-size: 0.95rem;
    color: #E0E0E0;
}

.mavl-footer-section .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mavl-footer-section .copyright-text {
    color: #B0B0B0;
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .mavl-footer-section {
        padding: 60px 0 30px;
    }

    .mavl-footer-section .footer-heading {
        margin-bottom: 20px;
        margin-top: 10px;
    }
}

.mavl-header .navbar {
    background-color: #002D72 !important;
    padding: 0.75rem 0;
    border-bottom: 2px solid #0056B3;
}

.mavl-header .mavl-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.mavl-header .mavl-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.mavl-header .nav-link {
    color: #E0E0E0 !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease-in-out;
}

.mavl-header .nav-link:hover {
    color: #FFFFFF !important;
}

.mavl-header .navbar-toggler {
    border: none;
    font-size: 1.75rem;
    color: #FFFFFF;
}

.mavl-header .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
    transition: background-color 0.2s;
}

.mavl-header .mavl-cta:hover {
    background-color: #CC0000;
    color: #FFFFFF;
}

.mavl-category-hero {
    background-color: #002D72;
    padding: 60px 0;
    color: #FFFFFF;
    border-bottom: 4px solid #E31212;
}

.mavl-category-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.mavl-category-hero .breadcrumb-item,
.mavl-category-hero .breadcrumb-item a {
    color: #B0B0B0;
    font-size: 0.875rem;
    text-decoration: none;
}

.mavl-category-hero .breadcrumb-item.active {
    color: #FFFFFF;
}

.mavl-category-hero .mavl-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mavl-category-hero .mavl-hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: #E0E0E0;
    max-width: 700px;
}

.mavl-news-list-section {
    background-color: #F8F9FA;
}

.mavl-news-card {
    background: #FFFFFF;
    border: 1px solid #DEE2E6;
    border-left: 4px solid #0056B3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mavl-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mavl-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.mavl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mavl-news-card:hover .mavl-card-img {
    transform: scale(1.1);
}

.mavl-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E31212;
    color: #FFFFFF;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mavl-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mavl-card-meta {
    font-size: 0.8125rem;
    color: #757575;
    font-family: 'Roboto', sans-serif;
}

.mavl-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.3;
    flex-grow: 1;
}

.mavl-card-btn {
    display: inline-flex;
    align-items: center;
    background: #002D72;
    color: #FFFFFF !important;
    padding: 10px 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
    width: fit-content;
}

.mavl-card-btn:hover {
    background: #0056B3;
}

.mavl-footer-section {
    background-color: #002D72;
    color: #FFFFFF;
    padding: 80px 0 40px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    border-top: 4px solid #E31212;
}

.mavl-footer-section .footer-logo {
    max-width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
}

.mavl-footer-section .footer-description {
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.mavl-footer-section .footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    position: relative;
}

.mavl-footer-section .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mavl-footer-section .footer-link:hover {
    color: #E31212;
    transform: translateX(5px);
}

.mavl-footer-section .contact-list i {
    color: #0056B3;
    font-size: 1.4rem;
    line-height: 1;
}

.mavl-footer-section .contact-list span {
    font-size: 0.95rem;
    color: #E0E0E0;
}

.mavl-footer-section .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mavl-footer-section .copyright-text {
    color: #B0B0B0;
    font-size: 0.875rem;
}

@media (max-width: 991.98px) {
    .mavl-header .navbar-collapse {
        background-color: #002D72;
        margin-top: 1rem;
        padding-bottom: 1rem;
    }

    .mavl-header .nav-link {
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mavl-header .mavl-cta {
        width: 100%;
        margin-top: 1rem;
    }

    .mavl-category-hero .mavl-hero-title {
        font-size: 1.75rem;
    }

    .mavl-category-hero .mavl-hero-subtitle {
        font-size: 0.9rem;
    }

    .mavl-footer-section {
        padding: 60px 0 30px;
    }

    .mavl-footer-section .footer-heading {
        margin-bottom: 20px;
        margin-top: 10px;
    }
}


/* ===== PAGE: privacy ===== */
.policy-document-wrapper { background-color: #F8F9FA; padding: 64px 0; color: #1A1A1A; font-family: 'Roboto', sans-serif; line-height: 1.8; } .mavl-policy-container { max-width: 900px; margin: 0 auto; padding: 0 24px; background: #FFFFFF; border: 2px solid #DEE2E6; } .mavl-policy-container h2 { font-family: 'Inter', sans-serif; color: #002D72; font-weight: 800; font-size: 2.25rem; margin-top: 40px; margin-bottom: 24px; border-left: 5px solid #E31212; padding-left: 15px; line-height: 1.2; } .mavl-policy-container p { font-size: 1.125rem; margin-bottom: 20px; color: #4A4A4A; text-align: justify; hyphens: auto; } .mavl-policy-container ul { margin-bottom: 30px; padding-left: 20px; list-style-type: none; } .mavl-policy-container li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 1rem; color: #1A1A1A; } .mavl-policy-container li::before { content: '\bx-check'; font-family: 'Boxicons'; position: absolute; left: 0; top: 0; color: #0056B3; font-weight: bold; } .mavl-policy-container strong { color: #002D72; font-weight: 600; } @media (max-width: 767px) { .policy-document-wrapper { padding: 32px 0; } .mavl-policy-container h2 { font-size: 1.5rem; margin-top: 30px; } .mavl-policy-container p { font-size: 1rem; } .mavl-policy-container li { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
#policy-content-root { font-family: 'Roboto', sans-serif; color: #1A1A1A; line-height: 1.6; padding: 2rem 1.5rem; max-width: 900px; margin: 0 auto; background: #FFFFFF; } #policy-content-root .terms-header { border-left: 5px solid #002D72; padding-left: 1.5rem; margin-bottom: 3rem; } #policy-content-root h2 { font-family: 'Inter', sans-serif; font-weight: 800; color: #002D72; font-size: 2.25rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: -0.5px; } #policy-content-root .last-updated { font-size: 0.875rem; color: #757575; font-style: italic; } #policy-content-root .terms-section { margin-bottom: 2.5rem; } #policy-content-root h3 { font-family: 'Inter', sans-serif; font-weight: 600; color: #0056B3; font-size: 1.5rem; margin-bottom: 1rem; border-bottom: 1px solid #DEE2E6; padding-bottom: 0.5rem; } #policy-content-root p { margin-bottom: 1rem; color: #4A4A4A; } #policy-content-root ul { padding-left: 1.25rem; margin-bottom: 1.5rem; list-style-type: none; } #policy-content-root ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #4A4A4A; } #policy-content-root ul li::before { content: '\2022'; color: #E31212; font-weight: bold; display: inline-block; width: 1em; margin-left: -1em; position: absolute; left: 0; } #policy-content-root strong { color: #1A1A1A; font-weight: 600; } #policy-content-root a { color: #0056B3; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease-in-out; } #policy-content-root a:hover { border-bottom-color: #0056B3; } #policy-content-root .terms-footer-note { margin-top: 4rem; padding-top: 2rem; border-top: 2px solid #002D72; font-size: 0.875rem; color: #757575; text-align: center; } @media (max-width: 768px) { #policy-content-root { padding: 1.5rem 1rem; } #policy-content-root h2 { font-size: 1.5rem; } #policy-content-root h3 { font-size: 1.25rem; } #policy-content-root .terms-header { padding-left: 1rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-document-wrapper { padding: 2rem 0; color: #1A1A1A; font-family: 'Roboto', sans-serif; line-height: 1.6; } .policy-document-wrapper h2 { color: #002D72; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 2.25rem; margin-top: 2.5rem; margin-bottom: 1.25rem; border-left: 4px solid #002D72; padding-left: 1rem; } .policy-document-wrapper p { margin-bottom: 1.25rem; font-size: 1rem; text-align: justify; hyphens: auto; } .policy-document-wrapper ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style-type: none; } .policy-document-wrapper li { position: relative; margin-bottom: 0.75rem; padding-left: 1.5rem; } .policy-document-wrapper li::before { content: '\bx-chevron-right'; font-family: 'boxicons'; position: absolute; left: 0; color: #E31212; font-weight: bold; } .policy-document-wrapper strong { font-weight: 600; color: #002D72; } @media (max-width: 767.98px) { .policy-document-wrapper h2 { font-size: 1.25rem; } .policy-document-wrapper p { font-size: 0.95rem; } .policy-section-body { padding: 0 15px; } }

/* ===== PAGE: cookies ===== */
.policy-document-wrapper { padding: 4rem 1rem; background-color: #F8F9FA; color: #1A1A1A; font-family: 'Roboto', sans-serif; } .policy-body { max-width: 900px; margin: 0 auto; background: #FFFFFF; padding: 3rem; border: 2px solid #DEE2E6; border-left: 5px solid #002D72; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .policy-main-title { font-family: 'Inter', sans-serif; font-weight: 800; color: #002D72; font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; } .policy-section-title { font-family: 'Inter', sans-serif; font-weight: 600; color: #002D72; font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1.25rem; border-bottom: 1px solid #DEE2E6; padding-bottom: 0.5rem; } .policy-text { font-size: 1rem; line-height: 1.8; color: #4A4A4A; margin-bottom: 1.5rem; } .policy-list { padding-left: 1.5rem; margin-bottom: 1.5rem; list-style-type: none; } .policy-list li { position: relative; font-size: 1rem; line-height: 1.8; color: #4A4A4A; margin-bottom: 0.75rem; padding-left: 1.5rem; } .policy-list li::before { content: ' '; position: absolute; left: 0; top: 0.6rem; width: 10px; height: 10px; background-color: #0056B3; border-radius: 2px; } .policy-last-update { font-size: 0.875rem; margin-bottom: 2rem; } .policy-intro { border-left: 4px solid #DEE2E6; padding-left: 1.5rem; font-style: italic; margin-bottom: 2rem; color: #757575; } @media (max-width: 768px) { .policy-body { padding: 1.5rem; border-left-width: 3px; } .policy-main-title { font-size: 1.125rem; } .policy-section-title { font-size: 1rem; } .policy-text, .policy-list li { font-size: 0.9rem; } .policy-document-wrapper { padding: 2rem 0.5rem; } }

.comment-card {
    background-color: #ffffff;
    border: 2px solid #DEE2E6;
    border-left: 5px solid #002D72;
    padding: 24px;
    transition: transform 0.150s ease-in-out, box-shadow 0.150s ease-in-out;
}

.comment-card:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.comment-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 2px solid #002D72;
    background-color: #F8F9FA;
}

.comment-author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-timestamp {
    font-size: 0.875rem;
    color: #757575;
    font-family: 'Roboto', sans-serif;
}

.comment-body-text {
    font-family: 'Roboto', sans-serif;
    color: #4A4A4A;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-comment-link {
    background: none;
    border: none;
    padding: 0;
    font-weight: 600;
    font-size: 0.875rem;
    color: #002D72;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    transition: color 0.2s;
}

.btn-comment-link:hover {
    color: #E31212;
}

.reply-card {
    background-color: #F8F9FA;
    border: 1px solid #DEE2E6;
    padding: 16px;
    position: relative;
}

.reply-card::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 20px;
    width: 20px;
    height: 2px;
    background-color: #DEE2E6;
}

.reply-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid #0056B3;
}

.reply-author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 0.9375rem;
}

.reply-body-text {
    font-family: 'Roboto', sans-serif;
    color: #4A4A4A;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.reply-comment-container {
    border-left: 2px solid #DEE2E6;
    padding-left: 10px;
}


/* ===== PAGE TEMPLATE: world-news-posts ===== */
.mavl-post-template .post-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
}

.mavl-post-template .post-hero h1{
    color: #dde4eb;
}

.mavl-post-template .post-main-card {
    border: none;
    border-radius: 0;
}

.mavl-post-template .post-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1A;
}

.mavl-post-template .post-body-text h2 {
    color: #002D72;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mavl-post-template .post-body-text p {
    margin-bottom: 1.5rem;
}

.mavl-post-template .bg-navy {
    background-color: #002D72;
}

.mavl-post-template .text-navy {
    color: #002D72;
}

.mavl-post-template .sidebar-widget {
    border-radius: 0;
}

.mavl-post-template .category-list a:hover {
    color: #FFFFFF !important;
    transform: translateX(5px);
    transition: all 0.2s ease;
}

.mavl-post-template .comment-card,
.mavl-post-template .reply-card {
    border-radius: 0;
    border: 1px solid #DEE2E6 !important;
}

.mavl-post-template .js-like-btn {
    cursor: pointer;
    transition: color 0.2s;
}

.mavl-post-template .js-like-btn.active {
    color: #E31212 !important;
}

.mavl-post-template .js-like-btn.active i {
    font-weight: bold;
}

.mavl-post-template .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
}

.mavl-post-template .mavl-cta:hover {
    background-color: #CC0000;
}

.mavl-header .navbar {
    background-color: #002D72 !important;
    padding: 0.75rem 0;
    border-bottom: 2px solid #0056B3;
}

.mavl-header .mavl-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.mavl-header .mavl-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.mavl-header .nav-link {
    color: #E0E0E0 !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease-in-out;
}

.mavl-header .nav-link:hover {
    color: #FFFFFF !important;
}

.mavl-header .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
}

.mavl-footer-section {
    background-color: #002D72;
    color: #FFFFFF;
    padding: 80px 0 40px;
    font-family: 'Roboto', sans-serif;
    border-top: 4px solid #E31212;
}

.mavl-footer-section .footer-logo {
    max-width: 50px;
    filter: brightness(0) invert(1);
}

.mavl-footer-section .footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.mavl-footer-section .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    margin-bottom: 12px;
}

.mavl-footer-section .footer-link:hover {
    color: #E31212;
    transform: translateX(5px);
}

/* ===== PAGE TEMPLATE: science-tech-posts ===== */
.mavl-post-template .post-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
}

.mavl-post-template .post-main-card {
    border: none;
    border-radius: 0;
}

.mavl-post-template .post-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1A;
}

.mavl-post-template .post-body-text h2 {
    color: #002D72;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mavl-post-template .post-body-text p {
    margin-bottom: 1.5rem;
}

.mavl-post-template .bg-navy {
    background-color: #002D72;
}

.mavl-post-template .text-navy {
    color: #002D72;
}

.mavl-post-template .sidebar-widget {
    border-radius: 0;
}

.mavl-post-template .category-list a:hover {
    color: #FFFFFF !important;
    transform: translateX(5px);
    transition: all 0.2s ease;
}

.mavl-post-template .comment-card,
.mavl-post-template .reply-card {
    border-radius: 0;
    border: 1px solid #DEE2E6 !important;
}

.mavl-post-template .js-like-btn {
    cursor: pointer;
    transition: color 0.2s;
}

.mavl-post-template .js-like-btn.active {
    color: #E31212 !important;
}

.mavl-post-template .js-like-btn.active i {
    font-weight: bold;
}

.mavl-post-template .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
}

.mavl-post-template .mavl-cta:hover {
    background-color: #CC0000;
}

.mavl-header .navbar {
    background-color: #002D72 !important;
    padding: 0.75rem 0;
    border-bottom: 2px solid #0056B3;
}

.mavl-header .mavl-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.mavl-header .mavl-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.mavl-header .nav-link {
    color: #E0E0E0 !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease-in-out;
}

.mavl-header .nav-link:hover {
    color: #FFFFFF !important;
}

.mavl-header .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
}

.mavl-footer-section {
    background-color: #002D72;
    color: #FFFFFF;
    padding: 80px 0 40px;
    font-family: 'Roboto', sans-serif;
    border-top: 4px solid #E31212;
}

.mavl-footer-section .footer-logo {
    max-width: 50px;
    filter: brightness(0) invert(1);
}

.mavl-footer-section .footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.mavl-footer-section .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    margin-bottom: 12px;
}

.mavl-footer-section .footer-link:hover {
    color: #E31212;
    transform: translateX(5px);
}

/* ===== PAGE TEMPLATE: culture-society-posts ===== */
.mavl-post-template .post-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
}

.mavl-post-template .post-main-card {
    border: none;
    border-radius: 0;
}

.mavl-post-template .post-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1A;
}

.mavl-post-template .post-body-text h2 {
    color: #002D72;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mavl-post-template .post-body-text p {
    margin-bottom: 1.5rem;
}

.mavl-post-template .bg-navy {
    background-color: #002D72;
}

.mavl-post-template .text-navy {
    color: #002D72;
}

.mavl-post-template .sidebar-widget {
    border-radius: 0;
}

.mavl-post-template .category-list a:hover {
    color: #FFFFFF !important;
    transform: translateX(5px);
    transition: all 0.2s ease;
}

.mavl-post-template .comment-card,
.mavl-post-template .reply-card {
    border-radius: 0;
    border: 1px solid #DEE2E6 !important;
}

.mavl-post-template .js-like-btn {
    cursor: pointer;
    transition: color 0.2s;
}

.mavl-post-template .js-like-btn.active {
    color: #E31212 !important;
}

.mavl-post-template .js-like-btn.active i {
    font-weight: bold;
}

.mavl-post-template .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
}

.mavl-post-template .mavl-cta:hover {
    background-color: #CC0000;
}

.mavl-header .navbar {
    background-color: #002D72 !important;
    padding: 0.75rem 0;
    border-bottom: 2px solid #0056B3;
}

.mavl-header .mavl-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.mavl-header .mavl-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.mavl-header .nav-link {
    color: #E0E0E0 !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease-in-out;
}

.mavl-header .nav-link:hover {
    color: #FFFFFF !important;
}

.mavl-header .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
}

.mavl-footer-section {
    background-color: #002D72;
    color: #FFFFFF;
    padding: 80px 0 40px;
    font-family: 'Roboto', sans-serif;
    border-top: 4px solid #E31212;
}

.mavl-footer-section .footer-logo {
    max-width: 50px;
    filter: brightness(0) invert(1);
}

.mavl-footer-section .footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.mavl-footer-section .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    margin-bottom: 12px;
}

.mavl-footer-section .footer-link:hover {
    color: #E31212;
    transform: translateX(5px);
}

/* ===== PAGE TEMPLATE: nature-posts ===== */
.mavl-post-template .post-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    background-blend-mode: multiply;
}

.mavl-post-template .post-main-card {
    border: none;
    border-radius: 0;
}

.mavl-post-template .post-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A1A;
}

.mavl-post-template .post-body-text h2 {
    color: #002D72;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.mavl-post-template .post-body-text p {
    margin-bottom: 1.5rem;
}

.mavl-post-template .bg-navy {
    background-color: #002D72;
}

.mavl-post-template .text-navy {
    color: #002D72;
}

.mavl-post-template .sidebar-widget {
    border-radius: 0;
}

.mavl-post-template .category-list a:hover {
    color: #FFFFFF !important;
    transform: translateX(5px);
    transition: all 0.2s ease;
}

.mavl-post-template .comment-card,
.mavl-post-template .reply-card {
    border-radius: 0;
    border: 1px solid #DEE2E6 !important;
}

.mavl-post-template .js-like-btn {
    cursor: pointer;
    transition: color 0.2s;
}

.mavl-post-template .js-like-btn.active {
    color: #E31212 !important;
}

.mavl-post-template .js-like-btn.active i {
    font-weight: bold;
}

.mavl-post-template .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
}

.mavl-post-template .mavl-cta:hover {
    background-color: #CC0000;
}

.mavl-header .navbar {
    background-color: #002D72 !important;
    padding: 0.75rem 0;
    border-bottom: 2px solid #0056B3;
}

.mavl-header .mavl-logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.mavl-header .mavl-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.mavl-header .nav-link {
    color: #E0E0E0 !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease-in-out;
}

.mavl-header .nav-link:hover {
    color: #FFFFFF !important;
}

.mavl-header .mavl-cta {
    background-color: #E31212;
    border: none;
    font-weight: 800;
    padding: 0.6rem 1.5rem;
    border-radius: 0;
}

.mavl-footer-section {
    background-color: #002D72;
    color: #FFFFFF;
    padding: 80px 0 40px;
    font-family: 'Roboto', sans-serif;
    border-top: 4px solid #E31212;
}

.mavl-footer-section .footer-logo {
    max-width: 50px;
    filter: brightness(0) invert(1);
}

.mavl-footer-section .footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    font-size: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.mavl-footer-section .footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    margin-bottom: 12px;
}

.mavl-footer-section .footer-link:hover {
    color: #E31212;
    transform: translateX(5px);
}