*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mwm-font-primary: 'Gilroy', sans-serif;
    --mwm-color-green: #7D8C4D;
    --mwm-color-beige: #F6F4F0;
    --mwm-color-burdeos: #3D2D36;
    --mwm-color-yellow: #FFB92A;
    --mwm-color-white: #FFF;

    --mwm-sm: 640px;   /* Tablets pequeñas / Smartphones grandes */
    --mwm-md: 768px;   /* Tablets (Retrato) */
    --mwm-lg: 1024px;  /* Tablets (Paisaje) / Laptops pequeñas */
    --mwm-xl: 1280px;  /* Desktops estándar */
    --mwm-2xl: 1536px; /* Monitores grandes */
}

html {
    font-size: 16px;
}

body {
    font-family: var(--mwm-font-primary);
    background-color: var(--mwm-color-beige);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* CONTAINER */
.mwm-container {
    max-width: 95rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* MWM HEADER */
.mwm-header {
    position: relative;
    z-index: 200;
    padding: 1.31rem 0;
    /* background-color: var(--mwm-color-beige); */
}

.mwm-header .mwm-container {
    display: flex;
    align-items: center;
}

.mwm-header__logo {
    width: 9rem;
    flex-shrink: 0;
}

/* MWM NAV */
.mwm-nav {
    display: none;
    margin-left: auto;
}

@media (min-width: 992px) {
    .mwm-nav {
        display: block;
    }
}

.mwm-nav--light {
    color: var(--mwm-color-beige);
}

@media (max-width: 991.98px) {
    .mwm-nav--light {
        color: var(--mwm-color-burdeos);
    }
}

.mwm-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: .5rem;
    flex-wrap: wrap;
}

@media (min-width: 1280px) {
    .mwm-nav__list {
        gap: 3rem;
    }
}

.mwm-nav__link {
    text-decoration: none;
    letter-spacing: -0.03375rem;
    transition: transform 0.2s ease-in;
    display: inline-block;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.62rem;
    line-height: 1.11111;
}

.mwm-nav__item {
    box-shadow: 0 0 0 var(--mwm-color-burdeos) inset;
    transition: box-shadow .2s ease;
}

.mwm-nav__item:hover,
.mwm-nav__item:has(.mwm-nav__link.active) {
    box-shadow: 0 -2px 0 currentColor inset;
}

.mwm-nav__link:hover {
    transform: scale(1.1);
}

/* MWM HEADER MENU */
.mwm-header__menu {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4375rem;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--mwm-color-burdeos);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 200;
}

.mwm-header__menu span {
    display: block;
    width: 1.625rem;
    height: 3px;
    border-radius: 1.5px;
    background-color: currentColor;
    transform-origin: center;
    transition: transform 0.25s ease;
}

.mwm-header__menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(0.3125rem) rotate(45deg);
}

.mwm-header__menu[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-0.3125rem) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
    .mwm-header__menu span {
        transition-duration: 0.01ms;
    }
}

