/* ======================================================
   NOTICIAS LATINAS — MAIN STYLESHEET
   Path:
   /public_html/noticias/wp-content/themes/noticias-latinas-child-v1.2.0/assets/css/main.css
====================================================== */

/* ======================================================
   DESIGN TOKENS
====================================================== */

:root {
    --nl-green: #26863a;
    --nl-green-dark: #17652a;
    --nl-lime: #9ccc3b;
    --nl-brown: #5b3b27;
    --nl-gold: #e7a000;
    --nl-ink: #171717;
    --nl-muted: #6b6b6b;
    --nl-soft: #f5f7f3;
    --nl-white: #ffffff;
    --nl-border: #e3e7df;
    --nl-radius: 14px;
    --nl-shadow: 0 12px 32px rgba(22, 35, 20, 0.10);
}

/* ======================================================
   RESET / GLOBAL
====================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.nl-site {
    margin: 0;
    background: var(--nl-white);
    color: var(--nl-ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.admin-bar .nl-nav {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.nl-wrap {
    width: min(1280px, calc(100% - 34px));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ======================================================
   TOP BAR
====================================================== */

.nl-topbar {
    background: #2d2824;
    color: var(--nl-white);
    font-size: 13px;
}

.nl-topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
}

.nl-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nl-contact a {
    color: #6ed3ff;
}

.nl-contact a:hover,
.nl-contact a:focus {
    color: var(--nl-white);
}

/* ======================================================
   BRAND AREA
====================================================== */

.nl-brandbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding: 18px 0 20px;
}

.nl-logo {
    display: block;
    flex: 0 0 auto;
}

.nl-logo img {
    width: 340px;
    max-height: 130px;
    object-fit: contain;
    object-position: left center;
}

.nl-ad-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(560px, 46vw);
    height: 95px;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    text-decoration: none;
}

.nl-ad-slot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s ease;
}

.nl-ad-slot:hover img,
.nl-ad-slot:focus img {
    transform: scale(1.015);
}

/* ======================================================
   MAIN NAVIGATION
====================================================== */

.nl-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nl-white);
    border-top: 1px solid var(--nl-border);
    border-bottom: 3px solid var(--nl-green);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.035);
}

.nl-nav-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 56px;
}

.nl-menu {
    display: flex;
    flex: 1;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nl-menu > li {
    position: relative;
}

.nl-menu > li > a {
    display: block;
    padding: 17px 14px;
    color: #252525;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nl-menu > li:hover > a,
.nl-menu > li:focus-within > a,
.nl-menu > li.current-menu-item > a,
.nl-menu > li.current-menu-ancestor > a {
    color: var(--nl-green);
}

.nl-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    display: none;
    min-width: 245px;
    padding: 8px;
    margin: 0;
    background: var(--nl-white);
    border-top: 3px solid var(--nl-green);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--nl-shadow);
    list-style: none;
}

.nl-menu li:hover > .sub-menu,
.nl-menu li:focus-within > .sub-menu {
    display: block;
}

.nl-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    color: #333333;
}

.nl-menu .sub-menu a:hover,
.nl-menu .sub-menu a:focus {
    background: var(--nl-soft);
    color: var(--nl-green);
}

.nl-menu-toggle {
    display: none;
}

.nl-search {
    flex: 0 0 auto;
}

.nl-search input {
    width: 195px;
    padding: 10px 14px;
    border: 1px solid var(--nl-border);
    border-radius: 999px;
    outline: none;
}

.nl-search input:focus {
    border-color: var(--nl-green);
    box-shadow: 0 0 0 3px rgba(38, 134, 58, 0.10);
}

/* ======================================================
   MAIN CONTENT
====================================================== */

.nl-main {
    min-height: 50vh;
}

.nl-home {
    padding: 24px 0 50px;
}

/* ======================================================
   HERO
====================================================== */

.nl-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(350px, 1fr);
    gap: 14px;
}

.nl-hero-main {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #222222;
    border-radius: var(--nl-radius);
    box-shadow: var(--nl-shadow);
}

.nl-hero-image,
.nl-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-hero-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 120px 28px 30px;
    color: var(--nl-white);
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.30) 25%,
        rgba(0, 0, 0, 0.94) 100%
    );
}

.nl-hero-overlay span {
    display: inline-block;
    padding: 6px 11px;
    background: var(--nl-green);
    border-radius: 999px;
    color: var(--nl-white);
    font-size: 12px;
    font-weight: 800;
}

