:root {
    --cafeBrown: #583325;
    --cafeGreen:  #6f832a;
    --cafeGrey:  #CCC;
    --smallFontSize: 16px;
    --mediumFontSize: 20px;
    --borderSize: 1px;
}

body {
    font-family: "EB Garamond", serif;
    padding: 0;
    margin: 0 auto;
}
input, textarea, select {
    font-family: "EB Garamond", serif;
}
a {
    color:inherit;
    text-decoration: none;
}
h1 {
    color:var(--cafeBrown);
}
img {
    display: block;
}
.standardWidth {
    width: 100%;
    margin:auto;
}
main, article {
    margin: 20px 0;
    min-height: 70vh;
}
.main-content {
    display: flex;
    margin:20px auto;
    min-height: 100vh;
    width: 100%;
    gap:40px;
    max-width: 1500px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-logo {
    text-align: center;
    padding: 2rem 0;
    border-bottom:1px solid var(--cafeBrown);
    position: relative;
    z-index: 2;
    background: #fff;
}

.header-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cafeBrown);
}
.logo img {
    height: 90px;
    max-width: 90%;
    margin:0 auto;
    object-fit: contain;
    transition: height ease-in-out 550ms;
}
.float .header-logo {
    padding:0.7rem 0 0.4rem 0;
}
.float .logo img {
    height: 40px;
}
.header-nav {
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    background: #fff;
}
nav {
    padding: 0.5rem 0;
    border-bottom:1px solid var(--cafeBrown);
    width: 100%;
}
nav .snetworks {
    display: flex;
    gap:15px;
    margin: auto 2% auto auto;
}
nav .snetworks a {
    display: flex;
    align-items: center;
}
nav .snetworks img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all ease-in-out 150ms;
}
nav .snetworks img:hover {
    transform:scale(1.15);
}
nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0 auto;
    width: 100%;
    gap:35px;
    max-width: 1500px;
}

nav ul li {
    margin: 0 0;
}

nav ul li a {
    color: var(--cafeBrown);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.1px;
}
nav ul li a:hover {
    color:var(--cafeGreen);
}
.menu-toggle {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}
/* État ouvert du bouton menu-toggle */
.menu-toggle.open {
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
}

/* État ouvert de header-nav */
.header-nav.open {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
}

.submenu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    margin-top:0.4rem;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
}

.submenu-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    height: 300px;
}

.submenu-links {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap:20px;
}

