﻿:root {
    --primary-navy: #0d1f2d;
    --primary-green: #2d6d4e;
    --primary-blue: #01673E;
    --accent-orange: #ff6b35;
    --light-bg: #E9E9E9;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-body: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --border-light: #e1e4e8;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --badge-season: #00663c;
    --base-font-size: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--base-font-size);
}

body {
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    color: var(--text-body);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-mg {
    max-width: 85%;
    margin: 0 auto;
    background-color: #fff;
    padding: 2%;
}

.mgzn-new {
    width:85%;
    padding-bottom: 10px;
    padding-right:16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
    background-color: #fff;
}
    .mgzn-new .container-mg {
        max-width: 100%;
        padding-bottom: 0;
    }
    .mgzn-new .col-lg-offset-5 {
        margin-left: 50.3%;
        margin-top: 0rem;
    }

    .mgzn-new .section-gap {
        padding: 25px 0 0;
    }

    .mgzn-new .section-gap .right-rail {
        padding: 0 0 0;
    }

.image-caption {
    font-size: 1.38rem; /* small text */
    line-height: 1.5;
    color: #3d3d3d; /* soft gray */
    font-style: normal;
}

/* Header Styles */
.new_mgzne_header {
    background-color: var(--primary-navy);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .new_mgzne_header.scrolled {
        padding: 0.75rem 0;
        box-shadow: var(--shadow-lg);
        background-color: #0a1621;
    }

.new_mgzne_logo {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
    transition: opacity 0.2s ease;
    font-family: 'Inter', sans-serif;
}

    .new_mgzne_logo:hover {
        color: white;
        opacity: 0.9;
        text-decoration: none;
    }

.new_mgzne_nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .new_mgzne_nav a {
        color: white;
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: 500;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        padding-bottom: 4px;
        letter-spacing: 0.3px;
    }

        .new_mgzne_nav a:hover {
            color: rgba(255, 255, 255, 0.85);
        }

        .new_mgzne_nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-blue);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .new_mgzne_nav a:hover::after {
            width: 100%;
        }

.new_mgzne_search_btn {
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    outline: 0;
    border: 0;
}

.container-hd {
    max-width: 90%;
    margin: 0 auto;
}

.new_mgzne_search_btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Hero Section */
.new_mgzne_hero {
    padding: 0rem 0;
    margin-top: 1rem;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new_mgzne_hero_title {
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
    font-size: 4.8rem;
    padding-bottom: 20px;
    font-family: "Oswald", Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.new_mgzne_hero_byline {
    margin-bottom: 1.25rem;
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    font-size: 1.8rem;
    line-height: 1.3;
    font-family: "Epilogue";
    color: #211E21;
}

.new_mgzne_hero_description {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: "Epilogue";
    color: #211E21;
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    margin: 15px 0;
}

.new_mgzne_hero_buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.new_mgzne_hero_image_wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.new_mgzne_hero_image_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.new_mgzne_hero_image_wrapper:hover::before {
    opacity: 1;
}

.new_mgzne_hero_image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    aspect-ratio: 16 / 10;
}


.new_mgzne_featured h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
}
/* Featured Articles Section */
.new_mgzne_featured {
    padding: 1rem 0;
    margin-top: 1rem;
}

.new_mgzne_article_card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .new_mgzne_article_card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .new_mgzne_article_card:hover::before {
        transform: scaleX(1);
    }

    .new_mgzne_article_card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.new_mgzne_article_title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    /*margin-bottom: 1.5rem;*/
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.new_mgzne_article_meta {
    display: flex;
    justify-content: space-between;
    align-items: start;
    font-size: 1.4rem;
    color: var(--text-muted);
    gap: 0.5rem;
}

.new_mgzne_article_author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.new_mgzne_article_time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 62px;
}

/* Editor Picks Section */
.new_mgzne_editor_picks {
    background-color: var(--light-bg);
    padding: 1rem 0;
}

.new_mgzne_editor_card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

    .new_mgzne_editor_card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.new_mgzne_editor_card_image_wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 6;
    background-color: #f0f0f0;
}

    .new_mgzne_editor_card_image_wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 2;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

.new_mgzne_editor_card:hover .new_mgzne_editor_card_image_wrapper::before {
    opacity: 1;
}

.new_mgzne_editor_card_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new_mgzne_editor_card:hover .new_mgzne_editor_card_image {
    transform: scale(1.1);
}

.new_mgzne_editor_card_content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new_mgzne_editor_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.new_mgzne_editor_author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.new_mgzne_editor_time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Perspectives Section */
.new_mgzne_perspectives {
    padding: 1rem 0;
    margin-top: 1rem;
}

