.marova-core-areas {
    --marova-core-navy: #0B033D;
    --marova-core-blue: #1D1DD9;
    --marova-core-muted: #646464;
    --marova-core-tabs-per-row: 5;
    color: var(--marova-core-navy);
}

.marova-core-areas *,
.marova-core-areas *::before,
.marova-core-areas *::after {
    box-sizing: border-box;
}

.marova-core-areas__tabs {
    display: grid;
    grid-template-columns: repeat(var(--marova-core-tabs-per-row), minmax(0, 1fr));
    align-items: flex-start;
    gap: 24px 18px;
    width: 100%;
    margin: 0 0 clamp(58px, 7vw, 88px);
    overflow: visible;
}

.marova-core-areas__tab {
    position: relative;
    appearance: none;
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    min-height: 34px;
    margin: 0;
    padding: 0 16px 0 22px;
    border: 0;
    background: transparent;
    color: var(--marova-core-muted);
    font-family: "Chillax Variable", "Chillax", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    cursor: pointer;
    transition: color 0.28s ease, opacity 0.28s ease;
}

.marova-core-areas__tab.is-short-label {
    max-width: 200px;
}

.marova-core-areas__tab::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    width: 1px;
    height: 28px;
    background: var(--marova-core-muted);
    transform: translateZ(0);
    transition: background-color 0.28s ease, height 0.28s ease;
}

.marova-core-areas__tab.is-active {
    color: var(--marova-core-blue);
    font-weight: 600;
}

.marova-core-areas__tab.is-active::before {
    background: var(--marova-core-blue);
}

.marova-core-areas__tab:hover,
.marova-core-areas__tab:focus-visible {
    color: var(--marova-core-blue);
}

.marova-core-areas__tab:focus-visible {
    outline: 2px solid var(--marova-core-blue);
    outline-offset: 4px;
}

.marova-core-areas__panels {
    display: grid;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.marova-core-areas__panel {
    display: grid;
    grid-area: 1 / 1;
    grid-template-columns: minmax(220px, 0.33fr) minmax(420px, 0.67fr);
    align-items: center;
    gap: clamp(42px, 8vw, 92px);
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1), transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.marova-core-areas__panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.marova-core-areas__panel[hidden] {
    display: none !important;
}

.marova-core-areas__copy,
.marova-core-areas__copy h3,
.marova-core-areas__text {
    text-align: left;
}

.marova-core-areas__copy {
    min-width: 0;
    color: var(--marova-core-navy);
}

.marova-core-areas__copy h3 {
    max-width: none;
    margin: 0 0 5px;
    color: var(--marova-core-navy);
    font-family: "Chillax Variable", "Chillax", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.marova-core-areas__copy h3.is-short-title {
    max-width: 180px;
}

.marova-core-areas__text {
    max-width: 360px;
    color: var(--marova-core-navy);
    font-family: "Satoshi Variable", "Satoshi", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
}

.marova-core-areas__text p {
    margin: 0 0 1em;
}

.marova-core-areas__text p:last-child {
    margin-bottom: 0;
}

.marova-core-areas__media {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.marova-core-areas__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.9 / 1;
    border-radius: 40px;
    object-fit: cover;
}

@media (max-width: 980px) {
    .marova-core-areas__tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 24px;
        margin-bottom: 52px;
    }

    .marova-core-areas__tab {
        max-width: none;
        padding-right: 10px;
    }

    .marova-core-areas__panel {
        grid-template-columns: minmax(210px, 0.38fr) minmax(320px, 0.62fr);
        gap: 38px;
    }
}

@media (max-width: 767px) {
    .marova-core-areas__tabs {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 34px;
    }

    .marova-core-areas__tab {
        min-height: 30px;
        font-size: 15px;
    }

    .marova-core-areas__tab::before {
        height: 24px;
    }

    .marova-core-areas__panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .marova-core-areas__copy {
        order: 1;
    }

    .marova-core-areas__media {
        order: 2;
    }

    .marova-core-areas__text {
        max-width: none;
    }

    .marova-core-areas__media img {
        aspect-ratio: 1.35 / 1;
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .marova-core-areas__media img {
        border-radius: 22px;
    }
}

.marova-core-areas--mode-2 {
    --marova-core-layout-two-navy: #0B033D;
    --marova-core-layout-two-blue: #1D1DD9;
    --marova-core-layout-two-muted: #646464;
    --marova-core-layout-two-line: #646464;
    width: 100%;
    color: var(--marova-core-layout-two-navy);
}

.marova-core-areas-layout-two__legend {
    max-width: 315px;
    margin: 0 auto 26px 0;
    color: var(--marova-core-layout-two-blue);
    font-family: "Satoshi Variable", "Satoshi", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    text-align: left;
    justify-self: start;
}

.marova-core-areas-layout-two__legend strong {
    font-weight: inherit;
}

.marova-core-areas-layout-two__items {
    display: grid;
    width: 100%;
}

.marova-core-areas-layout-two__item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.46fr) minmax(340px, 0.54fr);
    column-gap: clamp(34px, 7vw, 92px);
    width: 100%;
    padding: 22px 0 0;
    border-bottom: 1px solid #646464;
    overflow: visible;
    transition: padding-bottom 0.74s cubic-bezier(0.16, 1, 0.3, 1);
}

