.extra-features {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: url('https://naura.space/wp-content/uploads/2026/01/green-room-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.extra-overlay {
    position: absolute;
    left: 0;
    width: 45%;
    height: 100%;
    background: rgba(158, 164, 138, 0.7);
    backdrop-filter: blur(4.5px);
    z-index: 1;
}

.extra-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1184px;
    margin: auto;
}

.extra-items {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    max-width: 376px;
}

.extra-item h2 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 56px;
    margin: 0;
}

.extra-item h2 .highlight {
    color: #EAF1D2;
}

.extra-item h2 .light {
    font-weight: 300;
    color: var(--color-white);
}

.lime-accent {
    color: #EAF1D2;
}

@media (max-width: 1199px) {
    .extra-features {
    }

    .extra-overlay {
        left: 0;
        width: 45%;
        height: 100%;
    }

    .extra-content {
        max-width: 100%;
        padding-left: 100px;
    }

    .extra-items {
        gap: 56px;
        max-width: 376px;
    }

    .extra-item h2 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 991px) {
    .extra-overlay {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .extra-items {
        gap: 36px;
        max-width: 100%;
    }

    .extra-content {
        padding-left: 112px;
    }

    .extra-overlay {
        width: calc(100% - 112px);
        left: 56px;
        height: calc(100% - 112px);
        top: 56px;
    }
}

@media (max-width: 639px) {

    .extra-overlay {
        width: calc(100% - 72px);
        left: 36px;
        height: calc(100% - 72px);
        top: 36px;
    }

    .extra-content {
        padding-left: 72px;
    }
}