/* =====================
   HOSTING PAGE
   ===================== */

.hosting-page {
    background: var(--bg-dark);
    min-height: 100vh;
}

/* ---- Section base ---- */
.hs-section {
    padding: 70px 80px;
}

.hs-divider {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 0 80px;
}

/* ---- Titles ---- */
.hs-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 40px;
    font-weight: 500;
    font-style: normal;
    line-height: 50px;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0 0 48px 0;
}

.hs-title--center {
    text-align: center;
}

/* ---- Grid layout ---- */
.hs-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.hs-col-left,
.hs-col-right {
    flex: 1;
}

/* ---- Body text ---- */
.hs-col-left p,
.hs-col-right p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #AAAAAA;
    line-height: 1.7;
    letter-spacing: 0;
    margin: 0 0 28px 0;
    max-width: 100%;
}

/* ---- Images ---- */
.hs-img-lg img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.hs-img-sm {
    margin-top: 20px;
}

.hs-img-sm img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

/* ---- Rooftop: large image on left takes more space ---- */
.hs-rooftop .hs-col-left {
    flex: 1.4;
}

.hs-rooftop .hs-col-right {
    flex: 0.85;
}

.hs-rooftop .hs-img-lg img {
    height: 460px;
}

.hs-rooftop .hs-img-sm img {
    height: 200px;
    object-position: bottom center;
}

/* ---- Terrace: large image on right takes more space ---- */
.hs-terrace .hs-col-left {
    flex: 0.75;
}

.hs-terrace .hs-col-right {
    flex: 1.25;
}

.hs-terrace .hs-img-lg img {
    height: 500px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hs-section {
        padding: 48px 24px;
    }

    .hs-divider {
        margin: 0 24px;
    }

    .hs-grid {
        flex-direction: column;
    }

    .hs-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hs-img-lg img,
    .hs-rooftop .hs-img-lg img,
    .hs-terrace .hs-img-lg img {
        height: 260px;
    }

    .hs-col-left p,
    .hs-col-right p {
        max-width: 100%;
    }
}