.marova-core-areas-layout-two__item.is-active {
    padding-bottom: 38px;
}

.marova-core-areas-layout-two__heading {
    grid-column: 1;
    min-width: 0;
    margin: 0;
}

.marova-core-areas-layout-two__trigger {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--marova-core-layout-two-navy);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.marova-core-areas-layout-two__trigger:focus-visible {
    outline: 2px solid var(--marova-core-layout-two-blue);
    outline-offset: 6px;
}

.marova-core-areas-layout-two__title {
    min-width: 0;
    color: var(--marova-core-layout-two-navy);
    font-family: "Chillax Variable", "Chillax", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0;
}

.marova-core-areas-layout-two__icon {
    position: relative;
    display: inline-grid;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: transparent;
    color: var(--marova-core-layout-two-blue);
}

.marova-core-areas-layout-two__icon svg {
    grid-area: 1 / 1;
    display: block;
    width: 24px;
    height: 24px;
    transform-origin: 50% 50%;
    transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.marova-core-areas-layout-two__icon svg rect {
    fill: transparent;
}

.marova-core-areas-layout-two__icon-close,
.marova-core-areas-layout-two__item.is-active .marova-core-areas-layout-two__icon-open {
    opacity: 0;
}

.marova-core-areas-layout-two__item.is-active .marova-core-areas-layout-two__icon-close {
    opacity: 1;
}

.marova-core-areas-layout-two__tags {
    grid-column: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin: 8px 0 25px;
}

.marova-core-areas-layout-two__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    padding: 10px;
    background: var(--marova-core-layout-two-navy);
    color: #FFFFFF;
    font-family: "Satoshi Variable", "Satoshi", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.marova-core-areas-layout-two__panel {
    grid-column: 1;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.74s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.48s ease;
    will-change: max-height, height, opacity, transform;
}

.marova-core-areas-layout-two__panel.is-active {
    opacity: 1;
}

.marova-core-areas-layout-two__panel[hidden] {
    display: none !important;
}

.marova-core-areas-layout-two__panel-inner {
    min-width: 0;
    padding: 0 0 20px;
}

.marova-core-areas-layout-two__text {
    grid-column: 1;
    max-width: 540px;
    min-width: 0;
    margin: 0;
    color: var(--marova-core-layout-two-muted);
    font-family: "Satoshi Variable", "Satoshi", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    text-align: left;
}

.marova-core-areas-layout-two__text * {
    text-align: left;
}

.marova-core-areas-layout-two__text p {
    margin: 0 0 1em;
}

.marova-core-areas-layout-two__text p:last-child {
    margin-bottom: 0;
}

.marova-core-areas-layout-two__media {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: end;
    width: 100%;
    min-width: 0;
    margin: 0 0 -58px;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.marova-core-areas-layout-two__item:not(.is-active) .marova-core-areas-layout-two__media {
    display: none;
}

.marova-core-areas-layout-two__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.65 / 1;
    border-radius: 40px;
    object-fit: cover;
}

@media (max-width: 980px) {
    .marova-core-areas-layout-two__legend {
        max-width: 430px;
        margin-bottom: 22px;
    }

    .marova-core-areas-layout-two__item {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .marova-core-areas-layout-two__item.is-active {
        padding-bottom: 24px;
    }

    .marova-core-areas-layout-two__heading,
    .marova-core-areas-layout-two__tags,
    .marova-core-areas-layout-two__text,
    .marova-core-areas-layout-two__media {
        grid-column: 1;
    }

    .marova-core-areas-layout-two__media {
        grid-row: auto;
        align-self: start;
        margin: 22px 0 0;
        transform: none;
    }

    .marova-core-areas-layout-two__media img {
        aspect-ratio: 1.55 / 1;
        border-radius: 34px;
    }
}

@media (max-width: 767px) {
    .marova-core-areas-layout-two__legend {
        max-width: 290px;
        font-size: 16px;
        letter-spacing: 0.32px;
    }

    .marova-core-areas-layout-two__item {
        padding-top: 19px;
    }

    .marova-core-areas-layout-two__title {
        font-size: 20px;
    }

    .marova-core-areas-layout-two__icon,
    .marova-core-areas-layout-two__icon svg {
        flex-basis: 22px;
        width: 22px;
        height: 22px;
    }

    .marova-core-areas-layout-two__text {
        font-size: 16px;
    }

    .marova-core-areas-layout-two__tag {
        font-size: 12px;
    }

    .marova-core-areas-layout-two__media img {
        aspect-ratio: 1.25 / 1;
        border-radius: 28px;
    }
}