.nl-hero-overlay h1 {
    margin: 12px 0 10px;
    color: var(--nl-white) !important;
    font-size: clamp(29px, 3vw, 45px);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.nl-hero-overlay h1 a {
    color: var(--nl-white) !important;
}

.nl-hero-overlay p {
    max-width: 760px;
    margin: 0;
    color: #f3f3f3;
    font-size: 16px;
}

.nl-hero-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.nl-mini-card {
    position: relative;
    min-height: 243px;
    overflow: hidden;
    background: #333333;
    border-radius: var(--nl-radius);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}

.nl-mini-card a,
.nl-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-mini-card img {
    transition: transform 0.35s ease;
}

.nl-mini-card:hover img {
    transform: scale(1.045);
}

.nl-mini-card strong {
    position: absolute;
    inset: auto 0 0;
    padding: 62px 14px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
    color: var(--nl-white) !important;
    font-size: 16px;
    line-height: 1.28;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.50);
}

/* ======================================================
   BREAKING NEWS
====================================================== */

.nl-breaking {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0;
    margin: 20px 0 34px;
    overflow: hidden;
    background: #2d2926;
    border-left: 5px solid var(--nl-gold);
    color: var(--nl-white);
}

.nl-breaking > strong {
    flex: 0 0 auto;
    padding: 0 14px;
}

.nl-breaking-track {
    display: flex;
    align-items: center;
    gap: 40px;
    min-width: max-content;
    white-space: nowrap;
    animation: nlTicker 38s linear infinite;
    will-change: transform;
}

.nl-breaking:hover .nl-breaking-track {
    animation-play-state: paused;
}

.nl-breaking-track a {
    padding-right: 18px;
    color: #5bd2ff;
}

.nl-breaking-track a::after {
    content: "•";
    margin-left: 38px;
    color: var(--nl-gold);
}

@keyframes nlTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ======================================================
   HOME SECTIONS
====================================================== */

.nl-section {
    margin: 40px 0;
}

.nl-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--nl-green);
}

.nl-section-head h2 {
    padding: 0 0 8px;
    margin: 0;
    color: var(--nl-brown);
    font-size: 26px;
}

.nl-section-head a {
    color: var(--nl-green);
    font-weight: 700;
}

.nl-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 1fr);
    gap: 16px;
    padding-bottom: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.nl-card {
    overflow: hidden;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
}

.nl-card-image {
    display: block;
    height: 175px;
    background: var(--nl-soft);
}

.nl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nl-card:hover .nl-card-image img {
    transform: scale(1.035);
}

.nl-card-body {
    padding: 14px;
}

.nl-card time {
    color: var(--nl-muted);
    font-size: 12px;
}

.nl-card h3 {
    margin: 6px 0 0;
    font-size: 18px;
    line-height: 1.3;
}

.nl-image-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--nl-green), var(--nl-lime));
    color: var(--nl-white);
    font-size: 44px;
    font-weight: 800;
}

/* ======================================================
   NETWORK
====================================================== */

.nl-network {
    padding: 36px 0;
    background: var(--nl-soft);
}

.nl-network-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nl-network-grid a,
.nl-network-grid span {
    padding: 28px 18px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: 12px;
    color: var(--nl-brown);
    font-weight: 800;
    text-align: center;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.nl-network-grid a:hover,
.nl-network-grid a:focus {
    transform: translateY(-3px);
    box-shadow: var(--nl-shadow);
}

/* ======================================================
   FOOTER
====================================================== */

.nl-footer {
    background: #211d1a;
    color: #eeeeee;
}

.nl-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 45px 0;
}

.nl-footer img {
    width: 230px;
    filter: brightness(0) invert(1);
}

.nl-footer h2 {
    font-size: 18px;
}

.nl-footer a {
    display: block;
    margin: 7px 0;
}

.nl-copyright {
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    text-align: center;
}

/* ======================================================
   STANDARD PAGES / ARCHIVES
   Single article styling is intentionally kept in single.css.
====================================================== */

.nl-page,
.nl-content-grid {
    padding: 45px 0;
}

.nl-page {
    max-width: 900px;
}

.nl-page h1 {
    color: var(--nl-brown);
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.1;
}

.nl-list-item {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid var(--nl-border);
}