.submenu-image {
    width: 25%;
    margin: 0 2% 0 auto;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.submenu-image + .submenu-image {
    margin: 0;
}
.submenu-image img {
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: cover;
}
.submenu-image-title {
    padding: 0 0;
    font-weight: bold;
    color: var(--cafeBrown);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    font-size:var(--mediumFontSize);
}

.submenu-image-title:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.article-page,
.listingArticle {
    width: 100%;
    margin: 0 auto 0 auto;
    flex: 1;
}
.article-page {
    width: 90%;
    max-width: 900px;
}
.article-header .picture {
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-column {
    /*position: sticky;*/
    /*top: 125px;*/
    width: 300px;
    margin: 0 auto auto 0;
    font-size: 16px;
    font-weight: normal;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.related-articles {
    margin-top: 40px;
}

.related-articles h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.related-articles-row {
    display: flex;
    gap: 20px;
}

.related-article {
    flex: 1;
    max-width: 300px;
}

.related-article img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.related-article h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.related-article .author, .related-article .date {
    font-size: 14px;
    color: #555;
}

.related-article .author {
    margin-bottom: 5px;
}

.megaban  {
    margin: 240px 0 0 0;
    padding: 10px;
    text-align: center;
}
.right-column .block + .block {
    margin-top:30px;
}
.megaban img, .right-column img {
    max-width: 100%;
}
.autoPromo .article-title {
    padding:12px 0 0 0;
}
.autoPromo .article-title a {
    font-size:var(--mediumFontSize);
    line-height: 24px;
    text-decoration: none;
    font-weight: bold;
}
.autoPromo .article-title a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.right-column .autoPromo img {
    min-height: 350px;
    object-fit: cover;
}
.right-column .ad-position {
    min-height: 100px;
    margin-bottom: 20px;
}


@media screen and (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .right-column {
        justify-content: center;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .article-page,
    .listingArticle {
        max-width: 100%;
        margin: 0 auto;
    }
}





.featured-article {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 30px;
}
.featured-article img {
    width: 100%;
    height: auto;
}
.featured-article .featured-article-image {
    width: 66%;
    flex:1;
    position: relative;
}
.featured-article-image .caption {
    position: absolute;
    bottom: -20px;
    color:var(--cafeGreen);
    font-size: var(--smallFontSize);
    letter-spacing: 0.5px;
}
.featured-article.horizontal img {
    width: 100%;
    /*order: 1;*/
    max-height: 100vh;
    object-fit: cover;
}
.featured-article.vertical img {
    width: 60%;
    order: 0;
}
.featured-article-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.article-row .category {
    font-size:var(--smallFontSize);
    font-weight: bold;
    color:var(--cafeGreen);
}
.featured-article-content .tags {
    margin: 0 auto 0 0;
    display: flex;
    gap:15px;
    font-size: var(--mediumFontSize)
}

.featured-article-content h1 {
    font-size: 60px;
    margin: auto auto 0 0;
    line-height: 68px;
    letter-spacing: -1px;
    font-weight: 400;
    color: var(--cafeBrown);
}
.featured-article-content h1 a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}
.featured-article-content .featured-article-meta {
    font-size: var(--smallFontSize);
    margin:10px auto auto 0;
    color:var(--cafeGreen);
}
.featured-article.horizontal .featured-article-content {
    order: 0;
    width: 33%;
    padding: 0 20px;
}
.featured-article.vertical .featured-article-content {
    order: 1;
    width: 40%;
    position: sticky;
    top: 150px;
}
.tags {
    margin-top:5px;
}
.tag {
    color: var(--cafeGreen);
    text-decoration: none;
}

section, main > .title {
    width: 100%;
    max-width: 1500px;
    margin: auto;
}

section + section {
    margin-top:60px;
}

.content-block {

}
.content-block + .content-block {
    margin-top:40px;
}
.content-block h2 {
    margin:0;
}
section > h2, .content-block > h2, .featured-article-image h2 {
    color: var(--cafeBrown);
    border-bottom: var(--borderSize) solid var(--cafeBrown);
    font-size: 30px;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}



.featured-article-image h2 {
    margin-top:0;
}
.page-content {
    font-size:var(--mediumFontSize);
}
.page-content h2 {
    color:var(--cafeGreen);
    font-size:20px;
    margin:0 0 -15px 0;
}
.article-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.article-row .tags {
    display: block;
}
.article-row .tags .tag {
    padding-right:8px;
}
.article-row .tags a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.article {
    display: flex;
    flex-direction: column;
}

.article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article h3 {
    margin: 0 0;
    font-size: var(--mediumFontSize);
}

.article .category {
    color: var(--cafeGreen);
    font-size: var(--smallFontSize);
    margin-bottom: 0;
}

.article .author {
    color: #666;
    font-size: 0.8rem;
    display: none;
}
.article .date {
    display: none;
}

.ad {
    display: flex;
    justify-content: center;
    align-items: start;
}


.contact-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

.contact-section h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #66afe9;
    outline: none;
}

.form-group textarea {
    height: 255px;
    resize: vertical;
}

button#submitBtn {
    background-color: var(--cafeGreen);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: all ease-in-out 250ms;
}
button#submitBtn:hover {
    transform:scale(1.04);
}
button#submitBtn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform:unset !important;
}

#contactForm .status {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
}


.articleContainer {
    font-size: 14px;
    max-width: 1500px;
    width: 100%;
    margin:auto;
}
article {
}
.article_main-content {
    display: flex;
    justify-content: space-between;
}

.article_page {
    flex: 1;
    padding: 0;
}

.article_header {
    margin-bottom: 20px;
    display: flex;
    align-items: stretch;
}
.article_header .article_desc {
    padding:0 20px;
    text-align: center;
    width: 50%;
}
.article_header .article_picture {
    width: 50%;
}
.article_header .article_picture .inner {
    width: 100%;
}
.article_header.horizontal {
    flex-direction: column;
}
.article_header.horizontal .article_picture {
    width: 100%;
    max-width: 1500px;
}
.article_header.horizontal .article_desc {
    margin:40px auto;
    width: 95%;
}

