* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}


h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}
.h1--details {
    margin-bottom: 15px;
}

@font-face {
    font-family: 'Inter';
    src: url("../fonts/inter/Inter-VariableFont_opsz,wght-g67Lfz9.ttf") format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'InterItalic';
    src: url("../fonts/inter/Inter-Italic-VariableFont_opsz,wght-6sdnif-.ttf") format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-primary);
    background-color: var(--color-secondary);
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    margin-bottom: 50px;
}

.hidden {
    display: none;
}

.container {
    width: 80%;
    max-width: 1300px;
    margin: auto;
}

.container--medium {
    max-width: 800px;
}


.container--small {
    max-width: 500px;
}

a {
    text-decoration: unset;
    color: inherit;
    cursor: pointer;
}

button {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
}

button:hover,
button:focus {
    outline: none;
}

header {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.header__nav {
    display: flex;
    gap: 40px;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.header__nav .active {
    font-weight: bold;
}

.header__right {
    display: flex;
    align-items: center;
}

.header__locale {
    position: relative;
}

.header__locale-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    margin-left: 16px;
    margin-right: 40px;
    border: 1px solid black;
    border-radius: 50px;
    background: white;
    color: black;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.header__locale-chevron {
    transition: transform 0.2s;
}

.header__locale-btn[aria-expanded="true"] .header__locale-chevron {
    transform: rotate(180deg);
}

.header__locale-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    z-index: 100;
}

.header__locale-dropdown[aria-hidden="false"] {
    display: block;
}

.header__locale-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    list-style: none;
}

.header__locale-option:hover {
    background: color-mix(in srgb, var(--color-tertiary), white);
}

.header__locale-option.is-selected {
    background: color-mix(in srgb, var(--color-tertiary), white);
}

.header__locale-check {
    margin-left: auto;
}

.header__profile {
    border: 1px solid black;
    padding: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 50px;
}

footer {
    background-color: var(--color-primary);
    color: white;
    padding: 56px 0;
    margin-top: auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    border-bottom: 1px solid white;
    padding-bottom: 40px;
}

.footer__communications {
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: bold;
}

.footer__discover {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 24px;
}

.footer__bottom-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.footer__bottom-col:last-child {
    align-items: flex-end;
    text-align: right;
}

.footer__nav {
    display: flex;
    gap: 32px;
}

.footer__glueglue {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
}

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 10002;
    background-color: white;
    padding: 5px;
    border-radius: 16px;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.15);
}

.whatsapp__image {
    height: 40px;
    width: 40px;
}

/*@homepage*/

.hero, .details__hero {
    height: clamp(320px, 45vw, 500px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 24px;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.47) 100%);
}

.hero__discover {
    position: absolute;
    bottom: 10%;
    left: 4%;
    color: white;
    z-index: 1;
}

.hero__search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 6px;
    padding: 10px 16px;
    gap: 8px;
    color: var(--color-primary);
    margin-top: 12px;
    max-width: 90%;
}

.hero__search-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.hero__search-input {
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    width: 100%;
}

.back {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    font-size: 1.2rem;
}


/*@empty-state*/

.empty-state {
    background: white;
    border-radius: 24px;
    padding: 24px;
    max-width: 480px;
    margin: 64px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.empty-state__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 4px;
}

.empty-state__title {
    font-weight: bold;
    font-size: 1.1rem;
}

/*@sections*/

.section {
    margin-top: 48px;
}

.section--my-lake:first-child {
    margin-top: 0;
}

.section__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.section__row {
    display: flex;
    gap: 18px;
    margin-top: 32px;
}

.section__row .card {
    max-width: calc((100% - 36px) / 3);
}

/*@details*/

.details__tags {
    display: flex;
    gap: 6px;
    position: absolute;
    top: 5%;
    left: 3%;
    z-index: 1;
}

.details__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    margin-top: 30px;
    text-align: center;
}

.details__time {
    display: flex;
    gap: 12px;
    margin: 0 0 32px 0;
}

.details__buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 24px;
}

.details__buttons .button {
    flex: 1;
    max-width: 50%;
}

.details__box{
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.15);
    margin-top: 32px;
}

.details__h2 {
    font-size: 1.5rem;
}

.details__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.details__gallery-image {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    height: 200px;
}

/*@card*/

.card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
    flex: 1;
}

.card__image-wrapper {
    position: relative;
}