.nl-list-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width: 900px) {

    body.admin-bar .nl-nav {
        top: 46px;
    }

    .nl-brandbar {
        align-items: flex-start;
    }

    .nl-ad-slot {
        display: none;
    }

    .nl-logo img {
        width: 265px;
    }

    .nl-nav-inner {
        flex-wrap: wrap;
    }

    .nl-menu-toggle {
        display: block;
        padding: 10px 15px;
        margin: 8px 0;
        background: var(--nl-green);
        border: 0;
        border-radius: 7px;
        color: var(--nl-white);
        font-weight: 700;
    }

    .nl-menu {
        display: none;
        width: 100%;
        padding-bottom: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .nl-menu.is-open {
        display: flex;
    }

    .nl-menu > li > a {
        padding: 10px 6px;
    }

    .nl-menu .sub-menu {
        position: static;
        display: block;
        padding-left: 18px;
        border-top: 0;
        box-shadow: none;
    }

    .nl-search {
        margin-left: auto;
    }

    .nl-hero {
        grid-template-columns: 1fr;
    }

    .nl-hero-main {
        min-height: 430px;
    }

    .nl-hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nl-network-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 600px) {

    .nl-wrap {
        width: min(calc(100% - 20px), 1280px);
    }

    .nl-topbar-inner,
    .nl-contact {
        display: block;
    }

    .nl-contact a {
        display: block;
    }

    .nl-brandbar {
        justify-content: center;
        padding: 13px 0;
    }

    .nl-logo img {
        width: 235px;
    }

    .nl-search {
        width: 100%;
        margin: 0 0 10px;
    }

    .nl-search input {
        width: 100%;
    }

    .nl-hero-main {
        min-height: 380px;
    }

    .nl-hero-side {
        grid-template-columns: 1fr;
    }

    .nl-mini-card {
        min-height: 220px;
    }

    .nl-hero-overlay {
        padding: 95px 18px 20px;
    }

    .nl-hero-overlay p {
        display: none;
    }

    .nl-carousel {
        grid-auto-columns: 82%;
    }

    .nl-network-grid,
    .nl-footer-grid {
        grid-template-columns: 1fr;
    }

    .nl-list-item {
        grid-template-columns: 1fr;
    }

    .nl-breaking-track {
        animation-duration: 28s;
    }
}

/* ======================================================
   FINAL VISUAL POLISH — HEADER, BACKGROUND & BOTTOM AD
====================================================== */

:root {
    --nl-page-bg: #f6f5f0;
    --nl-cream: #fbfaf5;
    --nl-gold-soft: #d7aa43;
}

body.nl-site {
    background: var(--nl-page-bg);
}

.nl-header {
    background: var(--nl-white);
}

.nl-header-banner {
    width: 100%;
    overflow: hidden;
    background: #fbfaf5;
    border-bottom: 1px solid rgba(91, 59, 39, 0.14);
}

.nl-header-banner a,
.nl-header-banner img {
    display: block;
    width: 100%;
}

.nl-header-banner img {
    height: auto;
    object-fit: contain;
}

.nl-main {
    background: var(--nl-page-bg);
}

.nl-home {
    padding-top: 28px;
}

.nl-section {
    padding: 24px;
    background: var(--nl-white);
    border: 1px solid rgba(91, 59, 39, 0.08);
    border-radius: var(--nl-radius);
    box-shadow: 0 8px 24px rgba(54, 41, 29, 0.045);
}

.nl-bottom-ad {
    padding: 22px 0 30px;
    background: var(--nl-page-bg);
}

.nl-bottom-ad-link {
    display: block;
    width: 100%;
    padding: 7px;
    overflow: hidden;
    background: linear-gradient(135deg, #fffdf7, #f8f1dc);
    border: 2px solid var(--nl-gold-soft);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(91, 59, 39, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nl-bottom-ad-link:hover,
.nl-bottom-ad-link:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(91, 59, 39, 0.17);
}

.nl-bottom-ad-link img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 190px;
    object-fit: contain;
    background: var(--nl-white);
    border-radius: 9px;
}

.nl-network {
    background: #f1efe7;
    border-top: 1px solid rgba(91, 59, 39, 0.08);
}

@media (max-width: 900px) {
    .nl-section {
        padding: 20px;
    }

    .nl-bottom-ad-link img {
        max-height: 150px;
    }
}

@media (max-width: 600px) {
    .nl-home {
        padding-top: 18px;
    }

    .nl-section {
        padding: 16px 14px;
        margin: 26px 0;
        border-radius: 11px;
    }

    .nl-bottom-ad {
        padding: 14px 0 22px;
    }

    .nl-bottom-ad-link {
        padding: 4px;
        border-width: 2px;
        border-radius: 10px;
    }

    .nl-bottom-ad-link img {
        max-height: 115px;
        border-radius: 6px;
    }
}

/* ======================================================
   JULY 2026 — RESPONSIVE HEADER, FULL AD AND RESTORED FOOTER
====================================================== */

body.nl-site {
    background: #f6f4ed;
}

.nl-header-banner {
    width: 100%;
    overflow: hidden;
    background: #f8f5ec;
}

.nl-header-banner a {
    display: block;
    width: 100%;
}

.nl-header-banner img {
    display: block;
    width: 100%;
    height: clamp(150px, 20vw, 310px);
    max-width: none;
    object-fit: cover;
    object-position: center center;
}

.nl-bottom-ad {
    padding: 44px 0 30px;
    background: #f6f4ed;
}

.nl-bottom-ad-link {
    display: block;
    width: 100%;
    height: clamp(120px, 12vw, 190px);
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #d8a21b;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(91, 59, 39, 0.12);
}

.nl-bottom-ad-link img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    object-position: center;
}

.nl-network {
    padding: 26px 0 34px;
    background: #f2f0e8;
}

.nl-network-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nl-network-grid a,
.nl-network-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #dedfd8;
    border-radius: 12px;
    color: #4b2d1c;
    font-weight: 700;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.nl-network-grid a:hover,
.nl-network-grid a:focus {
    transform: translateY(-2px);
    border-color: #d8a21b;
    box-shadow: 0 8px 20px rgba(91, 59, 39, .10);
}

.nl-footer {
    background: #211d1a;
    color: #ffffff;
}

.nl-footer .nl-footer-grid {
    display: grid !important;
    grid-template-columns: minmax(220px, 1.25fr) minmax(170px, .9fr) minmax(190px, 1fr) minmax(260px, 1.2fr) !important;
    gap: 42px !important;
    align-items: start;
    padding-top: 48px;
    padding-bottom: 42px;
}

.nl-footer-brand,
.nl-footer-column {
    min-width: 0;
}

.nl-footer-brand img {
    display: block;
    width: 190px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.nl-footer-brand p,
.nl-footer-newsletter p {
    color: rgba(255,255,255,.82);
}

.nl-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nl-footer-column h2,
.nl-footer-newsletter h3 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 11px;
    color: #ffffff;
}

.nl-footer-column h2::after,
.nl-footer-newsletter h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: #d8a21b;
}

