/* ═══════════════════════════════════════════════════════
   [lc_hotel_page] — Brand: black #0B1014 + gold #E2C48E
   ═══════════════════════════════════════════════════════ */

/* ── Wrapper ───────────────────────────────────────────── */
.lchp {
    /* Define CSS variables locally so they always resolve inside this component */
    --text:         #d4cbb8;
    --border:       rgba(255,255,255,.12);
    --card-bg-deep: #0f1518;
    --accent:       #E2C48E;

    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 60px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    background: #000000;
}
.lchp *, .lchp *::before, .lchp *::after { box-sizing: border-box; }

/* ── Photo gallery strip ───────────────────────────────── */
.lchp-strip {
    display: flex;
    gap: 4px;
    height: 320px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 20px;
}
.lchp-strip-img {
    position: relative;
    flex: 0 0 auto;
    width: 22%;
    min-width: 120px;
    overflow: hidden;
    cursor: pointer;
}
.lchp-strip-img:first-child { flex: 0 0 34%; width: 34%; }
.lchp-strip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.lchp-strip-img:hover img { transform: scale(1.06); }
.lchp-strip-img--more img { filter: brightness(.45); }
.lchp-strip-more {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem; font-weight: 700;
}
.lchp-strip-empty {
    flex: 1;
    background: linear-gradient(135deg,var(--card-bg-deep),#2a2a2a);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   HC_RAIL_DERECHA_V1 (2026-08-20) — DOS COLUMNAS, CON EL LATERAL A LA DERECHA.

   El lateral lleva el precio, el botón de reservar y el rail de LiteAPI (el
   buscador y los hoteles que ocuparon el sitio de los dos huecos de publicidad).

   ⚠️ Se probó a la IZQUIERDA, con dos columnas también en el teléfono y la
   columna en miniatura —`clamp(112px, 30vw, 300px)`—, para que el buscador se
   leyera antes que la ficha en el móvil. No se sostiene en pantalla: a 117 px el
   desplegable enseña «Elige ciuda» y los títulos salen partidos. Orden del
   dueño: derecha, y en el móvil debajo de la ficha.

   Lo que sobrevive de aquel intento: el ancho por `clamp()` en vez de `280px`
   clavados, así la columna se encoge sola entre 768 y 1100 px en lugar de
   saltar de golpe.
   ══════════════════════════════════════════════════════════════════════════ */
.lchp-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(240px, 24vw, 300px);
    gap: clamp(14px, 2vw, 28px);
    align-items: start;
}
.lchp-main { min-width: 0; }
.lchp-sidebar { position: sticky; top: 20px; min-width: 0; }

/* ── Hotel header ──────────────────────────────────────── */
.lchp-hdr {
    background: #293133;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 16px;
}
.lchp-hdr-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}
.lchp-badge {
    display: inline-block;
    background: rgba(226,196,142,0.15);
    color: #E2C48E;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
}
.lchp-name {
    margin: 0 0 6px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}
.lchp-addr { margin: 0; color:#D0D0D0; font-size: .85rem; }
.lchp-pin { color: #E2C48E; margin-right: 4px; }

/* ── Hotel logo slot ───────────────────────────────────── */
.lchp-logo-slot {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}
.lchp-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    padding: 4px;
}
.lchp-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(226,196,142,.18) 0%, rgba(226,196,142,.06) 100%);
    border: 2px dashed rgba(226,196,142,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(226,196,142,.65);
    letter-spacing: -.02em;
    font-family: Georgia, serif;
}
.lchp-logo-upload-btn {
    font-size: .72rem;
    color: #E2C48E;
    background: none;
    border: 1px solid rgba(226,196,142,.4);
    border-radius: 6px;
    padding: 4px 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.lchp-logo-upload-btn:hover { background: rgba(226,196,142,.12); }
.lchp-logo-form {
    display: none;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    margin-top: 4px;
    background: rgba(15,22,30,.85);
    border: 1px solid rgba(226,196,142,.25);
    border-radius: 8px;
    padding: 10px 12px;
    width: 170px;
}
.lchp-logo-form.lchp-logo-form--open { display: flex; }
.lchp-logo-choose-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    color: #E2C48E;
    border: 1px solid rgba(226,196,142,.4);
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    background: rgba(226,196,142,.08);
    transition: background .15s;
}
.lchp-logo-choose-btn:hover { background: rgba(226,196,142,.16); }
.lchp-logo-filename {
    font-size: .68rem;
    color: rgba(212,203,184,.55);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}
