/* =============================================
   GAVIRIA REAL ESTATE — SINGLE PROPERTY
============================================= */

/* =============================================
   PROPERTY HEADER (title + badge + price)
============================================= */
.gv-prop-head {
    padding: 56px 0 32px;
    background-color: var(--color-blanco);
}

.gv-prop-head__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.gv-prop-head__left {
    flex: 1;
    min-width: 0;
}

.gv-prop-head__title {
    font-family: var(--font-titulo);
    font-size: 40px;
    font-weight: 600;
    color: #524D4A;
    line-height: 1.15;
    margin: 0 0 8px;
}

.gv-prop-head__sub {
    font-family: var(--font-texto);
    font-size: 18px;
    font-weight: 300;
    color: #888;
    margin: 0 0 16px;
    line-height: 1.4;
}

.gv-prop-head__badge {
    display: inline-block;
    background-color: var(--color-verde);
    color: var(--color-blanco);
    font-family: var(--font-titulo);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 6px 18px;
    text-transform: uppercase;
}

.gv-prop-head__right {
    flex-shrink: 0;
    text-align: right;
    padding-top: 4px;
}

.gv-prop-head__price {
    font-family: var(--font-titulo);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-naranja);
    margin: 0;
    line-height: 1.1;
}

.gv-prop-head__price-note {
    font-family: var(--font-titulo);
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin: 4px 0 0;
    letter-spacing: 0.02em;
}

/* =============================================
   GALLERY — Contenedor sobre el fondo
============================================= */
.gv-prop-gallery {
    background-color: var(--color-blanco);
    padding: 0 0 48px;
}

.gv-prop-gallery__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.gv-prop-gallery__main {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 560px;
    overflow: hidden;
    background-color: #f0f0f0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
    margin: 0 auto;
}

.gv-prop-gallery__main img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.gv-prop-gallery__main > #gv-gal-main {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: 52% 50% !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    display: block !important;
}

.gv-prop-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    color: #524D4A;
    border: none;
    font-size: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1;
    z-index: 2;
}

.gv-prop-gallery__arrow:hover {
    background: var(--color-blanco);
}

.gv-prop-gallery__arrow--prev {
    left: 16px;
}

.gv-prop-gallery__arrow--next {
    right: 16px;
}

.gv-prop-gallery__count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.85);
    color: #524D4A;
    font-family: var(--font-titulo);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    letter-spacing: 0.04em;
    z-index: 2;
}

.gv-prop-gallery__thumbs {
    display: flex;
    gap: 4px;
    padding: 6px 0 0;
    overflow-x: auto;
    background-color: #f0f0f0;
    scrollbar-width: thin;
    scrollbar-color: #bbb #f0f0f0;
}