.nl-footer-column > a {
    margin-bottom: 10px;
    color: rgba(255,255,255,.88);
}

.nl-footer-column > a:hover,
.nl-footer-column > a:focus {
    color: #a7d64f;
}

.nl-footer-social-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.nl-footer-social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.nl-footer-social-facebook { background: #1877f2; }
.nl-footer-social-x { background: #000000; }
.nl-footer-social-youtube { background: #ff0000; }
.nl-footer-social-instagram { background: #e1306c; }
.nl-footer-social-linkedin { background: #0a66c2; }
.nl-footer-social-whatsapp { background: #25d366; }

.nl-footer-newsletter {
    width: 100%;
}

.nl-footer-newsletter h3 {
    font-size: 18px;
}

.nl-footer-newsletter p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
}

.nl-footer-newsletter-form {
    display: flex;
    width: 100%;
}

.nl-footer-newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px 0 0 7px;
    background: rgba(255,255,255,.08);
    color: #ffffff;
}

.nl-footer-newsletter-form button {
    padding: 11px 14px;
    border: 0;
    border-radius: 0 7px 7px 0;
    background: #9b6322;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.nl-copyright {
    padding: 20px 15px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.82);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1050px) {
    .nl-footer .nl-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 760px) {
    .nl-header-banner img {
        height: clamp(130px, 34vw, 210px);
    }

    .nl-bottom-ad {
        padding-top: 28px;
    }

    .nl-bottom-ad-link {
        height: clamp(105px, 26vw, 150px);
        border-radius: 10px;
    }

    .nl-network-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nl-footer .nl-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding-top: 38px;
        padding-bottom: 34px;
    }

    .nl-footer-brand,
    .nl-footer-column {
        align-items: center;
        text-align: center;
    }

    .nl-footer-column h2::after,
    .nl-footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nl-footer-social-inner {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nl-header-banner img {
        height: 135px;
    }

    .nl-network-grid {
        grid-template-columns: 1fr;
    }

    .nl-footer-newsletter-form {
        flex-direction: column;
        gap: 9px;
    }

    .nl-footer-newsletter-form input,
    .nl-footer-newsletter-form button {
        width: 100%;
        border-radius: 7px;
    }
}