.article_picture {
    display: flex;
    justify-content: center;
}
.article_picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
}

.article_caption {
    font-size: var(--smallFontSize);
    color: var(--cafeGreen);
    text-align: left;
    margin-top: 5px;
}

.article_category {
    font-size: var(--smallFontSize);
    color: var(--cafeGreen);
    text-transform: uppercase;
}
.article_tags {
    margin-top:10px;
    font-size: 14px;
    color: var(--cafeGreen);
    text-transform: uppercase;
    display: flex;
    gap:8px;
    justify-content: center;
}

.article_title {
    font-size: 70px;
    width: 90%;
    letter-spacing: -1px;
    line-height: 1.2;
    font-weight: normal;
    color: var(--cafeBrown);
    margin: 50px auto 0 auto;
}
.article_header.horizontal .article_title {
    margin: 50px auto 20px auto;
}
.article_author  {
    font-size:  14px;
    color: var(--cafeGreen);
    text-transform: uppercase;
}

.article_content {
    margin-top: 40px;
}
.article_content .article_date {
    text-align: center;
    text-transform: uppercase;
    color: var(--cafeGreen);
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.article_content .article_description {
    max-width: 1000px;
    width: 95%;
    margin:5px auto 20px auto;
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    color: var(--cafeBrown);
}
.article_description + .article_lowerContent {
    margin-top:100px;
}
.article_content a {
    color:var(--cafeGreen);
}
.article_content a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.article_lowerContent.columnActive {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.article_lowerContent .article_lowerBlocks {
    flex-basis: 720px;
    margin: 0 0 auto auto;
}
.raw-html-embed {
    display: block;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}
.raw-html-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.article_lowerBlocks iframe {
    width: 100%;
}
.article_content-block {
    max-width: 720px;
    width: 95%;
    margin:auto auto 20px auto;
}
.article_content-block + .article_content-block {
    margin-top:20px;
}
.article_content-block figure {
    margin:0;
    padding:0;
}
.columnActive   {
    flex: 0 0 calc(100% - 340px);
}

.columnActive .article_right-column {
    display: block;
}

.article_content-block.framed {
    border-top: var(--borderSize) solid var(--cafeGreen);
    border-bottom: var(--borderSize) solid var(--cafeGreen);
    margin:50px auto;
}
.article_content-block.framed .details {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap:3%;
}
.article_content-block.framed .details .description {
    flex:1;
}
.article_content-block.framed .details .picture {
    width: 100%;
    margin: 10px auto 20px auto;
    display: flex;
    flex-direction: column;
}


.article_content-block img {
    width: 100%;
    height: auto;
}
.article_content-block a img {
    width: auto;
    margin:auto;
    display: flex;
}
.article_content-block.framed img {
    margin: auto 0 5px 0;
}
.article_content-block.framed .article_content-caption {
    margin-bottom: auto;
    margin-top: 0;
}

.article_lowerBlocks h1 {
    font-size:  25px;
    margin-top:0;
    margin-bottom: 10px;
    color:var(--cafeBrown);
}
.article_content-title, .page-section h1 {
    font-size:  25px;
    margin-top:10px;
    margin-bottom: 10px;
    color:var(--cafeBrown);
}
.article_content .article_content-block h2 {
    color:var(--cafeGreen);
    font-size: 20px;
}
.page-section {
    width: 90%;
    max-width: 900px;
}

.article_content-caption {
    font-size: var(--smallFontSize);
    line-height: 15px;
    color: var(--cafeGreen);
    text-align: left;
    margin-top: 5px;
}

.article_content-text,  .article_content-text p, .article_content-block p, .article_content-block {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 35px;
}
.article_content-block p {
    line-height: 26px;
    margin-top:8px;
}
.article_related-articles {
    width: 95%;
    max-width: 720px;
    margin: 60px auto 20px auto;
}
.article_related-articles h2 {
    font-size:35px;
    color: var(--cafeBrown);
}
.article_related-articles-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 2%;
    row-gap: 30px;
}

.article_related-article {
    width: 31%;
    flex:1;
    border-radius: 5px;
}
.article_related-article:hover h3, .article h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.article_related-article img {
    width: 100%;
    height: 250px;
    aspect-ratio: 3/4;
    margin-bottom: 10px;
    object-fit: cover;
}

.article_related-article-info {
    padding: 10px 0;
}

.article_related-article-info h3 {
    font-size: var(--mediumFontSize);
    color:var(--cafeBrown);
    margin: 0 0 10px 0;
}

.article_related-author,
.article_related-date {
    font-size: 0.9em;
    color: #777;
}

.article_right-column {
    width: 300px;
    padding: 20px;
    background: #f5f5f5;
    margin-left: 20px;
}

.newsletter-archive a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article_main-content {
        flex-direction: column;
    }

    .columnActive .article_page {
        flex: 1;
    }

    .article_right-column {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}

.footer {
    background-color: var(--cafeBrown);
    color: #fff;
    margin-top:80px;
}

.footer > div {
    padding: 40px 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin: 0 auto auto 0;
}
.footer-social img {
    filter:invert(1);
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all ease-in-out 150ms;
}
.footer-social img:hover {
    transform: scale(1.15);
}
.footerContent {
    display: flex;
}
.footer-links {
    display: flex;
    gap: 50px;
    text-align: left;
    margin: 0 0 auto auto;
}
.footer-links-alt {
    width: 100%;
    max-width: 1500px;
    display: flex;
    gap: 30px;
    justify-content: left;
    margin: 20px auto;
}
.footer-links-alt a:hover {
    text-decoration: underline;
}
.footer-links-alt p {
    margin:auto 0 auto auto;
}
.footer-column h4 {
    margin:0 auto 5px auto;
    font-weight: 800;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-column a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}
.article, .ad {

    box-sizing: border-box;
}

.ad img {
    max-width: 100%;
    min-height: 200px;
    max-height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}


body.rgpd-blur {
    /*filter: blur(5px);*/
}
#rgpd-cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
#rgpd-cookie-content {
    background: #fff;
    color: var(--cafeBrown);
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border: 1px solid var(--cafeBrown);
    border-radius: 8px;
    position: relative;
}
#rgpd-cookie-content h2 {
    margin-top: 0;
}
#rgpd-cookie-content p {
    margin-bottom: 20px;
}
.rgpd-cookie-button {
    padding: 10px 15px;
    margin: 20px 5px;
    color: #fff;
    background-color: var(--cafeBrown);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#rgpd-continue-without {
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 0.7em;
    color: var(--cafeBrown);
    cursor: pointer;
}
#rgpd-continue-without:hover {
    text-decoration: underline;
}
#rgpd-cookie-settings {
    display: none;
    margin-top: 20px;
}
#rgpd-cookie-settings input[type="checkbox"] {
    margin-right: 10px;
}
.nlsub_container {
    display: flex;
    max-width: 400px;
    margin-top: 1em;
}
.nlsub_input {
    flex: 1;
    padding: 0.5em 1em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}