.gv-prop-gallery__thumb {
    width: 96px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.gv-prop-gallery__thumb:hover {
    opacity: 0.8;
}

.gv-prop-gallery__thumb.active {
    opacity: 1;
    outline: 2px solid var(--color-naranja);
    outline-offset: -2px;
}

/* =============================================
   DESCRIPCIÓN + SPECS (2-column)
============================================= */
.gv-prop-info {
    background-color: var(--color-blanco);
    padding: 56px 0;
}

.gv-prop-info__inner {
    display: flex;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.gv-prop-info__desc {
    flex: 1;
    min-width: 0;
}

.gv-prop-info__heading {
    font-family: var(--font-titulo);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #524D4A;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gv-prop-info__text p {
    font-family: var(--font-texto);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: #524D4A;
    margin-bottom: 20px;
}

.gv-prop-info__text h2 {
    font-family: var(--font-titulo);
    font-size: 22px;
    font-weight: 600;
    color: #524D4A;
    margin: 32px 0 12px;
    line-height: 1.3;
}

.gv-prop-info__text h3 {
    font-family: var(--font-titulo);
    font-size: 18px;
    font-weight: 600;
    color: #524D4A;
    margin: 24px 0 10px;
}

.gv-prop-info__text ul,
.gv-prop-info__text ol {
    font-family: var(--font-texto);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
    color: #524D4A;
    margin-bottom: 20px;
    padding-left: 24px;
}

.gv-prop-info__text li {
    margin-bottom: 6px;
}

.gv-prop-info__text a {
    color: var(--color-naranja);
    text-decoration: underline;
}

.gv-prop-info__text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px 0;
}

/* Sidebar — right column */
.gv-prop-info__side {
    width: 340px;
    flex-shrink: 0;
}

.gv-prop-info__type-box {
    background-color: #f5f3f1;
    padding: 24px;
    margin-bottom: 0;
    text-align: center;
}

.gv-prop-info__type-label {
    display: block;
    font-family: var(--font-titulo);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gv-prop-info__type-value {
    display: block;
    font-family: var(--font-titulo);
    font-size: 20px;
    font-weight: 700;
    color: #524D4A;
    letter-spacing: 0.04em;
}

/* ID de propiedad row */
.gv-prop-info__id-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 4px;
}

.gv-prop-info__id-label {
    font-family: var(--font-titulo);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #888;
    text-transform: uppercase;
    white-space: nowrap;
}

.gv-prop-info__id-value {
    font-family: var(--font-titulo);
    font-size: 14px;
    font-weight: 700;
    color: #524D4A;
    letter-spacing: 0.02em;
}

/* Features list with icons */
.gv-prop-info__features {
    display: flex;
    flex-direction: column;
}

.gv-prop-info__feat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gv-prop-info__feat:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gv-prop-info__feat svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-naranja);
}

.gv-prop-info__feat span {
    font-family: var(--font-titulo);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #524D4A;
}

/* =============================================
   DIRECCIÓN + MAPA — recuadro #E5E5E5
============================================= */
.gv-prop-location {
    background-color: var(--color-blanco);
    padding: 0 0 56px;
}

.gv-prop-location__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.gv-prop-location__box {
    background-color: #E5E5E5;
    padding: 36px 40px;
}

/* Address dentro del box */
.gv-prop-address {
    margin-bottom: 32px;
}

.gv-prop-address__heading {
    font-family: var(--font-titulo);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #524D4A;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.gv-prop-address__table {
    display: flex;
    flex-direction: column;
}