@media (max-width: 991.98px) {
    .mwm-header__menu {
        display: flex;
    }

    .mwm-nav {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 100;
        margin-left: 0;
        padding: 5.5rem 0 2rem;
        overflow-y: auto;
        background-color: var(--mwm-color-beige);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .mwm-header--nav-open .mwm-nav {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .mwm-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .mwm-nav__link {
        display: block;
        padding: 0.85rem 2rem;
        text-align: center;
        font-size: 1.5rem;
    }

    .mwm-nav__item:hover {
        box-shadow: none;
    }

    .mwm-nav__item:hover .mwm-nav__link {
        transform: none;
    }

    .mwm-nav__item:hover .mwm-nav__link {
        color: var(--mwm-color-yellow);
    }
}

@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
    .mwm-nav {
        transition-duration: 0.01ms;
    }
}

/* MWM HERO */
.wmw-l-hero {
    font-size: 1rem;
    padding: 0 1rem;
    padding-bottom: 10rem;
    margin-bottom: 8rem;
}

    
.mwm-l-hero__info {
    padding: 0 4.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .mwm-l-hero__info {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .wmw-l-hero {
        background-image: url(../img/comp.png);
        background-size: 50%;
        /* background-size: contain; */
        background-position: right 3rem center;
        background-repeat: no-repeat;
    }

    .mwm-l-hero__info {
        width: 50%;
    }
}
.mwm-l-hero__info h1 {
    color: var(--mwm-color-burdeos);
    text-align: center;
    font-family: Gilroy;
    font-style: italic;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.0714;
    letter-spacing: -0.13125rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.mwm-l-hero__info p {
    color: var(--mwm-color-burdeos);
    text-align: center;
    font-family: Gilroy;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.05625rem;
    max-width: 31rem;
    margin: 0 auto;
    text-wrap: pretty;
}

.mwm-l-hero__info img {
    max-width: 28rem;
    width: 100%;
}

.mwm-l-hero__illustration {
    width: 60%;
}

/* MWM SECTION */
.mwm-section {
    padding: 5rem 0;
    position: relative;
}

.mwm-section--newsroom p {
    
}

.mwm-section--newsroom p {
    text-wrap: pretty;
}

.mwm-section--newsroom p:first-child {
    margin-top: -11rem;
    max-width: 50rem;
}

.mwm-section--bg {
    position: relative;
}

.mwm-section__bg-decoration {
    position: absolute;
    top: 0;
    height: calc(100% + 3rem);
    right: 0;
    width: 48%;
    object-fit: cover;
    border-radius: 100% 0% 76% 24% / 70% 100% 0% 30%;
    z-index: 15;
}

@media (max-width: 1024px) {
    .mwm-section__bg-decoration {
        display: none;
    }
}

.mwm-section--dark {
    color: var(--mwm-color-beige);
}

.mwm-section--dark .mwm-separator span {
    --mwm-separator-color: var(--mwm-color-beige);
}

.mwm-section__title {
    color: var(--mwm-color-yellow);
    font-family: Gilroy;
    font-size: 2.8125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.11111;
    letter-spacing: -0.1125rem;
    margin-bottom: 3.7rem;
}

@media screen and (max-width: 1024px) {
    .mwm-section__title {
        font-size: 2rem;
    }
}

.mwm-separator {
    --mwm-separator-color: var(--mwm-color-burdeos);
    display: flex;
    gap: 0.81rem;
    margin-bottom: 5rem;
}

.mwm-separator span {
    display: block;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: 2px solid var(--mwm-separator-color);
}

.mwm-separator:not(:has(.active)) span:first-child,
.mwm-separator span.active {
    background-color: var(--mwm-separator-color);
}

.mwm-section--normal p {
    color: var(--mwm-color-burdeos);
    font-family: Gilroy;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.32353;
    letter-spacing: -0.06375rem;
    margin-bottom: 2rem;
    text-wrap: pretty;
}

.mwm-section__info {
    border-top: 3px solid var(--mwm-color-green);
    padding-top: 2rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
}

@media (max-width: 1280px) {
    .mwm-section__info {
        gap: 2rem;
        grid-template-columns: repeat(1, 1fr);
    }
}

.mwm-section__info h3 {
    color: var(--mwm-color-green);

    /* SECCIONES 2 */
    font-family: Gilroy;
    font-size: 2.8125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.11111;
    letter-spacing: -0.1125rem;
}

.mwm-section__info p {
    color: var(--mwm-color-burdeos);
    font-family: Gilroy;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.04688rem;
    text-wrap: pretty;
}

.mwm-section--has-top {
    padding-top: 15rem;
}

.mwm-section__top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

/* MWM GRID */
.mwm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4.5rem;
}

@media (max-width: 1280px) {
    .mwm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .mwm-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* MWM CARD */
.mwm-card:hover .mwm-card__img {
    transform: scale(1.1);
}

.mwm-card__img {
    aspect-ratio: 10/9;
    object-fit: contain;
    object-position: center;
    width: 100%;
    margin-bottom: 1rem;
    transition: transform .2s ease;
}

.mwm-card__title {
    color: var(--mwm-color-beige);
    font-family: Gilroy;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.0625rem;
    margin-bottom: 2.12rem;
}

.mwm-card__label {
    color: var(--mwm-color-beige);
    font-family: Gilroy;
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.11111;
    letter-spacing: -0.045rem;
    margin-bottom: 2rem;
}

.mwm-ac-info-wrapper {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .mwm-ac-info-wrapper {
        flex-direction: column;
    }
}

.mwm-accordion__close {
    color: var(--mwm-color-yellow);

    /* SECCIONES 2 */
    font-family: Gilroy;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.11111;
    letter-spacing: -0.1125rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .mwm-accordion__close {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

.mwm-card__text {
    color: var(--mwm-color-beige);
    font-family: Gilroy;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.27273;
    letter-spacing: -0.055rem;
}

.mwm-card__link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 5.81rem;
    text-decoration: none;
    transition: color .3s ease;
}

.mwm-card__link:hover {
    color: var(--mwm-color-burdeos);
}

/* MWM ABOUT */
.mwm-l-about__content {
    width: calc(50% - 1rem);
}

@media (max-width: 1024px) {
    .mwm-l-about__content {
        width: 100%;
    }

    .mwm-l-about {
        padding-bottom: 30rem;
    }
}

@media (max-width: 768px) {
    .mwm-l-about {
        padding-bottom: 0;
    }
}

.mwm-l-about__content--styled p {
    color: var(--mwm-color-green);

    /* DESTACADOS */
    font-family: Gilroy;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -0.09375rem;
    text-wrap: pretty;
}

@media (max-width: 1024px) {
    .mwm-l-about__content--styled p {
        font-size: 2rem;
    }
}

.mwm-l-about__content--styled .mwm-btn {
    margin-top: 4rem;
}

/* MWM BUTTONS */
.mwm-btn {
    color: var(--mwm-color-beige);
    text-align: center;

    /* BOTONES */
    font-family: Gilroy;
    font-size: 1.4375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 0.86957;
    letter-spacing: -0.0575rem;
    border-radius: 1.25rem;
    background: var(--mwm-color-burdeos);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    padding: 1.125rem;
    text-transform: uppercase;
    transition: color .2s ease, background-color .2s ease;
    border: none;
}

@media (max-width: 1024px) {
    .mwm-btn {
        font-size: 1.2rem;
    }
}

.mwm-btn:hover {
    background-color: var(--mwm-color-beige);
    color: var(--mwm-color-green);
}

/* MWM FOOTER */
.mwm-footer {
    background-color:var(--mwm-color-burdeos);
    color: var(--mwm-color-beige);
    padding-top: 10rem;
    padding-bottom:  3rem;
    z-index: 20;
    position: relative;
}

.mwm-footer__info p:not(:has(.mwm-get-in-touch)) a {
    color: var(--mwm-color-beige);

    /* FOOTER */
    font-family: Gilroy;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.11111;
    letter-spacing: -0.03375rem;
}

.mwm-footer__info p:not(:has(.mwm-get-in-touch)):not(:last-child) {
    margin-bottom: 1.62rem;
}

.mwm-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 8rem;
    gap: 5rem;
}

@media (max-width: 992px) {
    .mwm-footer__links {
        grid-template-columns: repeat(1, 1fr);
    }
}

.mwm-footer__logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.mwm-footer__logos div:first-child {
    width: 100%;
    max-width: 35rem;
}

.mwm-footer__logos div:last-child {
    width: 100%;
    max-width: 20rem;
}

@media (max-width: 992px) {
    .mwm-footer__logos {
        display: block;
    }

    .mwm-footer__logos div:first-child {
        margin-bottom: 2rem;
    }
}

.mwm-footer__navs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .mwm-footer__navs {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
}

.mwm-footer__nav ul li a {
    color: var(--mwm-color-beige);

    /* FOOTER */
    font-family: Gilroy;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.11111;
    letter-spacing: -0.03375rem;
    transition: transform .2s ease, color .2s ease;
    display: inline-block;
    transform-origin: center;
}

.mwm-footer__nav ul li a:hover {
    color: var(--mwm-color-green);
    transform: scaleX(1.1);
}

.mwm-footer__nav ul li:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* MWM GET IN TOUCH */
.mwm-get-in-touch {
    color: var(--mwm-color-beige);
    text-align: center;

    /* SUBT */
    font-family: Gilroy;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05rem;
    text-align: center;
}

p:has(.mwm-get-in-touch) {
    margin-bottom: 3rem;
}

/* MWM L TWOO COLS */
.mwm-l-twoo-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

@media (max-width: 992px) {
    .mwm-l-twoo-cols {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* MWM ACCORDION */
.mwm-accordion {
    /* --mwm-accordion-accent-color: var(--mwm-color-beige); */

    color: var(--mwm-color-beige);
    border-top: 2px solid currentColor;
}

.mwm-accordion__item {
    border-bottom: 2px solid currentColor;
}

.mwm-accordion__trigger {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 2.5rem 0 1.7rem 0;
    cursor: pointer;
    color: inherit;
}

.mwm-accordion__title {

    /* TÍTULOS */
    font-family: Gilroy;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.02273;
    letter-spacing: -0.165rem;
    transform-origin: left;
    transition: color .2s ease, transform .2s ease;
}

@media (max-width: 992px) {
    .mwm-accordion__title {
        font-size: 1.8rem;
    }
}

:not(.mwm-accordion--nested) > .mwm-accordion__item > .mwm-accordion__trigger:hover .mwm-accordion__title {
    transform: translateX(0.5rem);
}

.mwm-accordion__icon {
    font-size: 2rem;
    line-height: 1;
    transition: transform .2s ease;
}

@media (max-width: 992px) {
    .mwm-accordion__icon svg {
        width: 1.8rem;
    }
}

.mwm-accordion--hide-trigger > .mwm-accordion__item.is-open > .mwm-accordion__trigger {
    display: none;
}

.mwm-accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.mwm-accordion__item.is-open > .mwm-accordion__content {
    grid-template-rows: 1fr;
}

.mwm-accordion__content-inner {
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-0.35rem);
    transition: opacity 0.3s ease, transform 0.35s ease;
}

.mwm-accordion__content-wrapper {
    padding: 2rem 0;
}

.mwm-accordion__item.is-open > .mwm-accordion__content > .mwm-accordion__content-inner {
    opacity: 1;
    transform: translateY(0);
}

.mwm-accordion-section:has(.mwm-accordion__item.is-open) .mwm-l-about__content {
    width: 100%;
}

.mwm-accordion-section:has(.mwm-accordion__item.is-open) .mwm-section__bg-decoration {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .mwm-accordion__content,
    .mwm-accordion__content-inner {
        transition: none;
    }
}

/* NESTED ACCORDION */
.mwm-accordion--nested .mwm-accordion__icon {
    display: block;
}

:not(.mwm-accordion--hide-trigger) .mwm-accordion__item.is-open > .mwm-accordion__trigger .mwm-accordion__icon {
    transform: rotate(90deg);
}

/* .mwm-accordion--nested .mwm-accordion__item.is-open > .mwm-accordion__trigger .mwm-accordion__title {
    transform: translateX(0.5rem);
} */

/* MWM ACCORDION PREVIEW */
.mwm-accordion-preview {
    display: none;
    min-height: 48rem;
    align-items: center;
}

.mwm-accordion-section:has(.mwm-accordion__item.is-open) .mwm-accordion-preview {
    display: flex;
}

.mwm-section__image-bottom {
    clip-path: ellipse(100% 100% at 100% 100%);
    width: 50%;
    aspect-ratio: 1;
    max-width: 50rem;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .mwm-section__image-bottom {
        width: 30rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mwm-section__image-bottom {
        display: none;
    }
}

.mwm-accordion-preview__text {
    color: var(--mwm-color-burdeos);

    /* DESTACADOS */
    font-family: Gilroy;
    font-size: 3.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -0.09375rem;
    max-width: 30rem;
    text-wrap: pretty;
}

/* Our Values: solo textos inferiores; todos ocultos hasta abrir la pestaña principal correspondiente */
.mwm-our-values .mwm-accordion-preview__content.mwm-our-values__preview-pane {
    display: none;
}

.mwm-our-values:has(.mwm-l-about__content > .mwm-accordion--hide-trigger:not(.mwm-accordion--nested) > .mwm-accordion__item:nth-child(1).is-open) .mwm-our-values__preview-pane--mission {
    display: flex;
}

.mwm-our-values:has(.mwm-l-about__content > .mwm-accordion--hide-trigger:not(.mwm-accordion--nested) > .mwm-accordion__item:nth-child(2).is-open) .mwm-our-values__preview-pane--footprint {
    display: flex;
}

.mwm-our-values:has(.mwm-l-about__content > .mwm-accordion--hide-trigger:not(.mwm-accordion--nested) > .mwm-accordion__item:nth-child(3).is-open) .mwm-our-values__preview-pane--leadership {
    display: flex;
}

/* MWM ACCORDION INFO */
.mwm-ac-info {
    max-width: 65rem;
    margin-left: auto;
}

/* ACCORDION MISSION CONTENTQ */
.mwm-mission-content {
    padding: 5rem 0;
}

@media (max-width: 992px) {
    .mwm-mission-content {
        padding: 0;
    }
}

.mwm-mission-content p {
    color: var(--mwm-color-beige);

    /* DESTACADOS */
    font-family: Gilroy;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -0.09375rem;
}

.mwm-mission-content__title {
    color: var(--mwm-color-beige);

    font-family: Gilroy;
    font-size: 1.4375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 86.957%;
    letter-spacing: -0.0575rem;
    margin-bottom: 3rem;
}

/* ACCORDION GLOBAL FOOTPRINT CONTENT */
.mwm-global-footprint-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    padding: 5rem 0;
    align-items: start;
}

@media (max-width: 992px) {
    .mwm-global-footprint-content {
        gap: 2rem;
        padding: 0 0 2rem 0;
    }
}

@media (max-width: 640px) {
    .mwm-global-footprint-content {
        grid-template-columns: repeat(1, 1fr);
    }
}

.mwm-global-footprint-content__textbox {
    max-width: 15rem;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.mwm-global-footprint-content__textbox p {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem; /* 125% */
    letter-spacing: -0.03rem;
    margin-bottom: 1.5rem;
}

.mwm-accordion--global-footprint .mwm-accordion__title {
    transition: font-size .2s ease;
}

.mwm-accordion--global-footprint .mwm-accordion__item.is-open .mwm-accordion__title {
    font-size: 2.5rem;
}

.mwm-accordion--leadership .mwm-accordion__title {
    transition: font-size .2s ease;
}

/* .mwm-accordion--leadership .mwm-accordion__item.is-open .mwm-accordion__title {
    font-size: 2.5rem;
} */

/* NESTED ACCORDION */
.mwm-accordion--nested {
    border-top: 2px solid var(--mwm-color-beige);
}

.mwm-accordion--nested .mwm-accordion__item {
    border-bottom-width: 2px;
}

.mwm-accordion--nested .mwm-accordion__trigger {
    padding: 1.25rem 0 0.75rem 0;
}

.mwm-accordion--nested .mwm-accordion__title {
    font-size: 1.25rem;
    letter-spacing: -0.03rem;
}

.mwm-accordion--nested .mwm-accordion__close {
    font-size: 1.5rem;
    letter-spacing: -0.05rem;
}

.mwm-accordion--nested .mwm-accordion__content-wrapper {
    padding: 1rem 0 1.5rem 0;
}

.mwm-accordion--nested .mwm-ac-info {
    width: 100%;
    margin-left: 0;
}

.mwm-accordion--nested .mwm-accordion__text {
    color: var(--mwm-color-beige);
    font-family: Gilroy;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.02rem;
    margin: 0;
}

/* MWM LEADERSHIP (nested accordion) */
.mwm-leadership-accordion {
    padding: 5rem 0;
}

@media (max-width: 992px) {
    .mwm-leadership-accordion {
        padding: 0 0 2rem 0;
    }
}

.mwm-leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    padding: 2rem 0 5rem 0;
}

@media screen and (max-width: 1280px) {
    .mwm-leadership-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 992px) {
    .mwm-leadership-grid {
        grid-template-columns: 1fr;
    }
}

.mwm-leadership__img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4/5;
    margin-bottom: 3rem;
}

.mwm-leadership__name {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 2.1875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.375rem; /* 108.571% */
    letter-spacing: -0.0875rem;
    margin-bottom: 2rem;
}

.mwm-leadership__title {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.5625rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.25rem; /* 80% */
    letter-spacing: -0.04688rem;
    margin-bottom: 2rem;
}

.mwm-leadership__text {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem; /* 125% */
    letter-spacing: -0.03rem;
}

.mwm-leadership__text-story {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: 116.667%;
    letter-spacing: -0.075rem;
    text-wrap: pretty;
}

/* MWM HERO */
.mwm-hero {
    position: relative;
}

.mwm-hero > .mwm-container {
    min-height: 45rem;
    padding-top: 1rem;
}

@media screen and (max-width: 992px) {
    .mwm-hero > .mwm-container {
        min-height: 23rem;
    }
}

@media screen and (max-width: 567px) {
    .mwm-hero > .mwm-container {
        min-height: auto;
        padding-bottom: 10rem;
    }
}

.mwm-hero__content {
    width: calc(100% - 45rem);
}

@media screen and (max-width: 1280px) {
    .mwm-hero__content {
        width: 100%;
    }
}

.mwm-hero__bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52vw;
    max-width: 54rem;
    height: 100%;
    object-fit: cover;
   
    /* Aplicamos la máscara al 100% */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,100 L0,100 A100,100 0 0 1 100,0 Z' fill='black' /%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,100 L0,100 A100,100 0 0 1 100,0 Z' fill='black' /%3E%3C/svg%3E");

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

@media screen and (max-width: 1280px) {
    .mwm-hero__bg {
        width: auto;
        max-width: 100%;
        height: 33rem;
    }
}

@media screen and (max-width: 576px) {
    .mwm-hero__bg {
        display: none;
    }
}

.mwm-hero__newsroom-image {
    position: absolute;
    bottom: -13rem;
    right: 0;
    width: 45%;
    height: 70rem;
    object-fit: cover;

    /* Aplicamos la silueta como máscara */
    -webkit-mask-image: url('../img/mask.svg');
    mask-image: url('../img/mask.svg');
    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    
    /* Importante: posicionar a la derecha para que el corte recto pegue al borde */
    -webkit-mask-position: right;
    mask-position: right;
    
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.mwm-hero__title {
    color: var(--mwm-color-green, #7D8C4D);
    font-family: Gilroy;
    font-size: 6rem;
    font-style: italic;
    font-weight: 400;
    line-height: 107.692%;
    letter-spacing: -0.24375rem;
}

@media screen and (max-width: 1280px) {
    .mwm-hero__title {
        text-align: center;
        font-size: 4rem;
    }
}

@media screen and (max-width: 992px) {
    .mwm-hero__title {
        font-size: 3rem;
    }
}

.mwm-hero__title-newsroom {
}

.mwm-hero__title-2 {
    color: var(--mwm-color-burdeos, #3D2D36);
    font-family: Gilroy;
    font-size: 5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 112.5%;
    letter-spacing: -0.15rem;
}

@media screen and (max-width: 1280px) {
    .mwm-hero__title-2 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 992px) {
    .mwm-hero__title-2 {
        font-size: 3rem;
    }
}

.mwm-hero__description {
    color: var(--mwm-color-green, #7D8C4D);
    font-family: Gilroy;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 133.333%;
    letter-spacing: -0.05625rem;
    max-width: 25rem;
    margin-left: auto;
    margin-right: 6rem;
    margin-top: 5rem;
    margin-bottom: 10rem;
}

@media screen and (max-width: 1280px) {
    .mwm-hero__description {
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 992px) {
    .mwm-hero__description {
        width: 100%;
        max-width: 100%;
    }

    .mwm-hero {
        padding-bottom: 25rem;
    }
}

@media screen and (max-width: 576px) {
    .mwm-hero {
        padding-bottom: 0 !important;
    }

    .mwm-hero__description {
        margin-bottom: 0;
    }
}

.mwm-hero__description-newsroom {
    
}

.mwm-hero__content:has(.mwm-hero__description) {
    padding: 1px;
}

.mwm-hero__subtitle {
    color: var(--mwm-color-yellow, #FFB92A);

    font-family: Gilroy;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
    letter-spacing: -0.1125rem;
    margin-bottom: 5rem;
}

@media screen and (max-width: 992px) {
    .mwm-hero__subtitle {
        font-size: 2rem;
    }
}

/* MWM NEWSROOM */
.mwm-newsroom-section--contact .mwm-newsroom__item:first-child {
    border-top: none !important;
}

.mwm-newsroom-section--contact .mwm-newsroom__item {
    padding: 0;
    padding-bottom: 5rem;
    margin-bottom: 5rem;
}

.mwm-newsroom__item {
    display: grid;
    grid-template-columns: 20rem 1fr;
    border-bottom: 2px solid var(--mwm-color-beige);
    padding: 5rem 0;
}

@media screen and (max-width: 1280px) {
    .mwm-newsroom__item {
        grid-template-columns: 1fr;
    }
}

.mwm-newsroom-item--contact {
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 992px) {
    .mwm-newsroom-item--contact {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
}

.mwm-newsroom__item:first-child {
    border-top: 2px solid var(--mwm-color-beige);
}

.mwm-newsroom__title {
    color: var(--mwm-color-yellow, #FFB92A);

    /* SECCIONES 2 */
    font-family: Gilroy;
    font-size: 2.8125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
    letter-spacing: -0.1125rem;
    margin-bottom: 2rem;
}

.mwm-newsroom__title-2 {
    color: var(--mwm-color-burdeos, #3D2D36);
    font-family: Gilroy;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 225%;
    letter-spacing: -0.075rem;
}

.mwm-newsroom__content-title {
    color: var(--mwm-color-beige, #F6F4F0);

    /* BOTONES */
    font-family: Gilroy;
    font-size: 1.4375rem;
    font-style: normal;
    font-weight: 400;
    line-height: 86.957%;
    letter-spacing: -0.0575rem;
    margin: 1.1rem 0px 2.9rem;
}

.mwm-newsroom-latest__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 6rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 2px solid var(--mwm-color-beige);
}

@media screen and (max-width: 992px) {
    .mwm-newsroom-latest__item {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .mwm-newsroom-latest__item-image {
        width: 100% !important;
    }
}

.mwm-newsroom-latest__item:first-child {
    border-top: 2px solid var(--mwm-color-beige);
}

.mwm-newsroom-latest__item-image {
    width: 15rem;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
}

.mwm-newsroom-latest__item-content p {
    color: var(--mwm-color-white, #FFF);

    /* TEXTO PPAL */
    font-family: Gilroy;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%;
    letter-spacing: -0.05625rem;
}

/* MWM NEWSROOM NAVIGATION */
.mwm-newsroom-latest__navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3rem;
    gap: 1.5rem;
}

.mwm-newsroom-latest__navigation-link {
    color: var(--mwm-color-beige);
    text-align: center;
    font-family: Gilroy;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 166.667%;
    letter-spacing: -0.075rem;
    display: inline-block;
    width: 2.5rem;
    border-radius: 0.9375rem;
    border: 2px solid var(--mwm-color-beige);
}

.mwm-newsroom-latest__navigation-link:hover,
.mwm-newsroom-latest__navigation-link.active {
    background: var(--mwm-color-beige);
    color: var(--mwm-color-burdeos);
}

/* MWM WHO ARE */
.mwm-who-are__item {
    padding: 4rem 5rem;
    border-bottom: 2px solid var(--mwm-color-beige);
}

@media screen and (max-width: 1024px) {
    .mwm-who-are__item {
        padding: 2rem 0;
    }
}

.mwm-who-are__item:first-child {
    border-top: 2px solid var(--mwm-color-beige);
}

.mwm-who-are__item:last-child {
    margin-bottom: 5rem;
}

.mwm-who-are__image {
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .mwm-who-are__image {
        order: -1;
    }
}

.mwm-who-are__image img {
    width: 30rem;
}

@media screen and (max-width: 1024px) {
    .mwm-who-are__image img,
    .mwm-who-are__image {
        width: 100%;
    }
}

.mwm-who-are__title {
    color: var(--mwm-color-beige, #F6F4F0);
    margin-bottom: 2rem;

    /* SECCIONES */
    font-family: Gilroy;
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -0.135rem;
}

@media screen and (max-width: 1024px) {
    .mwm-who-are__title {
        font-size: 2rem;
    }
}

.mwm-who-are__button {
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-family: Gilroy;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 66.667%;
    letter-spacing: -0.075rem;
    border-radius: 0.9375rem;
    background: var(--mwm-color-burdeos);
    display: inline-block;
    padding: 1rem 1.5rem;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
}

.mwm-who-are__layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

@media screen and (max-width: 1024px) {
    .mwm-who-are__layout {
        flex-direction: column;
    }
}

.mwm-who-are__content {
    max-width: 50rem;
}

.mwm-who-are__content p {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 128.571%;
    letter-spacing: -0.06563rem;
    margin-bottom: 4rem;
}

@media screen and (max-width: 1024px) {
    .mwm-who-are__content p {
        font-size: 1.6rem;
    }
}

/* MWM MAP IMAGE */
.mwm-map {
    width: 100%;
}

.mwm-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-position: center;
    border: 2px solid var(--mwm-color-beige);
}

.mwm-map-marker {
    position: absolute;
    width: 7%;
    height: auto;
}

.mwm-map-marker--ag-olives {
    top: 63.1%;
    left: 68.2%;
    transform: translate(-50%, -50%);
}

.mwm-map-marker--pere-olive {
    top: 44%;
    left: 77.4%;
    transform: translate(-50%, -50%);
}

.mwm-map-marker--parthenon {
    top: 56.2%;
    left: 83.8%;
    transform: translate(-50%, -50%);
}

.mwm-map-marker--bell-carter {
    top: 44.2%;
    left: 7.7%;
    transform: translate(-50%, -50%);
}

.mwm-map-wrapper {
    position: relative;
}

/* MWM INFO GRID */
.mwm-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

@media screen and (max-width: 1280px) {
    .mwm-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .mwm-info-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.mwm-info-grid__title {
    color: var(--mwm-color-yellow);
    font-family: Gilroy;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 225%;
    letter-spacing: -0.075rem;
    text-transform: uppercase;
}

.mwm-info-grid__subtitle {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 126.667%;
    letter-spacing: -0.075rem;
    margin-bottom: .5rem;
}

.mwm-info-grid__contact {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.0375rem;
    margin-bottom: 3rem;
}

/* MWM LOCATIONS */
.mwm-locations__title {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem; /* 100% */
    letter-spacing: -0.0375rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.mwm-locations__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mwm-location__name {
    font-family: Gilroy;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.0375rem;
    color: var(--mwm-color-beige, #F6F4F0);
    margin-bottom: 1rem;
}

.mwm-locations__list p {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem; /* 125% */
    letter-spacing: -0.03rem;
}

.mwm-locations__list li:not(:last-child) {
    margin-bottom: 4rem;
}

/* MWM SECTION GRID */
.mwm-section-grid {
    display: grid;
    grid-template-columns: 20rem 1fr 1fr;
    column-gap: 5rem;
    margin-bottom: 5rem;
}

@media screen and (max-width: 1280px) {
    .mwm-section-grid {
        margin-bottom: 0;
        column-gap: 3rem;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .mwm-section-grid__item:first-child,
    .mwm-section-grid__item:has(img):has(p),
    .mwm-section-grid__item:has(.mwm-accordion) {
        grid-column: span 4 !important;
    }

    .mwm-section-grid__item:not(:first-child) {
        grid-column: span 2;
    }
}

@media screen and (max-width: 992px) {
    .mwm-section-grid__item {
        grid-column: span 4 !important;
    }

    /* .mwm-section-grid__item:has(img):not(:has(p)) {
        display: none;
    } */
}

.mwm-section-grid__wrapper {
    padding: 5rem 0;
}

.mwm-section-grid__wrapper:has(.mwm-section-grid__image) {
    padding: 10rem 0;
}

@media screen and (max-width: 992px) {
    .mwm-section-grid__wrapper:has(.mwm-section-grid__image) {
        padding: 0 !important;
    }
}

.mwm-section-grid .mwm-section__title {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.mwm-section-grid__item  p {
    color: var(--mwm-color-burdeos, #3D2D36);
    font-family: Gilroy;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 116.667%;
    letter-spacing: -0.1125rem;
    text-wrap: pretty;
}

@media screen and (max-width: 1024px) {
    .mwm-section-grid__item p {
        font-size: 2rem;
    }
}

.mwm-section-grid__item .mwm-accordion {
    margin-top: 4rem;
}

.mwm-section-grid__image {
    position: absolute;
    bottom: -2rem;
    right: 0;
    width: 30rem;
    height: 50rem;
    object-fit: cover;

    /* Aplicamos la silueta como máscara */
    -webkit-mask-image: url('../img/mask.svg');
    mask-image: url('../img/mask.svg');
    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    
    /* Importante: posicionar a la derecha para que el corte recto pegue al borde */
    -webkit-mask-position: right;
    mask-position: right;
    
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

@media screen and (max-width: 992px) {
    .mwm-section-grid__image {
        position: static;
        width: 100%;
        mask-image: none;
        aspect-ratio: 16/9;
        object-fit: cover;
        height: auto;
        margin-top: 3rem;
    }
}

.mwm-section-grid__image-2 {
    transform: scale(1.2);
    transform-origin: top right;
}

@media screen and (max-width: 1280px) {
    .mwm-section-grid__image-2 {
        transform: scale(1);
    }
}

.mwm-section-grid__image-3 {
    transform: scale(1.1);
    margin-top: 10rem;
}

.mwm-section-grid__image-4 {
    max-width: 35rem;
    margin: 0 auto 0;
    display: block;
    position: relative;
    top: 5rem;
    width: 100%;
}

.mwm-section-grid__item--full {
    grid-column: span 2;
}

/* MWM COMMUNITY LIST */
.mwm-community-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 30rem;
    width: 100%;
    margin-left: auto;
    margin-bottom: 2rem;
}

.mwm-community-list__item:not(:last-child) {
    border-bottom: 2px solid var(--mwm-color-green);
}

.mwm-community-list__item a {
    font-family: Gilroy;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 50%;
    letter-spacing: -0.1rem;
    padding: 1.8rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mwm-community-list__item a svg {
    transition: transform .2s ease;
}

.mwm-community-list__item a:hover svg {
    transform: rotate(-45deg);
}

/* MWM FORM */
.mwm-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1rem;
    column-gap: 2rem;
}

.mwm-form__group--full {
    grid-column: span 2;
}

@media screen and (max-width: 768px) {
    .mwm-form__group {
        grid-column: span 2;
    }
}

.mwm-form__group input,
.mwm-form__group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid var(--mwm-color-beige);
    margin-bottom: 1rem;
    font-family: Gilroy;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    background-color: transparent;
    color: var(--mwm-color-beige);
}

.mwm-form__group label {
    display: block;
    color: var(--Beige, #F6F4F0);

    /* SUBT */
    font-family: Gilroy;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05rem;
}

.mwm-form__group input:focus,
.mwm-form__group textarea:focus {
    outline: none;
}

.mwm-form button {
    background-color: transparent;
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05rem;
    border: none;
    display: inline-block;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* CONTACT LIST */
.mwm-contact-list {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.04688rem;
}

/* MWM NEWSROOM TOP */
.mwm-nesroom-top {
    min-height: 70rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mwm-nesroom-top > .mwm-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mwm-nesroom-top__subtitle {
    color: var(--mwm-color-yellow, #FFB92A);

    font-family: Gilroy;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 111.111%;
    letter-spacing: -0.1125rem;
    margin-bottom: 5rem;
}

.mwm-nesroom-top__description-newsroom {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.08438rem;
    margin-bottom: 3.5rem;
}

.mwm-nesroom-top__title-newsroom {
    color: var(--mwm-color-beige, #F6F4F0);
    font-family: Gilroy;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 109.091%;
    letter-spacing: -0.20625rem;
    margin-bottom: 4rem;
}

.mwm-nesroom-top__image {
    position: absolute;
    right: 0;
    top: 8rem;
    width:40rem;
    height: 60rem;
    object-fit: cover;

    /* Aplicamos la silueta como máscara */
    -webkit-mask-image: url('../img/mask.svg');
    mask-image: url('../img/mask.svg');
    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    
    /* Importante: posicionar a la derecha para que el corte recto pegue al borde */
    -webkit-mask-position: right;
    mask-position: right;
    
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.mwm-nesroom-top__separator {
    float: right;
    width: 40rem;
    height: 45rem;
}

@media screen and (max-width: 1280px) {
    .mwm-nesroom-top__image {
        width: 30rem;
        height: 50rem;
    }

    .mwm-nesroom-top__separator {
        float: right;
        width: 30rem;
        height: 38rem;
    }
}

@media screen and (max-width: 992px) {
    .mwm-nesroom-top__separator {
        display: none;
    }

    .mwm-nesroom-top__image {
        position: static;
        
        mask-image: none;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        order: -1;
    }
}

/* MWM UTILITIES */
.bg-green,
.mwm-bg-green {
    background-color: var(--mwm-color-green) !important;
}

.bg-beige {
    background-color: var(--mwm-color-beige) !important;
}

.mwm-text-green {
    color: var(--mwm-color-green) !important;
}

.mwm-p-0 {
    padding: 0 !important;
}

.mwm-text-right {
    text-align: right;
}