.lchp-logo-save-btn {
    font-size: .75rem;
    background: #E2C48E;
    color: #111;
    border: none;
    border-radius: 6px;
    padding: 6px 0;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: .03em;
    transition: opacity .15s;
}
.lchp-logo-save-btn:hover { opacity: .85; }
/* «Quitar»: apagado a propósito — es la salida, no la acción principal. */
.lchp-logo-del-btn {
    font-size: .7rem;
    background: none;
    color: #b9b3a5;
    border: 1px solid rgba(226,196,142,.35);
    border-radius: 6px;
    padding: 5px 0;
    cursor: pointer;
    transition: color .15s, border-color .15s;
}
.lchp-logo-del-btn:hover { color: #ffb4b4; border-color: rgba(255,120,120,.55); }
.lchp-logo-del-btn[hidden] { display: none; }
.lchp-logo-hint {
    font-size: .64rem;
    color: rgba(212,203,184,.4);
    text-align: center;
    line-height: 1.4;
}
.lchp-logo-msg { font-size: .7rem; color: #E2C48E; min-height: 14px; text-align: center; }
/* Mobile: logo shrinks to 56px, positioned top-right of header */
@media (max-width: 767px) {
    .lchp-logo-slot { min-width: 56px; }
    .lchp-logo-img,
    .lchp-logo-placeholder { width: 56px; height: 56px; border-radius: 8px; font-size: 1.5rem; }
    .lchp-logo-upload-btn { font-size: .65rem; }
    .lchp-logo-form { width: 150px; }
}

.lchp-score-badge {
    flex-shrink: 0;
    background: #25ac03;
    color: #fff;
    border-radius: 10px 10px 10px 2px;
    padding: 8px 14px;
    text-align: center;
    min-width: 70px;
}
.lchp-score-num { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.lchp-score-label { font-size: .7rem; font-weight: 600; margin-top: 2px; }
.lchp-score-cnt { font-size: .68rem; opacity: .85; margin-top: 2px; }

/* Sub-ratings */
.lchp-subratings {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.lchp-subr {
    display: grid;
    grid-template-columns: 110px 1fr 32px;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: #999;
}
.lchp-subr-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.lchp-subr-fill { height: 100%; background: #E2C48E; border-radius: 2px; transition: width .5s; }

/* Resumen de reseñas: badge verde + sub-notas, dentro del bloque «Reseñas» */
.lchp-reviews-summary {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.lchp-reviews-summary .lchp-subratings {
    flex: 1;
    min-width: 240px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

/* Top amenity chips */
.lchp-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.lchp-chip {
    background: #1e2124;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .8rem;
    color: var(--text);
    white-space: nowrap;
}
.lchp-chip--more {
    background: rgba(226,196,142,0.12);
    border-color: rgba(226,196,142,0.3);
    color: #E2C48E;
    cursor: pointer;
    font-weight: 600;
}

/* ── Dates search bar ──────────────────────────────────── */
.lchp-dates-bar {
    background: #293133;
    border: 1px solid #E2C48E;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 16px;
}
.lchp-dates-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.lchp-dates-group { display: flex; flex-direction: column; gap: 4px; flex: 1 1 130px; }
.lchp-dates-group label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: rgba(226,196,142,.85);
}
.lchp-dates-group input,
.lchp-dates-group select {
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    accent-color: #E2C48E;
    color: var(--text);
    background: rgba(255,255,255,.08);
    padding: 8px 12px;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.lchp-dates-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
}
.lchp-dates-group select option { color: #222; background: #828282; }
.lchp-dates-sep { font-size: 1.2rem; padding-bottom: 10px; flex-shrink: 0; color: #666; }
.lchp-dates-btn {
    background: #E2C48E;
    color: var(--dark);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .1s;
    white-space: nowrap;
    flex-shrink: 0;
}
.lchp-dates-btn:hover { background: #F8D189; transform: translateY(-1px); }

/* ── Section wrapper ───────────────────────────────────── */
.lchp-rooms-section,
.lchp-section {
    background: #293133;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 16px;
}
.lchp-booking-section {
    scroll-margin-top: 20px;
    background: #1a1f24;
    border-color: rgba(226,196,142,.25);
}
.lchp-section-title {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 700;
    ccolor: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.lchp-revs-score { font-size: 1.3rem; color: #E2C48E; }
.lchp-revs-cnt { font-size: .82rem; color: #666; font-weight: 400; }
.lchp-empty { color: #666; font-style: italic; margin: 0; padding: 8px 0; }
.lchp-desc { line-height: 1.75; color: var(--text); }
.lchp-map-addr { margin: 0 0 12px; color: #777; font-size: .85rem; }

/* ── Room cards (accordion) ─────────────────────────────── */
.lchp-rooms { display: flex; flex-direction: column; gap: 10px; }

.lchp-room {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: #828282;
    transition: border-color .2s, box-shadow .2s;
}
.lchp-room:hover { border-color: #3a3a3a; }
.lchp-room.lchp-room--open { border-color: #E2C48E; box-shadow: 0 2px 14px rgba(226,196,142,.12); }

/* ── Geo strip ─────────────────────────────────────────── */
.lchp-geo-strip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
    font-size: .7rem;
    color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.05);
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: .01em;
}

/* ── Loyalty link ──────────────────────────────────────── */
.lchp-loyalty-link {
    margin: 10px 0 0;
    font-size: .78rem;
    color: #666;
    text-align: center;
}
.lchp-loyalty-link a { color: #E2C48E; text-decoration: none; font-weight: 600; }
.lchp-loyalty-link a:hover { text-decoration: underline; }

/* ══ ROOM TILE GRID (AliExpress style) ═════════════════════
   Desktop  : 4-column CSS grid
   Tablet   : 3 columns
   Mobile   : horizontal-scroll flex (2 tiles visible + peek)
   ══════════════════════════════════════════════════════════ */
.lchp-room-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
/* HC_SOLO_CLUB_Y_JUEGOS_V1 (2026-08-20): `.lchp-between-cards-ad` fuera — era
   el envoltorio del banner que partía la rejilla tras la 4ª habitación. */

/* Horizontal search bar below gallery — desktop only */
.lchp-searchbar-desktop {
    margin: 0 0 16px;
    width: 100%;
    overflow: hidden;
}
/* Stretch all inner block elements to full width */
.lchp-searchbar-desktop > *,
.lchp-searchbar-desktop form { width: 100% !important; max-width: 100% !important; }
/* Ensure select/input text is readable in dark context */
.lchp-searchbar-desktop select,
.lchp-searchbar-desktop input[type="text"],
.lchp-searchbar-desktop input[type="date"],
.lchp-searchbar-desktop input[type="number"] {
    color: var(--text, #d4cbb8) !important;
}
@media (max-width: 767px) {
    .lchp-searchbar-desktop { display: none; }
}

/* Buscador vertical in sidebar — mobile only */
.lchp-sb-buscador {
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}
.lchp-sb-buscador > *,
.lchp-sb-buscador form { width: 100% !important; max-width: 100% !important; }
.lchp-sb-buscador select,
.lchp-sb-buscador input[type="text"],
.lchp-sb-buscador input[type="date"],
.lchp-sb-buscador input[type="number"] {
    color: var(--text, #d4cbb8) !important;
    width: 100% !important;
}
.lchp-sb-buscador--mobile-only { display: none; }
@media (max-width: 767px) {
    .lchp-sb-buscador--mobile-only { display: block; }
}

/* ─ Individual tile ─ */
/* LC_HP_TILE_CLICK_V1: la baldosa es un <a> (toda ella abre la habitación).
   Por eso hereda color y quita el subrayado — si no, los títulos y chips saldrían
   azules y subrayados. Cuando la habitación está cerrada sigue siendo un <div>. */
.lchp-tile {
    display: flex;
    flex-direction: column;
    background: #1e2124;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, transform .15s, box-shadow .2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.lchp-tile:hover,
.lchp-tile:focus-visible {
    border-color: rgba(226,196,142,.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.lchp-tile:focus-visible { outline: 2px solid #E2C48E; outline-offset: 2px; }
.lchp-tile--closed { cursor: default; }
/* El botón vive DENTRO del enlace: no debe robarle el clic ni parecer otro destino. */
.lchp-tile .lchp-tile-btn { pointer-events: none; }

/* Photo */
.lchp-tile-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}
.lchp-tile-photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .35s, opacity .4s;
    position: absolute; top: 0; left: 0;
}
.lchp-tile:hover .lchp-tile-photo img:not(.lchp-tile-img--hidden) { transform: scale(1.07); }
.lchp-tile-img--hidden { opacity: 0; pointer-events: none; }
.lchp-tile-photo-count {
    position: absolute; bottom: 6px; right: 6px;
    background: rgba(0,0,0,.65); color: #fff;
    font-size: 11px; padding: 2px 6px; border-radius: 20px;
    pointer-events: none;
}
.lchp-tile-nophoto {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    font-size: 2rem; color: #444;
}

/* ID badge — bottom-right of photo */
.lchp-tile-id-badge {
    position: absolute; bottom: 5px; right: 5px;
    background: rgba(0,0,0,.65);
    color: #E2C48E;
    font-size: .62rem; font-weight: 700;
    padding: 2px 5px; border-radius: 3px;
    font-family: monospace;
    backdrop-filter: blur(3px);
    line-height: 1.4;
}

/* Closure overlay — top-left of photo */
.lchp-tile-ovl {
    position: absolute; top: 5px; left: 5px;
    font-size: .75rem; font-weight: 700;
    padding: 2px 7px; border-radius: 4px;
    backdrop-filter: blur(3px);
}
.lchp-tile-ovl--closed { background: rgba(220,53,69,.88); color: #fff; }
.lchp-tile-ovl--soon   { background: rgba(248,209,137,.88); color: #333; }
.lchp-tile--closed .lchp-tile-photo img { filter: brightness(.55) grayscale(.25); }

/* Body */
.lchp-tile-body { padding: 9px 10px 4px; flex: 1; min-width: 0; }
.lchp-tile-name {
    margin: 0 0 4px;
    font-size: .82rem; font-weight: 700; color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
.lchp-tile-meta  { margin: 0 0 3px; font-size: .7rem; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lchp-tile-meals { margin: 0; font-size: .78rem; line-height: 1; }
.lchp-tile-amen-chips {
    display: flex; flex-wrap: wrap; gap: 3px; margin-top: 5px;
}
.lchp-tile-amen-chip {
    background: rgba(226,196,142,.12); color: #b8a57a;
    font-size: .65rem; padding: 2px 5px; border-radius: 10px;
    border: 1px solid rgba(226,196,142,.2); white-space: nowrap;
}

/* Footer */
.lchp-tile-footer {
    padding: 7px 10px 9px;
    border-top: 1px solid rgba(226,196,142,.08);
    display: flex; align-items: center; justify-content: space-between; gap: 5px;
    flex-shrink: 0;
}
.lchp-tile-price-col { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.lchp-tile-urgency {
    font-size: .62rem; font-weight: 700; color: #F8D189;
    white-space: nowrap;
}
.lchp-tile-price {
    font-size: 1rem; font-weight: 800; color: #E2C48E; line-height: 1.1; white-space: nowrap;
}
.lchp-tile-price small { font-size: .65rem; font-weight: 400; color: #888; }

.lchp-tile-btn {
    display: inline-block;
    background: #E2C48E;
    color: var(--dark) !important;
    text-decoration: none;
    padding: 6px 11px;
    border-radius: 7px;
    font-size: .72rem; font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s, transform .1s;
    line-height: 1.3;
}
.lchp-tile-btn:hover { background: #F8D189; transform: translateY(-1px); }
.lchp-tile-btn--disabled {
    background: #333 !important; color: #666 !important; cursor: default; pointer-events: none;
}

/* ── Accordion card styles (lc_hp_room_card — kept for compatibility) ── */
.lchp-rooms { display: flex; flex-direction: column; gap: 10px; }
.lchp-room {
    border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; background: #1e2124;
    transition: border-color .2s;
}
.lchp-room:hover { border-color: #3a3a3a; }
.lchp-room.lchp-room--open { border-color: #E2C48E; box-shadow: 0 2px 14px rgba(226,196,142,.12); }

.lchp-room-summary {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; cursor: pointer; user-select: none;
}
.lchp-room-summary:hover { background: rgba(255,255,255,.03); }
.lchp-room-thumb { flex-shrink: 0; width: 80px; height: 60px; border-radius: 8px; overflow: hidden; background: var(--border); }
.lchp-room-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lchp-room-thumb-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.lchp-room-summary-info { flex: 1; min-width: 0; }
.lchp-room-name { margin: 0 0 2px; font-size: .95rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lchp-room-meta-line { margin: 0; font-size: .78rem; color:#E0E0E0; }
.lchp-room-meals-short { margin: 2px 0 0; font-size: .76rem; color: #E2C48E; font-weight: 600; }
.lchp-room-summary-price { flex-shrink: 0; text-align: right; }
.lchp-room-urgency-sm { display: block; font-size: .68rem; font-weight: 700; color: #F8D189; background: rgba(248,209,137,.15); border-radius: 4px; padding: 1px 6px; margin-bottom: 2px; }
.lchp-room-price { display: block; font-size: 1.25rem; font-weight: 800; color: #E2C48E; }
.lchp-room-price-label { display: block; font-size: .68rem; color:#D0D0D0; }
.lchp-room-btn { flex-shrink: 0; display: inline-block; background: #E2C48E; color: var(--dark) !important; text-decoration: none; padding: 8px 18px; border-radius: 8px; font-size: .82rem; font-weight: 700; transition: background .18s, transform .1s; white-space: nowrap; }
.lchp-room-btn:hover { background: #F8D189; transform: translateY(-1px); }
.lchp-room-arrow { flex-shrink: 0; background: none; border: none; padding: 4px 6px; cursor: pointer; color: #E2C48E; font-size: .85rem; line-height: 1; transition: transform .25s; }
.lchp-room--open .lchp-room-arrow { transform: rotate(180deg); }
.lchp-room-details { border-top: 1px solid var(--border); animation: lchpSlideDown .22s ease-out; }
@keyframes lchpSlideDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lchp-room-strip { display: flex; gap: 3px; height: 170px; overflow-x: auto; scrollbar-width: thin; scrollbar-color: #3a3a3a transparent; scroll-snap-type: x mandatory; }
.lchp-room-strip::-webkit-scrollbar { height: 4px; }
.lchp-room-strip::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 2px; }
.lchp-room-strip-img { flex: 0 0 240px; scroll-snap-align: start; overflow: hidden; }
.lchp-room-strip-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lchp-room-det-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; }
.lchp-room-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.lchp-room-tags span { background: #222; color: var(--text); border-radius: 20px; padding: 2px 10px; font-size: .76rem; }
.lchp-room-desc { margin: 8px 0; font-size: .85rem; color: var(--text); line-height: 1.55; opacity: .88; }
.lchp-room-desc p { margin: 0 0 6px; }
.lchp-room-policy-ok { margin: 0; font-size: .78rem; color: var(--text); font-weight: 600; }
/* Política restrictiva: se dice, pero sin el verde de «todo bien» (LC_HOTEL_REAL_POLICY_V1). */
.lchp-room-policy-strict { margin: 0; font-size: .78rem; color: #a15c00; font-weight: 600; }

/* ── [lc_seis_tarjetas] shelf ──────────────────────────── */
.lchp-seis-section { margin-top: 24px; }
.lc-seis-wrap {}
.lc-seis-title {
    font-size: 1rem; font-weight: 700; color: #fff;
    margin: 0 0 12px; padding: 0;
}
.lc-seis-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #3a3a3a transparent;
    padding-bottom: 8px;
}
.lc-seis-grid::-webkit-scrollbar { height: 4px; }
.lc-seis-grid::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 2px; }
.lc-seis-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
    display: flex; flex-direction: column;
    background: #1e2124;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .2s, transform .15s;
}
.lc-seis-card:hover { border-color: rgba(226,196,142,.4); transform: translateY(-2px); }
.lc-seis-photo { aspect-ratio: 4/3; overflow: hidden; background: #111; flex-shrink: 0; }
.lc-seis-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.lc-seis-card:hover .lc-seis-photo img { transform: scale(1.06); }
.lc-seis-nophoto { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 1.5rem; color: #444; }
.lc-seis-info { padding: 8px 9px 9px; flex: 1; }
.lc-seis-name { margin: 0 0 3px; font-size: .78rem; font-weight: 700; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
.lc-seis-city { margin: 0 0 3px; font-size: .68rem; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lc-seis-price { margin: 0; font-size: .72rem; color: #aaa; }
.lc-seis-price strong { color: #E2C48E; font-size: .85rem; }
.lc-seis-photo { position: relative; }
.lchp-sim-type-badge { position: absolute; top: 5px; left: 5px; background: rgba(0,0,0,.65); color: #E2C48E; font-size: .62rem; padding: 2px 6px; border-radius: 3px; font-weight: 600; line-height: 1.4; }
.lchp-sim-meta { display: flex; gap: 8px; align-items: center; margin: 2px 0 3px; flex-wrap: wrap; }
.lchp-sim-ta { font-size: .65rem; color: #f5a623; font-weight: 700; }
.lchp-sim-dist { font-size: .65rem; color: #6dbf7e; font-weight: 600; }

/* ── Amenities ─────────────────────────────────────────── */
.lchp-amen-groups {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.lchp-amen-group-title { margin: 0 0 8px; font-size: .85rem; font-weight: 700; color: #E2C48E; }
.lchp-amen-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.lchp-amen-list li { font-size: .82rem; color: var(--text); padding-left: 14px; position: relative; }
.lchp-amen-list li::before { content: '✓'; position: absolute; left: 0; color: #E2C48E; font-weight: 700; }

/* ── Map ───────────────────────────────────────────────── */
.lchp-map { height: 420px; border-radius: 10px; overflow: hidden; background: #828282; }

/* ── Reviews ───────────────────────────────────────────── */
.lchp-reviews { display: flex; flex-direction: column; gap: 14px; }
.lchp-rev {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    background: #2e2e2e;
}
.lchp-rev-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.lchp-rev-av {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-weight: 700; font-size: .9rem; flex-shrink: 0;
    background: #E2C48E;
}
.lchp-rev-meta { display: flex; flex-direction: column; gap: 1px; }
.lchp-rev-meta strong { font-size: .88rem; color: #fff; }
.lchp-rev-date { color: #b8b8b8; font-size: .76rem; }
.lchp-rev-stars { color: #E2C48E; font-size: .82rem; letter-spacing: 1px; }
.lchp-rev-text { margin: 0; line-height: 1.6; font-size: .85rem; color: #ececec; }

/* ── Sidebar ───────────────────────────────────────────── */
.lchp-sidebar-inner { display: flex; flex-direction: column; gap: 14px; }

.lchp-sb-price {
   background: #293133;
    border: 1px solid #E2C48E;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.lchp-sb-price span { color:#D0D0D0; font-size: .8rem; }
.lchp-sb-price strong { font-size: 1.8rem; font-weight: 800; color: #E2C48E; line-height: 1; }
.lchp-sb-cta {
    display: block;
    margin-top: 8px;
    background: #E2C48E;
    color: var(--dark) !important;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .88rem;
    transition: background .2s;
    width: 100%;
    text-align: center;
}
.lchp-sb-cta:hover { background: #F8D189; }

/* HC_SOLO_CLUB_Y_JUEGOS_V1 (2026-08-20): aquí vivían `.lchp-sb-ads`,
   `.lchp-sb-ads-label` y el recuadro `.lchp-sb-placeholder` («Tu publicidad
   aquí») de las dos zonas del lateral. Se van con el marcado que las usaba: el
   lateral pinta ahora el rail de LiteAPI, que trae su propio estilo. */

.lchp-sb-highlights {
    background: #293133;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lchp-sb-hi {
    font-size: .82rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}
.lchp-sb-hi:last-child { border-bottom: none; padding-bottom: 0; }

/* ── Host edit bar ─────────────────────────────────────── */
.lchp-hostbar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #1a1500;
    border: 1px solid #E2C48E;
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: .82rem;
}
.lchp-hostbar-label {
    font-weight: 700;
    color: #E2C48E;
    flex-shrink: 0;
}
.lchp-hostbar-label-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 6px;
    background: #E2C48E;
    color: var(--dark) !important;
    text-decoration: none;
    border: 1px solid #E2C48E;
    font-weight: 700;
    transition: background .15s;
}
.lchp-hostbar-label-link:hover { background: #F8D189; border-color: #F8D189; }
.lchp-hostbar-links { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.lchp-hostbar-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    background: #1a1500;
    border: 1px solid #3a3000;
    color: #E2C48E;
    transition: background .15s, border-color .15s;
}
.lchp-hostbar-link:hover { background: #2a2000; border-color: #E2C48E; }
.lchp-hostbar-back { background: #E2C48E; color: var(--dark) !important; border-color: #E2C48E; }
.lchp-hostbar-back:hover { background: #F8D189; border-color: #F8D189; }
.lchp-hostbar-edit { background: #25ac03; color: #fff !important; border-color: #25ac03; }
.lchp-hostbar-edit:hover { background: #1e8f02; }
.lchp-hostbar-tip { font-size: .72rem; color: #E2C48E; margin-left: auto; flex-shrink: 0; font-style: italic; opacity: .7; }

/* Edit hint inline */
.lchp-edit-hint {
    display: inline-flex;
    align-items: center;
    font-size: .72rem;
    font-weight: 600;
    color: #E2C48E !important;
    text-decoration: none;
    background: rgba(226,196,142,.12);
    border: 1px solid rgba(226,196,142,.3);
    border-radius: 4px;
    padding: 2px 8px;
    margin-left: 8px;
    transition: background .15s;
    white-space: nowrap;
}
.lchp-edit-hint:hover { background: rgba(226,196,142,.22); }

.lchp-edit-cta { color: #E2C48E !important; font-weight: 600; font-size: .82rem; text-decoration: none; }
.lchp-edit-cta:hover { text-decoration: underline; }

.lchp-empty--host {
    color: #E2C48E;
    background: rgba(226,196,142,.1);
    border-radius: 6px;
    padding: 10px 14px;
}

/* ── Error ─────────────────────────────────────────────── */
.lchp-err {
    padding: 1.5rem;
    color: #f87171;
    background: rgba(220,53,69,.1);
    border-radius: 10px;
    border: 1px solid rgba(220,53,69,.3);
}

/* ── Closure banners ───────────────────────────────────── */
.lchp-room-closure-banner {
    width: 100%;
    order: -1;
    background: rgba(248,209,137,.1);
    border-bottom: 1px solid rgba(226,196,142,.3);
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: #F8D189;
    display: flex;
    align-items: center;
    gap: 6px;
}
.lchp-room-closure-banner--now {
    background: rgba(220,53,69,.12);
    border-color: rgba(220,53,69,.3);
    color: #f87171;
}
.lchp-room-closure-reason { font-weight: 400; font-style: italic; color: inherit; opacity: .8; }
.lchp-room--closed .lchp-room-btn { background: #444; pointer-events: none; cursor: default; color: #888 !important; }
.lchp-room--closed .lchp-room-btn::after { content: ' (no disp.)'; font-size: .75em; }

.lchp-closure-banner {
    background: rgba(248,209,137,.1);
    border: 1px solid rgba(226,196,142,.3);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 14px;
    font-size: .88rem;
    font-weight: 600;
    color: #F8D189;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Single property extras ────────────────────────────── */
.lchp-sp-quickstats { display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 8px 0 4px; }
.lchp-sp-quickstats span { font-size: .85rem; color: var(--text); display: flex; align-items: center; gap: 5px; }
.lchp-sp-quickstats i { color: #E2C48E; font-size: .8rem; }
.lchp-sp-cancel { font-size: .82rem; color: #4CAF50; font-weight: 600; }
.lchp-sp-cancel i { color: #4CAF50; }

.lchp-sp-book-box {
    background: #828282;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
}
.lchp-sp-closed-notice {
    padding: 14px 16px;
    background: rgba(248,209,137,.1);
    border: 1px solid rgba(226,196,142,.3);
    border-radius: 10px;
    color: #F8D189;
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
}
.lchp-sp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
.lchp-sp-price { display: flex; align-items: baseline; gap: 5px; }
.lchp-sp-price strong { font-size: 1.6rem; font-weight: 800; color: #E2C48E; }
.lchp-sp-price span { font-size: .85rem; color: #777; }
.lchp-sp-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 24px;
    background: #E2C48E;
    color: var(--dark);
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s, transform .12s;
    white-space: nowrap;
}
.lchp-sp-book-btn:hover { background: #F8D189; transform: translateY(-1px); text-decoration: none; color: var(--dark); }
.lchp-sp-capacity { margin: 10px 0 0; font-size: .82rem; color: #777; }
.lchp-sp-cancel-note { margin: 6px 0 0; font-size: .82rem; color: #4CAF50; font-weight: 600; }
.lchp-sp-cancel-note i { margin-right: 4px; }

/* ══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 960px) {
    /* El ancho del lateral lo lleva el `clamp()` de arriba: aquí solo queda lo
       que de verdad depende de la ventana. */
    .lchp-strip { height: 240px; }
    .lchp-room-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (max-width: 768px) {
    /* HC_RAIL_DERECHA_V1: en el móvil, UNA columna y el lateral debajo de la
       ficha. Sus bloques se quedan APILADOS y no en fila como antes: ahora ahí
       dentro va el rail con su buscador, y en media pantalla no cabe al lado de
       los distintivos. */
    .lchp-cols { grid-template-columns: 1fr; }
    .lchp-sidebar { position: static; }
    .lchp-sidebar-inner { flex-direction: column; }
    .lchp-strip { height: 200px; }
    .lchp-strip-img { flex: 0 0 50%; }
    .lchp-strip-img:first-child { flex: 0 0 60%; }
    .lchp-dates-form { gap: 6px; }
    .lchp-dates-sep { display: none; }
    .lchp-room-strip { height: 130px; }
    .lchp-room-strip-img { flex: 0 0 180px; }
    .lchp-amen-groups { grid-template-columns: 1fr 1fr; }
    .lchp-map { height: 300px; }
    /* tile grid → horizontal scroll */
    .lchp-room-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #3a3a3a transparent;
        padding-bottom: 10px;
        gap: 10px;
    }
    .lchp-room-grid::-webkit-scrollbar { height: 4px; }
    .lchp-room-grid::-webkit-scrollbar-thumb { background: #3a3a3a; border-radius: 2px; }
    .lchp-tile { flex: 0 0 44vw; min-width: 130px; scroll-snap-align: start; }
}
@media (max-width: 520px) {
    .lchp-strip { height: 160px; }
    .lchp-strip-img { flex: 0 0 70%; }
    .lchp-strip-img:first-child { flex: 0 0 80%; }
    .lchp-hdr-top { flex-direction: column; }
    .lchp-name { font-size: 1.2rem; }
    .lchp-amen-groups { grid-template-columns: 1fr; }
    .lchp-subr { grid-template-columns: 90px 1fr 28px; }
    .lchp-map { height: 240px; }
    .lchp-sp-price-row { flex-direction: column; align-items: flex-start; }
    .lchp-sp-book-btn { width: 100%; justify-content: center; }
    .lchp-tile { flex: 0 0 42vw; }
    .lchp-tile-footer { flex-direction: column; gap: 5px; align-items: stretch; }
    .lchp-tile-btn { text-align: center; padding: 7px 8px; }
    .lc-seis-card { flex: 0 0 44vw; }
}

/* ── Hotel services block (lc_host_hotel_amenities) ─────── */
.lchp-hsv { display: flex; flex-direction: column; gap: 16px; }

.lchp-hsv-label {
    font-size: .8rem;
    font-weight: 700;
    color: #E2C48E;
    margin-bottom: 7px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.lchp-hsv-chips { display: flex; flex-wrap: wrap; gap: 7px; }

.lchp-hsv-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #1e2124;
    border: 1px solid rgba(226,196,142,.18);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: .8rem;
    color: #c8c8c8;
    white-space: nowrap;
    transition: border-color .15s;
}

.lchp-hsv-chip:hover { border-color: rgba(226,196,142,.45); }

.lchp-hsv-check {
    color: #4eba7f;
    font-weight: 700;
    font-size: .8rem;
    line-height: 1;
}

@media (max-width: 600px) {
    .lchp-hsv-chip { font-size: .75rem; padding: 4px 10px; }
}

/* ── Número habitación en tabla hotel dashboard ─────────── */
.lc-room-number-cell { white-space: nowrap; min-width: 90px; }
.lc-room-num-display { font-variant-numeric: tabular-nums; font-weight: 600; color: #E2C48E; margin-right: 4px; }
.lc-room-num-static { color: #555; }
.lc-btn-assign-room { background: transparent; border: 1px solid #444; color: #aaa; padding: 3px 5px; font-size: 11px; border-radius: 4px; cursor: pointer; vertical-align: middle; }
.lc-btn-assign-room:hover { color: #E2C48E; border-color: #E2C48E; }
.lc-room-num-edit { display: inline-flex; align-items: center; gap: 3px; }
.lc-room-num-input { width: 60px; padding: 3px 5px; background: #1a1a1a; border: 1px solid #555; color: #fff; border-radius: 4px; font-size: 12px; }
/* ── Reseñas: badge «verificado» + fotos ───────────────────────────── */
.lchp-rev-verified {
    display: flex; align-items: center; gap: 8px; margin: 6px 0;
    font-size: 13px; color: #3ddc84; font-weight: 600;
}
.lchp-rev-check {
    flex: 0 0 auto; width: 18px; height: 18px; border-radius: 4px;
    background: #22c55e; color: #fff; font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
}
.lchp-rev-photos {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 8px; margin-top: 8px;
}
.lchp-rev-photo {
    display: block; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden;
    background-size: cover; background-position: center; background-color: #eee;
}

/* ── Club de Viajeros: perfil del autor bajo la reseña ──────────────── */
.lchp-rev-traveler {
    display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0;
}
.lchp-tp-chip {
    font-size: 12px; line-height: 1.4; color: #e7decb;
    background: rgba(226,196,142,.14); border: 1px solid rgba(226,196,142,.25);
    border-radius: 20px; padding: 2px 10px; white-space: nowrap;
}

/* ================================================================
   LC_ACC21_HOTEL_V1 (2026-07-10) — acordeones MÓVILES de la página
   de hotel, mismo lenguaje que la ficha Single (LC_ACC21_V1):
   plashka dorada + chevron girando + panel animado (grid-rows).
   Solo ≤992px; el escritorio no cambia (el JS tampoco actúa allí).
   ================================================================ */
@media (max-width: 992px) {
    .lchp-acc-toggle {
        position: relative;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        margin: 8px 0 0;
        padding: 12px 34px 12px 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(226, 196, 142, 0.22);
        border-radius: 12px;
        font-size: 1.05rem;
    }

    .lchp-acc-toggle::after {
        content: "▾";
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s;
        color: #E2C48E;
        font-size: 14px;
        line-height: 1;
    }

    .lchp-acc-toggle.is-open::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .lchp-acc-toggle.is-open {
        border-radius: 12px 12px 0 0;
        border-bottom-color: transparent;
    }

    .lchp-acc-panel {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.28s ease;
    }

    .lchp-acc-panel.is-open {
        grid-template-rows: 1fr;
    }

    .lchp-acc-inner {
        overflow: hidden;
        min-height: 0;
        visibility: hidden;
        transition: visibility 0s 0.28s;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(226, 196, 142, 0.14);
        border-top: none;
        border-radius: 0 0 12px 12px;
        padding: 10px 12px;
    }

    .lchp-acc-panel.is-open > .lchp-acc-inner {
        visibility: visible;
        transition: visibility 0s;
    }

    .lchp-acc-count {
        margin-left: 8px;
        font-size: 0.78rem;
        font-weight: 500;
        color: rgba(226, 196, 142, 0.6);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lchp-acc-panel,
    .lchp-acc-inner,
    .lchp-acc-toggle::after {
        transition: none;
    }
}

/* LC_HOTEL_LICENSE_V1 (2026-07-11): línea de licencia/registro del hotel */
.lchp-license {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(226, 196, 142, 0.08);
    border: 1px solid rgba(226, 196, 142, 0.3);
    border-radius: 10px;
    color: #d8d2c4;
    font-size: 0.88rem;
}
.lchp-license strong { color: #E2C48E; }

/* LC_HOTEL_STARS_V1: categoría oficial, al lado de la licencia. */
.lchp-stars {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(226, 196, 142, 0.08);
    border: 1px solid rgba(226, 196, 142, 0.3);
    border-radius: 999px;
    font-size: .9rem;
}
.lchp-stars-icons { color: #E2C48E; letter-spacing: 2px; font-size: 1rem; }

/* LC_VIDEO_HOSTS_V2 (hotel): vídeos embebidos (mismo estilo que la ficha Single) */
.lchp-section .lc-spd-group{margin:0 0 12px;color:#E2C48E;font-size:1.05rem;font-weight:700;}
.lchp-section .lc-spd-videos{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:14px;}
.lchp-section .lc-spd-video{position:relative;padding-top:56.25%;border-radius:10px;overflow:hidden;background:#000;}
.lchp-section .lc-spd-video--vertical{padding-top:0;aspect-ratio:9/16;max-width:320px;}
.lchp-section .lc-spd-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.lchp-section .lc-spd-video-link{display:inline-flex;align-items:center;gap:6px;color:#E2C48E;text-decoration:none;padding:8px 0;}

/* HC_RAIL_DERECHA_V1: aquí vivía el modo MINIATURA de este lateral —una
   `@container` que encogía el precio, el botón y los distintivos por debajo de
   190 px—. Se va con las dos columnas en el móvil: la columna ya nunca baja de
   240 px, así que el diseño de siempre cabe entero. */