.gv-prop-address__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gv-prop-address__cell {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.gv-prop-address__row .gv-prop-address__cell:first-child {
    padding-right: 32px;
}

.gv-prop-address__row .gv-prop-address__cell:last-child {
    padding-left: 32px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.gv-prop-address__label {
    font-family: var(--font-titulo);
    font-size: 13px;
    font-weight: 500;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.gv-prop-address__value {
    font-family: var(--font-titulo);
    font-size: 15px;
    font-weight: 600;
    color: #524D4A;
    text-align: right;
}

/* Map dentro del box */
.gv-prop-map {
    width: 100%;
    height: 360px;
}

/* =============================================
   DETALLES — fondo naranja
============================================= */
.gv-prop-detalles {
    background-color: var(--color-naranja);
    padding: 56px 0 64px;
}

.gv-prop-detalles__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.gv-prop-detalles__heading {
    font-family: var(--font-titulo);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-blanco);
    margin: 0 0 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.gv-prop-detalles__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.gv-prop-detalles__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gv-prop-detalles__item:nth-child(odd) {
    padding-right: 32px;
}

.gv-prop-detalles__item:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.gv-prop-detalles__label {
    font-family: var(--font-titulo);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}

.gv-prop-detalles__value {
    font-family: var(--font-titulo);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blanco);
    text-align: right;
}

/* =============================================
   RESPONSIVE — PANTALLA GRANDE (1600px+)
============================================= */
@media (min-width: 1600px) {
    .gv-prop-head__inner,
    .gv-prop-gallery__inner,
    .gv-prop-info__inner,
    .gv-prop-location__inner,
    .gv-prop-detalles__inner {
        box-sizing: border-box;
        max-width: 1620px;
        padding-left: 44px;
        padding-right: 44px;
    }

    .gv-prop-info__inner {
        gap: 56px;
    }

    .gv-prop-head__title {
        font-size: clamp(32px, 2.2vw, 38px);
    }

    .gv-prop-head__price {
        font-size: clamp(28px, 1.9vw, 34px);
    }

    .gv-prop-head__sub {
        font-size: 18px;
    }

    .gv-prop-gallery__main {
        max-height: 680px;
    }

    .gv-prop-gallery__thumb {
        width: 120px;
        height: 80px;
    }

    .gv-prop-info__heading {
        font-size: 26px;
    }

    .gv-prop-info__text p,
    .gv-prop-info__text ul,
    .gv-prop-info__text ol {
        font-size: 22px;
    }

    .gv-prop-info__side {
        width: min(30%, 420px);
    }

    .gv-prop-location__box {
        padding: 40px 44px;
    }

    .gv-prop-map {
        height: 420px;
    }
}

/* =============================================
   RESPONSIVE — ULTRA WIDE (1920px+)
============================================= */
@media (min-width: 1920px) {
    .gv-prop-head__inner,
    .gv-prop-gallery__inner,
    .gv-prop-info__inner,
    .gv-prop-location__inner,
    .gv-prop-detalles__inner {
        max-width: 1840px;
        padding-left: 56px;
        padding-right: 56px;
    }

    .gv-prop-info__inner {
        display: grid;
        grid-template-columns: minmax(0, 1.75fr) minmax(360px, 1fr);
        align-items: start;
        gap: 72px;
    }

    .gv-prop-info__side {
        width: auto;
    }

    .gv-prop-gallery__main {
        max-height: 760px;
    }

    .gv-prop-map {
        height: 480px;
    }
}

/* =============================================
   RESPONSIVE — LAPTOP (1025px–1599px)
============================================= */
@media (min-width: 1025px) and (max-width: 1599px) {
    .gv-prop-head {
        padding: 48px 0 28px;
    }

    .gv-prop-head__inner {
        gap: 24px;
        padding: 0 max(32px, calc((100vw - 1280px) / 2 + 32px));
    }

    .gv-prop-head__title {
        font-size: clamp(26px, 2.2vw, 30px);
    }

    .gv-prop-head__sub {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .gv-prop-head__badge {
        font-size: 10px;
        padding: 5px 16px;
    }

    .gv-prop-head__price {
        font-size: 25px;
    }

    .gv-prop-head__price-note {
        font-size: 12px;
    }

    .gv-prop-gallery {
        padding-bottom: 40px;
    }

    .gv-prop-gallery__inner {
        padding: 0 max(32px, calc((100vw - 1280px) / 2 + 32px));
    }

    .gv-prop-gallery__main {
        max-height: 500px;
    }

    .gv-prop-gallery__thumb {
        width: 88px;
        height: 60px;
    }

    .gv-prop-info {
        padding: 48px 0;
    }

    .gv-prop-info__inner {
        gap: 36px;
        padding: 0 max(32px, calc((100vw - 1280px) / 2 + 32px));
    }

    .gv-prop-info__heading {
        font-size: 20px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .gv-prop-info__text p,
    .gv-prop-info__text ul,
    .gv-prop-info__text ol {
        font-size: 18px;
        line-height: 1.62;
    }

    .gv-prop-info__text h2 {
        font-size: 20px;
        margin: 28px 0 10px;
    }

    .gv-prop-info__text h3 {
        font-size: 17px;
    }

    .gv-prop-info__side {
        width: 310px;
    }

    .gv-prop-location {
        padding-bottom: 48px;
    }

    .gv-prop-location__inner {
        padding: 0 max(32px, calc((100vw - 1280px) / 2 + 32px));
    }

    .gv-prop-location__box {
        padding: 32px 34px;
    }

    .gv-prop-address {
        margin-bottom: 28px;
    }

    .gv-prop-address__heading {
        margin-bottom: 16px;
        padding-bottom: 10px;
    }

    .gv-prop-map {
        height: 320px;
    }

    .gv-prop-detalles {
        padding: 48px 0 56px;
    }

    .gv-prop-detalles__inner {
        padding: 0 max(32px, calc((100vw - 1280px) / 2 + 32px));
    }

    .gv-prop-detalles__heading {
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .gv-prop-detalles__label {
        font-size: 13px;
    }

    .gv-prop-detalles__value {
        font-size: 14px;
    }
}

/* =============================================
   AJUSTE — LAPTOPS DE ALTA RESOLUCION (ESCALA)
   Equipos con viewport ancho pero poca altura visible
   (frecuente en Windows con escala 125%-150%).
============================================= */
@media (min-width: 1367px) and (max-height: 980px) {
    .gv-prop-head__title {
        font-size: clamp(22px, 1.5vw, 25px) !important;
        line-height: 1.18;
    }

    .gv-prop-head__sub {
        font-size: 13px !important;
    }

    .gv-prop-head__price {
        font-size: clamp(20px, 1.3vw, 24px) !important;
    }

    .gv-prop-head__price-note {
        font-size: 11px !important;
    }
}

/* =============================================
   LAPTOP PEQUEÑO (1025px - 1366px)
   Cubre portátiles 13"-14" nativos y pantallas
   1920px con escala de sistema al 150%
============================================= */
@media (min-width: 1025px) and (max-width: 1366px) {
    /* Header */
    .gv-prop-head__title {
        font-size: clamp(20px, 1.6vw, 23px);
        line-height: 1.18;
    }

    .gv-prop-head__sub {
        font-size: 13px;
    }

    .gv-prop-head__price {
        font-size: 21px;
    }

    .gv-prop-head__price-note {
        font-size: 10px;
    }

    /* Galería */
    .gv-prop-gallery__main {
        max-height: 440px;
    }

    .gv-prop-gallery__thumb {
        width: 76px;
        height: 52px;
    }

    /* Descripción */
    .gv-prop-info__heading {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .gv-prop-info__text p,
    .gv-prop-info__text ul,
    .gv-prop-info__text ol {
        font-size: 18px; /* Cormorant — mínimo seguro */
        line-height: 1.62;
    }

    .gv-prop-info__text h2 {
        font-size: 18px;
    }

    .gv-prop-info__text h3 {
        font-size: 16px;
    }

    .gv-prop-info__side {
        width: 280px;
    }

    /* Ubicación */
    .gv-prop-location__box {
        padding: 28px;
    }

    .gv-prop-map {
        height: 280px;
    }

    /* Detalles */
    .gv-prop-detalles__label {
        font-size: 13px;
    }

    .gv-prop-detalles__value {
        font-size: 14px;
    }
}

/* =============================================
   RESPONSIVE — TABLET (1024px)
============================================= */
@media (max-width: 1024px) {
    .gv-prop-head {
        padding: 40px 0 28px;
    }

    .gv-prop-head__inner {
        padding: 0 24px;
    }

    .gv-prop-head__title {
        font-size: 22px !important;
    }

    .gv-prop-head__sub {
        font-size: 14px !important;
    }

    .gv-prop-head__price {
        font-size: 22px !important;
    }

    .gv-prop-gallery {
        padding-bottom: 40px;
    }

    .gv-prop-gallery__inner {
        padding: 0 24px;
    }

    .gv-prop-gallery__main {
        max-height: 450px;
    }

    .gv-prop-info {
        padding: 40px 0;
    }

    .gv-prop-info__inner {
        padding: 0 24px;
        gap: 32px;
    }

    .gv-prop-info__side {
        width: 280px;
    }

    .gv-prop-info__text p,
    .gv-prop-info__text ul,
    .gv-prop-info__text ol {
        font-size: 18px;
    }

    .gv-prop-location {
        padding-bottom: 40px;
    }

    .gv-prop-location__inner {
        padding: 0 24px;
    }

    .gv-prop-location__box {
        padding: 28px 32px;
    }

    .gv-prop-detalles {
        padding: 40px 0 48px;
    }

    .gv-prop-detalles__inner {
        padding: 0 24px;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (768px)
============================================= */
@media (max-width: 768px) {
    .gv-prop-head {
        padding: 32px 0 24px;
    }

    .gv-prop-head__inner {
        flex-direction: column;
        gap: 16px;
        padding: 0 24px;
    }

    .gv-prop-head__right {
        text-align: left;
    }

    .gv-prop-head__title {
        font-size: 26px;
    }

    .gv-prop-head__price {
        font-size: 28px;
    }

    .gv-prop-gallery {
        padding-bottom: 32px;
    }

    .gv-prop-gallery__inner {
        padding: 0;
    }

    .gv-prop-gallery__main {
        max-height: 360px;
        box-shadow: none;
    }

    .gv-prop-gallery__thumbs {
        padding: 4px 16px 0;
    }

    .gv-prop-gallery__thumb {
        width: 72px;
        height: 50px;
    }

    .gv-prop-info {
        padding: 36px 0;
    }

    .gv-prop-info__inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 28px;
    }

    .gv-prop-info__side {
        width: 100%;
        order: -1;
    }

    .gv-prop-info__text p,
    .gv-prop-info__text ul,
    .gv-prop-info__text ol {
        font-size: 18px;
    }

    .gv-prop-info__features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gv-prop-info__feat {
        width: 50%;
    }

    .gv-prop-info__feat:nth-child(2) {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .gv-prop-location {
        padding-bottom: 36px;
    }

    .gv-prop-location__inner {
        padding: 0 24px;
    }

    .gv-prop-location__box {
        padding: 24px;
    }

    .gv-prop-address__row {
        grid-template-columns: 1fr;
    }

    .gv-prop-address__row .gv-prop-address__cell:first-child {
        padding-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .gv-prop-address__row .gv-prop-address__cell:last-child {
        padding-left: 0;
        border-left: none;
    }

    .gv-prop-map {
        height: 260px;
    }

    .gv-prop-detalles {
        padding: 36px 0 44px;
    }

    .gv-prop-detalles__inner {
        padding: 0 24px;
    }

    .gv-prop-detalles__grid {
        grid-template-columns: 1fr;
    }

    .gv-prop-detalles__item:nth-child(odd) {
        padding-right: 0;
    }

    .gv-prop-detalles__item:nth-child(even) {
        padding-left: 0;
        border-left: none;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (480px)
============================================= */
@media (max-width: 480px) {
    .gv-prop-head {
        padding: 24px 0 20px;
    }

    .gv-prop-head__inner {
        padding: 0 16px;
    }

    .gv-prop-head__title {
        font-size: 22px;
    }

    .gv-prop-head__price {
        font-size: 24px;
    }

    .gv-prop-gallery__inner {
        padding: 0;
    }

    .gv-prop-gallery__main {
        max-height: 260px;
    }

    .gv-prop-gallery__arrow {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .gv-prop-gallery__thumb {
        width: 56px;
        height: 40px;
    }

    .gv-prop-info__inner {
        padding: 0 16px;
    }

    .gv-prop-info__text p,
    .gv-prop-info__text ul,
    .gv-prop-info__text ol {
        font-size: 17px;
    }

    .gv-prop-info__feat {
        width: 100%;
    }

    .gv-prop-info__feat:nth-child(2) {
        border-top: none;
    }

    .gv-prop-location__inner {
        padding: 0 16px;
    }

    .gv-prop-location__box {
        padding: 20px 16px;
    }

    .gv-prop-map {
        height: 220px;
    }

    .gv-prop-detalles__inner {
        padding: 0 16px;
    }

    .gv-prop-detalles__label {
        font-size: 13px;
    }

    .gv-prop-detalles__value {
        font-size: 14px;
    }
}

/* =============================================
   CUSTOM — Gutter 1280x631–1280x800
============================================= */
@media (min-width: 1200px) and (max-width: 1366px) and (max-height: 900px) {
    :root { --gv-side-gutter: 105px; }

    .gv-prop-head__inner,
    .gv-prop-gallery__inner,
    .gv-prop-info__inner,
    .gv-prop-location__inner,
    .gv-prop-detalles__inner {
        padding-left: max(var(--gv-side-gutter), calc((100vw - 1280px) / 2 + var(--gv-side-gutter)));
        padding-right: max(var(--gv-side-gutter), calc((100vw - 1280px) / 2 + var(--gv-side-gutter)));
    }
}