.new_mgzne_list_item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: slideInListItem 0.5s ease-out forwards;
}

@keyframes slideInListItem {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.new_mgzne_list_item:hover {
    background-color: rgb(85 152 229 / 10%);
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

.new_mgzne_article_thumbnail {
    width: 150px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .new_mgzne_article_thumbnail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

.new_mgzne_list_item:hover .new_mgzne_article_thumbnail::before {
    opacity: 1;
}

.new_mgzne_article_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new_mgzne_list_item:hover .new_mgzne_article_thumbnail img {
    transform: scale(1.1);
}

.new_mgzne_list_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.new_mgzne_list_meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-top: auto;
}

.new_mgzne_list_author,
.new_mgzne_list_time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* More From Section */
.new_mgzne_more_section {
    padding: 1rem 0;
    margin-top: 1rem;
}

.new_mgzne_more_card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

    .new_mgzne_more_card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.new_mgzne_more_card_image_wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 6;
    background-color: #f0f0f0;
}

    .new_mgzne_more_card_image_wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 2;
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

.new_mgzne_more_card:hover .new_mgzne_more_card_image_wrapper::before {
    opacity: 1;
}

.new_mgzne_more_card_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.new_mgzne_more_card:hover .new_mgzne_more_card_image {
    transform: scale(1.08);
}

.new_mgzne_more_card_content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.new_mgzne_more_card_title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    flex: 1;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.2px;
}

.new_mgzne_more_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.new_mgzne_more_card_author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.new_mgzne_more_card_time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Archive Section */
.new_mgzne_archive {
    padding: 1rem 0;
}

.new_mgzne_archive_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_mgzne_archive_card {
    height: 365px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
}

    .new_mgzne_archive_card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.new_mgzne_archive_cover {
    flex: 0 0 270px;
    position: relative;
    overflow: hidden;
}

    .new_mgzne_archive_cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

.new_mgzne_archive_card:hover .new_mgzne_archive_cover img {
    transform: scale(1.05);
}

.new_mgzne_archive_content {
    flex: 1;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}
    .new_mgzne_archive_content p, .new_mgzne_archive_content span {
        display: -webkit-box;
        -webkit-line-clamp: 9;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5; /* Adjust based on your design */
        max-height: 13.5em; /* line-height (1.5) * number of lines (7) */
        /* Optional: for better cross-browser support */
        overflow: clip;
    }

p:empty {
    display: none
}

.new_mgzne_archive_issue_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.new_mgzne_archive_card:hover .new_mgzne_archive_issue_title {
    color: var(--primary-blue);
}

.new_mgzne_archive_highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

    .new_mgzne_archive_highlights li {
        color: var(--text-body);
        font-size: 1.8rem;
        line-height: 1.7;
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
        position: relative;
    }

        .new_mgzne_archive_highlights li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 700;
        }

.new_mgzne_archive_count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: auto;
}