.nlsub_input:focus {
    outline: none;
    border-color: #66afe9;
    box-shadow: 0 0 5px rgba(102,175,233,0.5);
}
.nlsub_button {
    padding: 0.5em 1em;
    font-size: 1em;
    border: none;
    background-color: var(--cafeGreen);
    color: #fff;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all ease-in-out 200ms;
}
.nlsub_button:hover {
    background-color: var(--cafeBrown);

}
.nlsub_thanks {
    font-size: 1em;
    color: var(--cafeGreen);
    margin-top: 0.5em;
}



.nl-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.nl-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    text-align: center;
    font-family: sans-serif;
    z-index: 1001;
}
.nl-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color:var(--cafeGreen);
}
.nl-popup img {
    max-width: 120px;
    margin-bottom: 1rem;
}
.nl-popup-title {
    margin:10px 0 0 0;
    font-size: 18px;
    line-height: 20px;
    color: var(--cafeGreen);
}
.nl-popup-sub {
    margin:10px 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: var(--cafeBrown);
}
.nl-popup input.nl-email-input {
    width: 93%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    font-size: 1rem;
}
.nl-popup-disc {
    margin-top:15px;
    font-size: 11px;
    font-style: italic;
    color: #999;
}
.nl-popup button.nl-subscribe-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.25rem;
    background: #333;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}