.card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card__chips {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.card__body {
    padding: 16px;
}

.card__name {
    font-weight: bold;
    margin-bottom: 8px;
}

.card__name--big {
    font-size: 1.7rem;
}

.card__date {
    font-size: 0.9rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

/*@booking*/

.my-booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.booking-card {
    background-color: var(--color-tertiary);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.booking-card__title {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.booking-card__dates {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 16px;
    border-radius: 16px;
}

.booking-card__nights {
    text-align: center;
}

.booking-card__check-out {
    text-align: right;
}

.booking-card__check-in, .booking-card__nights, .booking-card__check-out {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-card__icon {
    height: 24px;
}

.booking-card__info {
    background-color: white;
    padding: 16px;
    border-radius: 16px;
}

.booking-card__info-body {
    display: flex;
    gap: 24px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.booking-card__detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

/*@newsletter-modal*/

.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.3s;
}

.newsletter-modal[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.newsletter-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.15s;
}

.newsletter-modal[aria-hidden="false"] .newsletter-modal__backdrop {
    opacity: 1;
}

.newsletter-modal__content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 660px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s, transform 0.3s;
}

.newsletter-modal[aria-hidden="false"] .newsletter-modal__content {
    opacity: 1;
    transform: scale(1);
}

.newsletter-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    cursor: pointer;
    z-index: 1;
    background: none;
    border: none;
}

/*@filters-modal*/

.filters-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filters-modal[aria-hidden="true"] {
    display: none;
}

.filters-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.filters-modal__content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
}

/*@drawer*/

.drawer {
    position: fixed;
    inset: 0;
    z-index: 10006;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.3s;
}

.drawer[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.drawer__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-radius: 32px;
    padding: 24px;
}

.drawer[aria-hidden="false"] .drawer__content {
    transform: translateX(0);
}

.drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-secondary);
}

.js-mobile-menu-drawer .drawer__header {
    justify-content: flex-end;
}

.drawer__title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.drawer__close {
    cursor: pointer;
    background: none;
    border: none;
}

.drawer__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
}

.drawer__link {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
    color: black;
}

.drawer__link.active {
    font-weight: bold;
}

.drawer__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    border-top: 1px solid var(--color-secondary);
}

.js-mobile-menu-drawer .header__locale-btn {
    margin-right: 0;
}

.js-mobile-menu-drawer .header__locale-dropdown {
    top: calc(100% - 20px);
}

/*@newsletter & filters*/

.newsletter, .filters {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.15);
}

.newsletter--details {
    margin: 32px 0;
    width: 100%;
    text-align: left;
}

.newsletter__title {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.newsletter__subtitle {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.newsletter__dates {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    width: 85%;
    padding-right: 12px;
}

.filters__dates {
    border-top: 1px solid #eee;
    padding-top: 24px;
    display: flex;
    gap: 24px;
    margin: 24px 0 16px;
    padding-right: 12px;
}

.newsletter__field, .filters__field {
    flex: 1;
    min-width: 0;
}

.newsletter__label, .filters__label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.newsletter__input-wrapper, .filters__input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-primary);
    border-radius: 6px;
    padding: 12px 16px;
    gap: 12px;
    background: white;
}

.newsletter__input-wrapper--email {
    flex: 1;
    border-radius: 6px;
}

.newsletter__input, .filters__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    /*color: var(--color-primary);*/
}

.newsletter__input::placeholder, .filters__input::placeholder {
    color: #aaa;
}

.newsletter__icon, .filters__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.newsletter__email-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter__privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.newsletter__checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.title-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filters-trigger {
    background-color: white;
    border: 1px solid black;
    display: flex;
    gap: 4px;
    font-weight: bold;
    border-radius: 40px;
    font-size: 0.9rem;
    padding: 2px 8px;
    align-items: center;
    cursor: pointer;
    color: black;
}

.filters-trigger-active {
    border: 2px solid black;
}

.filters-active {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.filters-active .chip, .filters__tags .chip {
    padding: 8px 16px;
}

.filters-count {
    background-color: black;
    color: white;
    font-weight: normal;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filters__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-secondary);
    font-size: 1.2rem;
    font-weight: bold;
}

.filters__tags {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 8px;
    margin-top: 24px;
}

.filters__tag {
    position: relative;
    cursor: pointer;
}

.filters__tag-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filters__tag-checkbox:checked + .chip {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.filters__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-secondary);
}

.filters__actions .button--full {
    width: auto;
    flex: 1;
}

/*@auth*/

.auth__video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.auth__logo {
    background-color: white;
    position: fixed;
    top: 5%;
    left: 5%;
    height: 66px;
    width: 66px;
    padding: 10px;
    border-radius: 300px;
}

.auth__form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--color-primary);
    width: 100%;
    padding: 24px;
    border-radius: 24px;
}

.auth__form-h2 {
    font-size: 1.4rem;
    margin-top: 10px;
}

