/* =====================
   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: 'Montserrat', sans-serif;
    font-size: 74px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 0;
    color: #ffffff;
    text-align: center;
    margin: 0 0 48px 0;
}

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

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

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

/* ---- 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 (sin height fijo: se muestran a tamano completo) ---- */
.hs-img-lg {
    margin-top: auto; /* imagen grande al fondo de su columna */
}

.hs-img-lg img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

.hs-img-sm {
    /* margin-top: auto empuja la imagen pequena al fondo para alinearla con la grande */
    margin-top: auto;
    padding-top: 20px;
}

.hs-img-sm img {
    width: 100%;
    display: block;
    border-radius: 2px;
}

/* ---- Living Areas: texto izq (angosto) + imagen grande der (ancha) ~35/65 ---- */
.hs-living .hs-col-left {
    flex: 35;
}

.hs-living .hs-col-right {
    flex: 65;
}

/* ---- Rooftop: invertido -> imagen grande izq (ancha) + texto der (angosto) ~65/35 ---- */
.hs-rooftop .hs-col-left {
    flex: 65;
}

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

/* ---- Terrace: igual que Living -> texto izq (angosto) + imagen grande der (ancha) ~35/65 ---- */
.hs-terrace .hs-col-left {
    flex: 35;
}

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

/* ---- 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-col-left p,
    .hs-col-right p {
        max-width: 100%;
    }
}