.nl-popup a.nl-already {
    display: block;
    margin-top: 0.75rem;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}
.nl-popup .nl-thanks {
    font-size: 1.2rem;
    color: #333;
    margin: 1rem 0;
}
.nl-popup img {
    margin:auto;
}

@media (max-width: 1150px) {

    .article_title {
        font-size: 50px;
    }
}
@media (max-width: 1000px) {

    .article_title {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .article, .ad {
        flex: 1 1 48%;
    }
    .article_lowerContent.columnActive {
        flex-direction: column;
    }


}

@media (max-width: 480px) {
    .article, .ad {
        flex: 1 1 98%;
    }
}

@media (max-width: 1248px) {
    .featured-article-content h1 {
        font-size:50px;
        line-height: 52px;
    }
}
@media (max-width: 968px) {
    .submenu-image + .submenu-image {
        display: none;
    }
    .submenu-image {
        width: 33%;
    }
    nav ul {
        gap: 18px;
        padding: 0 8px;
    }
    nav ul li a {
        font-size: 14px;
    }
    .featured-article-content h1 {
        font-size:40px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .article_tags, .article-row .tags {
        display: block;
    }
   .header-logo {
        padding:0.7rem 0 0.4rem 0;
    }
    .logo img {
        height: 40px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .menu-toggle {
        display: block;
        z-index: 500;
    }

    .submenu-content {
        flex-direction: column;
        height: auto;
    }
    .nlsub_container {
        flex-direction: column;
    }
    .submenu-image {
        width: 100%;
        margin-top: 1rem;
    }
    .article-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-article {
        flex-direction: column;
    }
    .featured-article .featured-article-image {
        width: 100%;
    }
    .featured-article.horizontal .featured-article-content {
        width: 90%;
        margin:0 auto;
    }
    .featured-article-content h1, .article_title {
        font-size:36px;
        line-height: 38px;
    }
    .featured-article-image .caption {
        display: none;
    }
    section > h2, .content-block > h2, .featured-article-image h2 {
        padding: 10px 10px;
        font-size: 20px;
    }
    .featured-article-image h2 {
        padding-left:10px;
    }
    .article_content .article_description {
        font-size:20px;
    }
    .article h3, .tag {
        padding:0 10px;
    }
    .footer-links-alt{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-links-alt p {
        margin:auto;
    }
    .article_related-articles-row, .article_content-block.framed .details {
        flex-direction: column;
    }
    .article_related-article {
        width: 100%;
    }
    nav .snetworks {
        margin: auto;
    }
    .article_description + .article_lowerContent {
        margin-top:40px;
    }
    .featured-article {
        gap:12px;
    }
    .submenu-image {
        display: none;
    }
    .autoPromo .article-title {
        padding-left:12px;
        padding-right: 12px;
    }
    .article_title {
        width: 96%;
    }
    .article_content .article_description {
        text-align: left;
    }
    .article_header .article_picture {
        width: 100%;
    }
    .nl-popup {
        width: 80%;
    }
    .container p {
        text-align: center;
    }
    /* FIX THAT FOR MOBILE */
    .article_header {
        flex-direction: column;
        gap:10px;
    }
    .header-nav {
        /*transform: translateY(-100%);*/
        margin-top: -100%;
    }
    .article_category {
        font-weight: bold;
    }
    .article_header .article_desc {
        margin-top:40px;
        padding:0;
    }
    .article_caption, .article-row .tags {
        padding-left:5px;
        padding-right:5px;
    }
    .article-row .tags .tag {
        padding-left:0;
        white-space: nowrap;
    }

    .header-nav {
        display: block;
    }
    .megaban {
        margin-top:50px;
    }
    .article h3 {
        margin-top:8px;
    }
    .tags .tag + .tag + .tag {
        /*display: none;*/
    }
    .article + .article {
        margin-top:10px;
    }
}

@media (max-width: 480px) {
    .article-row {
        grid-template-columns: 1fr;
    }
}