.auth__form-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.auth__form-label--disabled .auth__form-input {
    background-color: #E5E7EB;
    color: #9CA3AF;
    border: unset;
}

.auth__form-input {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    font-size: inherit;
    outline: none;
    color: var(--color-primary);
    box-sizing: border-box;
    width: 100%;
}

.auth__form-bottom {
    text-align: center;
    margin-top: 30px;
}

.auth__form-forgot {
    margin-top: 10px;
}

.auth__form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.auth__form-checkbox {
    accent-color: var(--color-primary);
    width: 22px;
    height: 22px;
}

.auth__form-noreceived {
    margin: 30px 0;
}

.auth__form-timer {
    font-size: 0.85rem;
    margin-top: 8px;
    opacity: 0.6;
}

.auth__form-feedback {
    margin-top: 8px;
    font-size: 0.9rem;
}

.auth__form-feedback--success {
    color: green;
}

.auth__form-feedback--error {
    color: red;
}

/*@personal info*/

.personal-info__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
}

.personal-info__title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: -12px;
}

.personal-info__row .auth__form-label {
    width: 100%;
    max-width: 450px;
    margin-top: 0;
}

.personal-info__footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

/*@button & others*/

.button {
    background-color: var(--color-primary);
    color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 12px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

.button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.button--white {
    background-color: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.button--full {
    width: 100%;
    justify-content: center;
}

.button--newsletter {
    width: 15%;
}

.button--auth {
    margin-top: 30px;
}

.button--personal-info {
    margin-top: 24px;
    width: 223px;
}

.button--see-all {
    padding: 15px 30px;
}

.chip {
    background-color: var(--color-tertiary);
    border-radius: 40px;
    font-size: 0.9rem;
    padding: 2px 8px;
    width: fit-content;
}

.chip--primary {
    background-color: var(--color-primary);
    color: white;
}

.chip--outline {
    background-color: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.chip--large {
    font-size: 1.1rem;
    padding: 3px 12px;
    border-radius: 60px;
}

.subtitle {
    opacity: 0.7;
    margin-top: 8px;
}

.underlined {
    text-decoration: underline;
}

/*@sweetalert2*/

/* SweetAlert2 locks body scroll while a popup is open and compensates for the
   disappearing scrollbar with an inline padding-right, which shifts the whole
   page layout; !important overrides that inline style. */
body {
    padding-right: 0 !important;
}

.swal2-popup {
    border-radius: 24px;
    padding: 24px;
    font-family: inherit;
    font-size: inherit;
    background: #fff !important;
    color: var(--color-primary) !important;
    width: 90%;
    max-width: 360px;
}

.swal2-close {
    color: var(--color-primary) !important;
    top: 20%;
    margin-bottom: unset;
}

.swal2-icon {
    margin: 0 auto 24px;
}

.swal2-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    padding: 0 32px;
}

.swal2-html-container {
    margin: 0 0 24px;
    padding: 0;
    font-size: 1rem;
    text-align: center;
}

.swal-errors {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
    margin: 0;
}

.swal-errors li {
    margin-bottom: 4px;
}

.swal-errors li:last-child {
    margin-bottom: 0;
}

.swal2-actions {
    margin: 0;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.swal2-confirm {
    background-color: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px !important;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
}

.swal2-cancel {
    background-color: white !important;
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
}

.swal2-styled:hover,
.swal2-styled:focus {
    background-image: none !important;
    box-shadow: none !important;
}





















@media all and (max-width: 1200px) {

    .container {
        width: 90%;
        max-width: 1100px;
        margin: auto;
    }

    .header__nav {
        display: none;
    }

    .header__right {
        display: none;
    }

    .header__burger {
        display: flex;
        align-items: center;
    }

    .container--none {
        width: unset;
        max-width: unset;
        margin: unset;
    }

    h1, h2 {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .section__row {
        overflow: scroll;
        padding: 0 5%;
        scrollbar-width: none;
        margin-top: 16px;
    }

    .card {
        min-width: 318px;
    }

    .section__row .card {
        max-width: none;
    }

    .card__image {
        height: 130px;
    }

    .cards-grid {
        grid-template-columns: unset;
    }

    .my-booking__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }

    .details__body {
        margin-top: 30px;
    }

    .personal-info__row {
        flex-direction: column;
    }

    .footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .footer__communications {
        font-size: 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 40px;
        padding-right: 5%;
    }

    .footer__bottom-col {
        gap: 24px;
    }

    .footer__bottom-col:last-child {
        align-items: unset;
        text-align: unset;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 24px;
    }

    .newsletter__dates {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter__email-row {
        flex-direction: column;
    }
}