.new_mgzne_view_all_archives {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .new_mgzne_view_all_archives:hover {
        color: var(--primary-green);
        gap: 0.75rem;
    }

    .new_mgzne_view_all_archives::after {
        content: '→';
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .new_mgzne_view_all_archives:hover::after {
        transform: translateX(4px);
    }

/* Footer */
.new_mgzne_footer {
    background-color: #3d3d3d;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
}

.new_mgzne_footer_top {
    padding-bottom: 3rem;
}

.new_mgzne_footer_brand {
    margin-bottom: 2rem;
}

.new_mgzne_footer_tagline p{
    font-size: 1.4rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.new_mgzne_social_links {
    display: flex;
    gap: 1rem;
}

.new_mgzne_social_link {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .new_mgzne_social_link:hover {
        background-color: var(--primary-blue);
        color: white;
        transform: translateY(-3px);
    }

    .new_mgzne_social_link svg {
        width: 18px;
        height: 18px;
    }

.new_mgzne_footer_column h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.new_mgzne_footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .new_mgzne_footer_links li {
        margin-bottom: 0.75rem;
    }

    .new_mgzne_footer_links a {
        color: #c0c0c0;
        text-decoration: none;
        font-size: 1.4rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-block;
    }

        .new_mgzne_footer_links a:hover {
            color: var(--primary-blue);
            transform: translateX(4px);
        }

.new_mgzne_footer_divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.new_mgzne_footer_bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    color: #a0a0a0;
    flex-wrap: wrap;
    gap: 1rem;
}

.new_mgzne_footer_copyright {
    margin: 0;
}

.new_mgzne_footer_legal {
    display: flex;
    gap: 1.5rem;
}

    .new_mgzne_footer_legal a {
        color: #a0a0a0;
        text-decoration: none;
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .new_mgzne_footer_legal a:hover {
            color: var(--primary-blue);
        }

/* Advertisement Sidebar */
.new_mgzne_ad_sidebar {
    position: sticky;
    top: 100px;
}

.new_mgzne_ad_card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .new_mgzne_ad_card:hover {
        border-color: var(--primary-blue);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

.new_mgzne_ad_label {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.new_mgzne_ad_content {
    color: var(--text-dark);
    font-size: 1.4rem;
    line-height: 1.6;
}

.new_mgzne_ad_placeholder {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 6px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.new_mgzne_ad_card:hover .new_mgzne_ad_placeholder {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
}

/* Mobile Menu Toggle */
.new_mgzne_mobile_toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}


.new-magzine-page .breadcrumbs li + li {
    margin-left: .8rem
}

.new-magzine-page .breadcrumbs li {
    font-size: inherit;
}
/* Filter & Sidebar Styles */

.magazine-search .c-search-filter__card {
    padding: 0px 0;
    border-bottom: none;
}
.new_mgzne_sidebar {
    width: 338px;
    flex-shrink: 0;
}

.new_mgzne_filter {
    background: white;
    border: 1px solid #919191;
    padding: 20px;
}

.new_mgzne_filter_inner {
    padding: 8px;
}

.new_mgzne_filter_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .new_mgzne_filter_header h2 {
        font-size: 22px;
        font-weight: 600;
        color: #333;
    }

.magazine-search .new_mgzne_filter_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

    .magazine-search .new_mgzne_filter_header h2 {
        font-size: 2.2rem;
        font-weight: 600;
        color: #333;
        font-family: Arial,Helvetica,sans-serif;
    }

.new_mgzne_clear_all {
    color: #0072d6;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

    .new_mgzne_clear_all:hover {
        opacity: 0.7;
    }

.new_mgzne_filter_section {
    margin-bottom: 30px;
}

.new_mgzne_filter_section_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dedcdc;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .new_mgzne_filter_section_header:hover {
        background-color: #f9f9f9;
    }

    .new_mgzne_filter_section_header h3 {
        font-size: 18px;
        font-weight: 600;
        color: #000;
    }

.new_mgzne_chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg); /* DOWN arrow */
    cursor: pointer;
    transition: transform 0.25s ease;
}
    .new_mgzne_chevron.rotate {
        transform: rotate(-135deg); /* UP arrow */
    }

.new_mgzne_filter_options {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new_mgzne_filter_option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
}

    .new_mgzne_filter_option:hover {
        opacity: 0.7;
    }

.new_mgzne_checkbox {
    width: 19px;
    height: 19px;
    border: 1px solid #535151;
    flex-shrink: 0;
}

.new_mgzne_filter_option label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.new_mgzne_articles_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.new_mgzne_articles_wrapper {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.new_mgzne_tags_issue {
    display: flex;
    justify-content: space-between;
}

.new_mgzne_page_controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .new_mgzne_page_controls span {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

.new_mgzne_page_size_selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: silver;
    padding: 5px;
}

    .new_mgzne_page_size_selector span {
        font-size: 16px;
        font-weight: 600;
    }

.new_mgzne_content_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .new_mgzne_content_header h1 {
        font-size: 32px;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
    }

/* Responsive Design */
@media (max-width: 991px) {
    .new_mgzne_hero_title {
        font-size: 2.25rem;
    }

    .new_mgzne_hero {
        padding: 3rem 0;
    }

    .new_mgzne_hero_image_wrapper {
        margin-top: 2rem;
    }

    .new_mgzne_archive_card {
        flex-direction: column;
    }

    .new_mgzne_archive_cover {
        flex: 0 0 auto;
        height: 250px;
    }

    .new_mgzne_footer_bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .new_mgzne_mobile_toggle {
        display: block;
    }

    .new_mgzne_nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-navy);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

        .new_mgzne_nav.active {
            display: flex;
        }

    .new_mgzne_hero_title {
        font-size: 1.75rem;
    }

    .new_mgzne_logo {
        font-size: 2rem;
    }

    .new_mgzne_hero_buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        text-align: center;
    }

    .new_mgzne_archive_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .new_mgzne_archive_title {
        font-size: 1.25rem;
    }
}

/* Keep existing styles for elements that weren't renamed */
.badge-season {
    background: var(--badge-season);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.article-category {
    color: #0072d6;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between; /* left & right */
}

    .article-category:hover {
        font-weight: bold
    }

.new_mgzne_article_card:hover .new_mgzne_article_title,
.new_mgzne_more_card:hover .new_mgzne_article_title,
.new_mgzne_list_item:hover .new_mgzne_article_title,
.new_mgzne_editor_card:hover .new_mgzne_article_title {
    color: #0072d6;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: white;
    padding: 0.875rem 2.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    font-size: 1.8rem;
    border-radius: 1rem;
    font-weight: 700;
}

    .btn-primary-custom:hover {
        background-color: #019a5c;
        border-color: #019a5c;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(109, 109, 109, 0.35);
        text-decoration: none;
    }

.btn-secondary-custom {
    background-color: transparent;
    border: 2px solid var(--text-body);
    color: var(--text-body);
    padding: 0.875rem 2.25rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

    .btn-secondary-custom:hover {
        background-color: var(--text-dark);
        border-color: var(--text-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }

.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}

.mgzn-social-share {
    display: flex;
    align-items: center;
    gap: 18px; /* spacing exactly like Figma */
    margin: 30px 0; /* top/bottom spacing */
    justify-content: center; /* <-- centers the whole block horizontally */
    width: 100%;
}

    .mgzn-social-share .share-label {
        font-size: 20px;
        font-weight: 500;
        color: #0b63d6; /* adjust if needed based on Figma */
    }

    .mgzn-social-share .share-icon img {
        /*width: 32px;*/ /* same size as design */
        height: 50px;
        object-fit: contain;
        display: block;
    }

/*Updated Header Styles*/
.mgz-nav {
    background: #061728;
    padding: 18px 0;
    position: relative;
    z-index: 50;
}

    /* LOGO */
    .mgz-nav .navbar-brand img {
        width: 260px;
        max-width: 100%;
    }

/* RIGHT FLEX */
.mgz-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* NAV LINKS */
.mgz-nav .nav-link {
    color: #ffffff !important;
    font-size: 1.35rem;
    padding: 8px 0 !important;
}

/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {
    .mgz-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* DROPDOWN MENU */
.mgz-nav .dropdown-menu {
    background: #1a1a1a !important;
    border: none !important;
    min-width: 220px;
    padding: 10px 0;
}

.mgz-nav .dropdown-item {
    color: #ffffff !important;
    font-size: 1.2rem;
    padding: 10px 20px;
}

    .mgz-nav .dropdown-item:hover {
        background: #333333 !important;
    }

/* SEARCH (INLINE) */
.mgz-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Search input EXPANDS inline, pushing menu left */
.mgz-search-input {
    width: 0;
    opacity: 0;
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    transition: width .35s ease, opacity .2s ease;
    font-size: 1.2rem;
}

/* EXPAND LEFT → pushes menu left */
.mgz-search-wrap:focus-within .mgz-search-input {
    width: 220px;
    opacity: 1;
}

/* SEARCH BUTTON */
.mgz-search-btn {
    border: 2px solid #ffffff !important;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    background: transparent !important;
    font-size: 18px;
}

/* MOBILE TOGGLE MENU */
.mgz-mobile-menu {
    display: flex;
    justify-content: end;
}

/* MOBILE STYLES */
@media (max-width: 991px) {
    .mgz-mobile-menu {
        display: none; /* hidden by default */
        width: 100%;
        padding-top: 15px;
    }

        .mgz-mobile-menu.mgz-open {
            display: block; /* show when toggled */
        }

    .mgz-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .mgz-search-wrap {
        width: 100%;
    }

        .mgz-search-wrap:focus-within .mgz-search-input {
            width: 100%;
        }

    /* dropdown full-width on mobile */
    .mgz-nav .dropdown-menu {
        width: 100%;
        background: #0e2337 !important;
    }

    #mgzMenu {
        width: 100%;
    }

    /* MOBILE DROPDOWN TOGGLE (manual) */
    .nav-item.dropdown .dropdown-menu {
        display: none !important;
        width: 100%;
        background: #0e2337 !important;
    }

    .nav-item.dropdown.mgz-dd-open .dropdown-menu {
        display: block !important;
    }

    .mgz-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start !important;
        padding-left: 10px;
        padding-right: 10px;
        gap: 20px;
    }

    .mgz-nav .nav-link {
        font-size: 1.6rem;
        padding: 12px 0 !important;
    }

    /* Clean spacing for items */
    .nav-item {
        width: 100%;
    }

        /* Topics dropdown arrow stays */
        .nav-item.dropdown .nav-link::after {
            margin-left: 10px;
            float: right;
        }

    /* Search alignment fix */
    .mgz-search-wrap {
        padding: 10px 0;
        width: 100%;
        justify-content: flex-start;
    }

    .mgz-search-btn {
        width: 48px;
        height: 48px;
    }
}



/* Filter & Sidebar Styles */

