/* || C-Suites landing page */
.csuites-hero {
    display: grid;
    grid-template-columns: 63% 37%;
    gap: 4px;
    min-height: calc(100vh - 96px);
    margin-top: 70px;
    background-color: #000;
    font-family: "Poppins", "Aileron", "Inter", sans-serif;
}

.csuites-hero__main,
.csuites-hero__tile {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2B001F;
}

    .csuites-hero__main::before,
    .csuites-hero__tile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
    }

.csuites-hero__main {
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.csuites-hero__overlay {
    position: relative;
    z-index: 1;
    max-width: 620px;
    color: #fff;
}

.csuites-hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 24px;
}

.csuites-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 32px;
}

.csuites-hero__btn {
    background-color: #fff;
    color: #171717;
    border: none;
    border-radius: 40px;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

    .csuites-hero__btn:hover {
        background-color: #FFF5CA;
        transform: translateY(-2px);
    }

.csuites-hero__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}

.csuites-hero__tile {
    padding: 36px;
}

.csuites-hero__tile-overlay {
    position: relative;
    z-index: 1;
    max-width: 320px;
    color: #fff;
}

    .csuites-hero__tile-overlay h3 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.25;
        margin: 0 0 8px;
    }

.csuites-hero__plus {
    font-weight: 400;
}

.csuites-hero__tile-overlay p {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .csuites-hero {
        grid-template-columns: 1fr;
        margin-top: 40px;
        min-height: auto;
    }

    .csuites-hero__main {
        min-height: 480px;
        padding: 40px 24px;
    }

    .csuites-hero__title {
        font-size: 38px;
    }

    .csuites-hero__subtitle {
        font-size: 15px;
    }

    .csuites-hero__side {
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
    }

    .csuites-hero__tile {
        min-height: 220px;
        padding: 24px;
    }
    .mob-sticky-btns {
    display:none;
    }
}

@media (max-width: 575px) {
    .csuites-hero__side {
        grid-template-columns: 1fr;
    }
    .mob-sticky-btns {
        display: none;
    }
}
