/* ─── Design tokens (Figma → CSS custom properties) ────────────────────── */
:root {
    --ls-white:     #ffffff;
    --ls-black:     #000000;
    --ls-dark:      #1a1a1a;
    --ls-footer-bg: #1e1e1e;
    --ls-grey-light:#ededef;
    --ls-grey-mid:  #d9d9d9;

    --ls-font:      'Host Grotesk', sans-serif;

    /* Figma type scale */
    --ls-fs-display: clamp(3rem, 6vw, 4.625rem);   /* 74px */
    --ls-fs-h2:      clamp(2rem, 4vw, 3rem);        /* 48px */
    --ls-fs-h3:      clamp(1.5rem, 3vw, 2.25rem);   /* 36px */
    --ls-fs-lead:    clamp(1.25rem, 2vw, 1.75rem);  /* 28px */
    --ls-fs-body:    clamp(1.1rem, 1.8vw, 1.5625rem);/* 25px */
    --ls-fs-nav:     1.25rem;                        /* 20px */
    --ls-fs-tag:     1.125rem;                       /* 18px */
    --ls-fs-sm:      1rem;

    --ls-header-h:  80px;
    --ls-radius:    0px;
    --ls-transition: 0.3s ease;
}

/* ─── Reset / Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--ls-font);
    font-size: var(--ls-fs-sm);
    color: var(--ls-black);
    background: var(--ls-white);
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.ls-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--ls-header-h);
    transition: background var(--ls-transition), border-color var(--ls-transition);
}
.ls-header--dark  { background: transparent; }
.ls-header--light { background: var(--ls-white); border-bottom: 1px solid rgba(0,0,0,0.08); }

.ls-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

/* Logo centered */
.ls-header__logo {
    display: flex; align-items: center; justify-content: center;
}
.ls-header__logo-img { height: 40px; width: auto; }

/* Show white logo on dark header, black on light */
.ls-header--dark  .ls-header__logo-img--white { display: block; }
.ls-header--dark  .ls-header__logo-img--black { display: none; }
.ls-header--light .ls-header__logo-img--white { display: none; }
.ls-header--light .ls-header__logo-img--black { display: block; }
.ls-header__logo-img:only-child { display: block; }

/* Right side */
.ls-header__right {
    display: flex; align-items: center; justify-content: flex-end;
}

.ls-header__obras {
    font-size: var(--ls-fs-nav);
    font-weight: 600;
    letter-spacing: 0.01em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}
.ls-header--dark  .ls-header__obras { color: var(--ls-white); }
.ls-header--light .ls-header__obras { color: var(--ls-black); }
.ls-header__obras span { text-decoration: underline; }

/* Burger */
.ls-header__burger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    padding: 6px; width: 40px; height: 40px;
}
.ls-header__burger span {
    display: block; width: 28px; height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
}
.ls-header--dark  .ls-header__burger { color: var(--ls-white); }
.ls-header--light .ls-header__burger { color: var(--ls-black); }

/* Burger → X when open */
.ls-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ls-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.ls-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Off-canvas backdrop ────────────────────────────────────────────────── */
.ls-offcanvas-backdrop {
    position: fixed; inset: 0; z-index: 199;
    background: transparent;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}
.ls-offcanvas-backdrop.is-open { opacity: 1; pointer-events: all; }

/* ─── Off-canvas panel ───────────────────────────────────────────────────── */
.ls-offcanvas {
    position: fixed;
    top: 0; left: 0;
    width: 40vw;
    height: 100dvh;
    z-index: 200;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: var(--ls-white);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.ls-offcanvas.is-open { transform: translateX(0); }

/* Panel header row */
.ls-offcanvas__header {
    display: flex;
    align-items: center;
    padding: 2rem 2.5rem;
    flex-shrink: 0;
}

.ls-offcanvas__close {
    background: none; border: none; cursor: pointer;
    color: var(--ls-white);
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0;
    transition: opacity var(--ls-transition);
}
.ls-offcanvas__close:hover { opacity: 0.6; }
.ls-offcanvas__close-circle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.ls-offcanvas__close-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--ls-white);
}

/* Nav links */
.ls-offcanvas__nav {
    flex: 1;
    padding: 2rem 2.5rem 1rem;
}
.ls-offcanvas__list { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }
.ls-offcanvas__list li { border: none; }
.ls-offcanvas__list a {
    display: block;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 600;
    color: var(--ls-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    padding: 0.2rem 0;
    transition: opacity var(--ls-transition);
}
.ls-offcanvas__list a:hover { opacity: 0.5; }
.ls-offcanvas__list .current-menu-item > a,
.ls-offcanvas__list .current_page_item > a { opacity: 0.35; }

@media (max-width: 767px) {
    .ls-offcanvas { width: 85vw; }
    .ls-offcanvas__list a { font-size: clamp(2rem, 8vw, 3rem); }
}

/* Panel footer: social icons */
.ls-offcanvas__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ls-offcanvas__lang {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ls-offcanvas__lang-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--ls-transition);
}
.ls-offcanvas__lang-link--active { color: var(--ls-white); text-decoration: underline; }
.ls-offcanvas__lang-link:hover   { color: var(--ls-white); }

.ls-offcanvas__social {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--ls-transition);
    display: flex; align-items: center;
}
.ls-offcanvas__social:hover { color: var(--ls-white); }

/* ─── Hero Slider ────────────────────────────────────────────────────────── */
.ls-hero {
    position: relative;
    height: 100svh; min-height: 600px;
    overflow: hidden;
}

.ls-hero__slider { position: relative; width: 100%; height: 100%; }

.ls-hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease;
}
.ls-hero__slide--active { opacity: 1; z-index: 1; }

.ls-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}

.ls-hero__content {
    position: absolute; bottom: 6rem; left: 2rem; right: 2rem;
    z-index: 2; color: var(--ls-white);
}

.ls-hero__title {
    font-size: var(--ls-fs-display);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.02em;
}
.ls-hero__title a { color: var(--ls-white); }

.ls-hero__year {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0.5rem;
    opacity: 0.85;
}

.ls-hero__dots {
    position: absolute; bottom: 2rem;
    left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 0.5rem;
}
.ls-hero__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4); border: none; cursor: pointer;
    transition: background var(--ls-transition), transform var(--ls-transition);
}
.ls-hero__dot--active { background: var(--ls-white); transform: scale(1.3); }

.ls-hero__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3; background: transparent;
    border: 1.5px solid rgba(255,255,255,0.7); border-radius: 50%; cursor: pointer;
    color: var(--ls-white); width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--ls-transition), border-color var(--ls-transition);
}
.ls-hero__arrow:hover { background: rgba(255,255,255,0.2); border-color: var(--ls-white); }
.ls-hero__arrow--prev { left: 1.5rem; }
.ls-hero__arrow--next { right: 1.5rem; }

/* ─── About section ──────────────────────────────────────────────────────── */
.ls-about { padding: 6rem 0; }
.ls-about__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.ls-about__logo  { max-width: 234px; }
.ls-about__text  { font-size: var(--ls-fs-body); line-height: 1.5; }
.ls-about__text p { margin-bottom: 1rem; }

.ls-about__lead {
    font-size: var(--ls-fs-lead);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.ls-about__body {
    font-size: var(--ls-fs-body);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.ls-about__cta { margin-top: 1rem; }

/* ─── Featured Productions ───────────────────────────────────────────────── */
.ls-featured { padding: 0; }

.ls-featured__header { padding: 3.5rem 2rem 2rem; text-align: center; }
.ls-featured__heading {
    font-size: var(--ls-fs-h2);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Featured slider with side margins */
.ls-featured__slider {
    position: relative;
    width: calc(100% - 4rem);
    margin: 0 2rem;
    height: 90vh;
    min-height: 480px;
    max-height: 820px;
    overflow: hidden;
    border-radius: 4px;
}

.ls-featured__slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.ls-featured__slide--active { opacity: 1; z-index: 1; }

.ls-featured__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.0) 50%
    );
}

.ls-featured__content {
    position: absolute;
    top: calc(var(--ls-header-h) + 2rem);
    left: 2rem; right: 8rem;
    z-index: 2;
    color: var(--ls-white);
}
.ls-featured__title {
    font-size: var(--ls-fs-h2);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}
.ls-featured__title a { color: var(--ls-white); }
.ls-featured__title a:hover { opacity: 0.8; }
.ls-featured__year {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0.5rem;
    opacity: 0.85;
}

/* Arrows */
.ls-featured__arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 3;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.7); border-radius: 50%;
    color: var(--ls-white);
    width: 52px; height: 52px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--ls-transition), border-color var(--ls-transition);
}
.ls-featured__arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--ls-white);
}
.ls-featured__arrow--prev { left: 1.5rem; }
.ls-featured__arrow--next { right: 1.5rem; }

/* Dots */
.ls-featured__dots {
    position: absolute;
    bottom: 1.75rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex; gap: 0.6rem;
}
.ls-featured__dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none; cursor: pointer;
    transition: background var(--ls-transition), transform var(--ls-transition);
}
.ls-featured__dot--active {
    background: var(--ls-white);
    transform: scale(1.3);
}

/* Footer link */
.ls-featured__video,
.ls-hero__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.ls-featured__footer { padding: 1.75rem 2rem 3.5rem; text-align: center; }
.ls-featured__all {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: var(--ls-fs-nav);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--ls-black);
    transition: opacity var(--ls-transition);
}
.ls-featured__all:hover { opacity: 0.55; }

@media (max-width: 767px) {
    .ls-featured__slider { height: 60vh; min-height: 360px; }
    .ls-featured__content { bottom: 3rem; left: 1.25rem; right: 1.25rem; }
    .ls-featured__header { padding: 2.5rem 1.25rem 1.5rem; }
    .ls-featured__footer { padding: 1.25rem 1.25rem 2.5rem; }
}

/* ─── Production Card ────────────────────────────────────────────────────── */
.ls-card { position: relative; overflow: hidden; }
.ls-card__link { display: block; }

.ls-card__image-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 12/8;
}
.ls-card__image {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.ls-card__link:hover .ls-card__image { transform: scale(1.04); }
.ls-card__image--placeholder { background: var(--ls-grey-mid); width: 100%; height: 100%; }

.ls-card__badge { display: none; }

.ls-card__body { padding: 1rem 0; }
.ls-card__title {
    font-size: 1.25rem; font-weight: 600;
    line-height: 1.2; margin-bottom: 0.4rem;
}
.ls-card__meta { display: flex; gap: 0.5rem; align-items: center; }
.ls-card__cat  { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.ls-card__year { font-size: 0.9rem; color: rgba(0,0,0,0.5); }
.ls-card__cat + .ls-card__year::before { content: '|'; margin-right: 0.5rem; opacity: 0.4; }

/* ─── Archive ────────────────────────────────────────────────────────────── */
.ls-archive { padding-top: 0; }

.ls-archive__hero {
    background: var(--ls-white);
    color: var(--ls-black);
    padding: calc(var(--ls-header-h) + 4rem) 2rem 4rem;
}

/* Archive: transparent header with dark text over white background */
.post-type-archive-produccion .ls-header--dark .ls-header__logo-img--white,
.tax-categoria .ls-header--dark .ls-header__logo-img--white { display: none; }

.post-type-archive-produccion .ls-header--dark .ls-header__logo-img--black,
.tax-categoria .ls-header--dark .ls-header__logo-img--black { display: block; }

.post-type-archive-produccion .ls-header--dark .ls-header__obras,
.tax-categoria .ls-header--dark .ls-header__obras { color: var(--ls-black); }

.post-type-archive-produccion .ls-header--dark .ls-header__burger,
.tax-categoria .ls-header--dark .ls-header__burger { color: var(--ls-black); }
.ls-archive__title {
    font-size: var(--ls-fs-display);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.ls-archive__filters { padding: 2rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
.ls-archive__tabs { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.ls-archive__tab {
    font-size: var(--ls-fs-tag);
    font-weight: 500;
    opacity: 0.45;
    transition: opacity var(--ls-transition);
    white-space: nowrap;
    display: inline-flex; align-items: baseline; gap: 0.35rem;
}
.ls-archive__tab:hover,
.ls-archive__tab--active { opacity: 1; }
.ls-archive__tab-count {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.65;
}

.ls-archive__grid { padding: 3rem 2rem 4rem; }
.ls-archive__empty { font-size: 1.25rem; opacity: 0.5; }

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.ls-pagination { padding: 0 2rem 4rem; }
.ls-pagination .page-numbers { display: inline-flex; }
.ls-pagination ul { display: flex; gap: 0.5rem; list-style: none; padding: 0; }
.ls-pagination .page-numbers li a,
.ls-pagination .page-numbers li span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1.5px solid var(--ls-black);
    font-size: 0.9rem; font-weight: 500;
    transition: background var(--ls-transition), color var(--ls-transition);
}
.ls-pagination .page-numbers li .current,
.ls-pagination .page-numbers li a:hover {
    background: var(--ls-black); color: var(--ls-white);
}

/* ─── Single Production ──────────────────────────────────────────────────── */
.ls-single { padding-top: 0; }

.ls-single__hero {
    position: relative;
    height: 100svh; min-height: 600px;
    background-image: var(--bg-desktop);
    background-size: cover; background-position: center;
    display: flex; align-items: flex-end;
}
@media (max-width: 767px) {
    .ls-single__hero { background-image: var(--bg-mobile); }
}
.ls-single__hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}
.ls-single__hero-content {
    position: relative; z-index: 1;
    padding: 4rem 2rem;
    color: var(--ls-white);
}
/* Hero play button */
.ls-hero-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--ls-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--ls-transition), transform var(--ls-transition);
    backdrop-filter: blur(4px);
}
.ls-hero-play:hover {
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(1.08);
}
.ls-hero-play svg { margin-left: 4px; }

/* Video modal */
.ls-video-modal {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.ls-video-modal.is-open { opacity: 1; pointer-events: all; }
.ls-video-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.9);
}
.ls-video-modal__box {
    position: relative; z-index: 1;
    width: 90vw; max-width: 1100px;
}
.ls-video-modal__close {
    position: absolute; top: -48px; right: 0;
    background: none; border: none; cursor: pointer;
    color: var(--ls-white); padding: 0.5rem;
    transition: opacity var(--ls-transition);
}
.ls-video-modal__close:hover { opacity: 0.7; }
.ls-video-modal__frame { width: 100%; aspect-ratio: 16/9; }
.ls-video-modal__frame iframe {
    width: 100%; height: 100%; border: none;
}

.ls-single__tags { display: flex; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.ls-single__tag {
    font-size: var(--ls-fs-tag); font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.6);
    padding: 0.2rem 0.75rem;
    transition: border-color var(--ls-transition);
}
.ls-single__tag:hover { border-color: var(--ls-white); }
.ls-single__tag--estado { background: var(--ls-white); color: var(--ls-black); border-color: var(--ls-white); }

.ls-single__title {
    font-size: var(--ls-fs-display);
    font-weight: 600; letter-spacing: -0.02em; line-height: 1.0;
}
.ls-single__year { font-size: 1.5rem; font-weight: 300; margin-top: 0.5rem; opacity: 0.8; }

/* Gallery */
.ls-single__gallery { position: relative; overflow: hidden; }
.ls-single__gallery-slider {
    position: relative;
    width: 100%;
    height: 90vh; min-height: 400px;
}
.ls-single__gallery-item {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.7s ease;
}
.ls-single__gallery-item--active { opacity: 1; z-index: 1; }
.ls-single__gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.ls-single__gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.7); border-radius: 50%; cursor: pointer;
    color: var(--ls-white); width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    transition: background var(--ls-transition), border-color var(--ls-transition);
}
.ls-single__gallery-arrow:hover { background: rgba(255,255,255,0.2); border-color: var(--ls-white); }
.ls-single__gallery-arrow--prev { left: 1rem; }
.ls-single__gallery-arrow--next { right: 1rem; }

.ls-single__gallery-dots {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.5rem; z-index: 2;
}
.ls-single__gallery-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5); border: none; cursor: pointer;
    transition: background var(--ls-transition);
}
.ls-single__gallery-dot--active { background: var(--ls-white); }

/* Content section (main text + sidebar) */
.content-section { padding: 5rem 2rem; }
.content-section h4 { margin-bottom: 30px; }
.data-obra {
    display: block;
    font-size: 1rem; line-height: 1.4;
    padding: 0.65rem 0;
    margin-bottom: 0;
    font-weight: 400; color: rgba(0,0,0,0.55);
}
.data-obra span { display: block; font-weight: 600; color: var(--ls-black); }
.texto_afiche { font-size: 0.9rem; line-height: 1.5; opacity: 0.7; margin: 1.25rem 0; }
.content-produccion .col-4 > img { margin-top: 3rem; }
.btn-accion {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 80%; height: 48px;
    padding: 0 1.25rem;
    border: 1.5px solid var(--ls-black);
    border-radius: 24px;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
    color: var(--ls-black);
    margin-top: 0.75rem;
    transition: background var(--ls-transition), color var(--ls-transition);
    text-decoration: none;
}
.btn-accion:hover { background: var(--ls-black); color: var(--ls-white); }
.btn-accion img { display: inline-block; vertical-align: middle; width: 18px; height: 18px; margin-top: 0; }
.btn-accion:hover img { filter: invert(1); }

/* Ficha */
.ls-single__ficha {
    padding: 5rem 2rem;
    background: var(--ls-white);
    border-top: 1.5px solid rgba(0,0,0,0.15);
}
.ls-single__section-title {
    font-size: var(--ls-fs-lead); font-weight: 700;
    margin-bottom: 2.5rem; letter-spacing: -0.01em;
}
.ls-credits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}
.ls-credits__item { }
.ls-credits__role {
    display: block;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    opacity: 0.45; margin-bottom: 0.35rem;
}
.ls-credits__name {
    display: block;
    font-size: 1rem; font-weight: 500; line-height: 1.4;
}

/* Citas */
.ls-single__citas { background: var(--ls-black); color: var(--ls-white); }
/* Citas slider */
.ls-citas-slider {
    position: relative;
    overflow: hidden;
}
.ls-cita {
    display: none;
    align-items: stretch;
    min-height: 320px;
}
.ls-cita--active { display: flex; }
.ls-cita__img {
    flex: 0 0 25%; max-width: 25%;
    overflow: hidden;
    margin: 40px 0 40px 40px;
}
.ls-cita__img img { width: 100%; height: 100%; object-fit: cover; }
.ls-cita__body {
    flex: 1; padding: 3rem 3rem;
    display: flex; flex-direction: column; justify-content: center; gap: 2rem;
}
.ls-cita__quote {
    font-size: var(--ls-fs-lead); font-weight: 400; line-height: 1.4;
    quotes: "\201C" "\201D";
    border: none; margin: 0; padding: 0;
}
.ls-cita__quote::before { content: open-quote; }
.ls-cita__quote::after  { content: close-quote; }
.ls-cita__quote p { display: inline; }
.ls-cita__author { display: flex; align-items: center; gap: 1rem; }
.ls-cita__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ls-cita__name { font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
.ls-cita__role { font-size: 0.85rem; opacity: 0.55; }
.ls-citas-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none; cursor: pointer;
    color: var(--ls-white); width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--ls-transition); z-index: 2;
}
.ls-citas-arrow:hover { background: rgba(255,255,255,0.3); }
.ls-citas-arrow--prev { left: 1rem; }
.ls-citas-arrow--next { right: 1rem; }

/* Videos */
.ls-single__videos { padding: 5rem 2rem; background: var(--ls-grey-light); }
.ls-single__video-wrap { max-width: 900px; margin: 0 auto; }
.ls-single__video-wrap iframe,
.ls-single__video-wrap embed,
.ls-single__video-wrap object { width: 100%; aspect-ratio: 16/9; height: auto; border: none; }

/* Prensa */
.ls-single__prensa { padding: 5rem 2rem; }
.ls-prensa-slider {
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}
.ls-prensa-card {
    display: none;
    gap: 1rem; align-items: flex-start;
    padding: 1.5rem;
    border: 1.5px solid rgba(0,0,0,0.1);
    transition: border-color var(--ls-transition);
}
.ls-prensa-card--active { display: flex; }
.ls-prensa-card:hover { border-color: var(--ls-black); }
.ls-prensa-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.08); border: none; cursor: pointer;
    color: var(--ls-black); width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--ls-transition); z-index: 2;
}
.ls-prensa-arrow:hover { background: rgba(0,0,0,0.18); }
.ls-prensa-arrow--prev { left: -1.5rem; }
.ls-prensa-arrow--next { right: -1.5rem; }
.ls-prensa-card__img-wrap { flex: 0 0 100px; }
.ls-prensa-card__img-wrap img { width: 100px; height: 70px; object-fit: cover; }
.ls-prensa-card__medio { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.5; margin-bottom: 0.3rem; }
.ls-prensa-card__titulo { font-size: 1rem; font-weight: 500; line-height: 1.4; }

/* Related */
.ls-single__related { padding: 5rem 2rem; }
.ls-single__related-title {
    font-size: var(--ls-fs-h2); font-weight: 600;
    letter-spacing: -0.02em; margin-bottom: 2.5rem;
    text-align: center;
}
.ls-single__related .ls-card__image-wrap { aspect-ratio: 12/8; }

/* Single — cita responsive */
@media (max-width: 768px) {
    .ls-cita                { flex-direction: column; }
    .ls-cita__img           { flex: none; width: 100%; max-width: 100%; height: 260px; margin: 0; }
    .ls-cita__body          { padding: 2.5rem 1.25rem; }
    .ls-cita__quote         { font-size: var(--ls-fs-lead); }
}

/* ─── Podcast Single ────────────────────────────────────────────────────── */

/* Header: dark text on white bg for podcast pages */
/* Podcast hero: cover left (white) + title right (black) */
.ls-podcast__hero {
    display: flex;
    min-height: 55vh;
}
.ls-podcast__hero-cover {
    flex: 0 0 30%;
    background: var(--ls-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}
.ls-podcast__cover {
    max-width: 100%;
    max-height: 380px;
    width: auto;
    display: block;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.ls-podcast__hero-info {
    flex: 1;
    background: var(--ls-black);
    color: var(--ls-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem 3.5rem calc(var(--ls-header-h) + 3rem);
}
.ls-podcast__hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 1rem;
    display: block;
}
.ls-podcast__hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
    color: var(--ls-white);
}

/* Podcast content section */
.ls-podcast__content-section {
    padding: 4rem 2rem;
}
.ls-podcast__sidebar-cover {
    width: 100%;
    max-width: 220px;
    display: block;
    margin: 1.5rem 0;
}

@media (max-width: 767px) {
    .ls-podcast__hero { flex-direction: column; min-height: auto; }
    .ls-podcast__hero-cover { flex: none; padding: calc(var(--ls-header-h) + 1.5rem) 1.5rem 1.5rem; }
    .ls-podcast__cover { max-height: 240px; }
    .ls-podcast__hero-info { padding: 2rem 1.5rem 2.5rem; }
    .ls-podcast__hero-title { font-size: 2rem; }
}

.ls-single__tags--dark { margin-bottom: 1.25rem; }
.ls-single__tag--dark {
    font-size: var(--ls-fs-tag); font-weight: 500;
    border: 1.5px solid rgba(0,0,0,0.3);
    padding: 0.2rem 0.75rem;
    color: var(--ls-black);
    transition: border-color var(--ls-transition);
}
.ls-single__tag--dark:hover { border-color: var(--ls-black); }

.ls-podcast__title {
    font-size: var(--ls-fs-h2); font-weight: 600;
    letter-spacing: -0.02em; line-height: 1.05;
    margin-bottom: 1.25rem;
}

.ls-podcast__content {
    font-size: var(--ls-fs-body); line-height: 1.6;
    margin-bottom: 2rem;
}
.ls-podcast__content p { margin-bottom: 0.75rem; }

/* Episode list */
.ls-podcast__episodes {
    display: flex; flex-direction: column;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.ls-podcast__episode {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: var(--ls-black);
    transition: background var(--ls-transition);
    text-decoration: none;
}
.ls-podcast__episode:hover { opacity: 0.7; }

.ls-podcast__episode-img {
    flex: 0 0 64px;
    width: 64px; height: 64px;
    overflow: hidden;
}
.ls-podcast__episode-img img { width: 100%; height: 100%; object-fit: cover; }

.ls-podcast__episode-body { flex: 1; min-width: 0; }
.ls-podcast__episode-num {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    opacity: 0.4; margin-bottom: 0.2rem;
}
.ls-podcast__episode-title {
    font-size: 0.95rem; font-weight: 600; line-height: 1.3;
    margin-bottom: 0.2rem;
}
.ls-podcast__episode-desc {
    font-size: 0.82rem; opacity: 0.55; line-height: 1.4;
}
.ls-podcast__episode-arrow { flex-shrink: 0; opacity: 0.4; }

/* Dark variant for data-obra and btn-accion on white bg */
.data-obra--dark { color: rgba(0,0,0,0.55); }
.data-obra--dark span { color: var(--ls-black); }
.texto_afiche--dark { color: var(--ls-black); }
.btn-accion--dark {
    border-color: var(--ls-black);
    color: var(--ls-black);
}
.btn-accion--dark:hover { background: var(--ls-black); color: var(--ls-white); }
.btn-accion--dark:hover img { filter: invert(1); }

/* Podcast responsive */
@media (max-width: 767px) {
    /* podcast hero — handled in podcast block above */
}

/* ─── Partners / Marquee ─────────────────────────────────────────────────── */
.ls-partners {
    background: var(--ls-black);
    padding: 4rem 0;
    overflow: hidden;
}
.ls-partners__header { padding: 0 2rem 2rem; text-align: center; }
.ls-partners__title {
    font-size: var(--ls-fs-h3);
    font-weight: 600;
    color: var(--ls-white);
}

.ls-marquee { overflow: hidden; }
.ls-marquee__track {
    display: flex; gap: 3rem;
    width: max-content;
    animation: ls-marquee-scroll 45s linear infinite;
}
.ls-marquee:hover .ls-marquee__track { animation-play-state: paused; }
.ls-marquee__item {
    display: flex; align-items: center;
    flex: 0 0 auto;
}
.ls-marquee__item img { height: 200px; width: auto; filter: invert(0); opacity: 1; }

@keyframes ls-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.ls-footer {
    background: var(--ls-footer-bg);
    color: var(--ls-white);
}
.ls-footer__inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 90px 2.5rem;
    max-width: 100%;
}

/* Logo */
.ls-footer__logo { height: 36px; width: auto; }

/* Nav — grows to fill space, links horizontal */
.ls-footer__nav { flex: 1; margin-left: 4rem; }
.ls-footer__nav-list {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    list-style: none;
    margin: 0; padding: 0;
}
.ls-footer__nav-list li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ls-white);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--ls-transition);
}
.ls-footer__nav-list li a:hover { opacity: 0.7; }

/* Language switcher */
.ls-footer__lang-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.ls-footer__lang {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color var(--ls-transition);
}
.ls-footer__lang--active { color: var(--ls-white); }
.ls-footer__lang:hover   { color: var(--ls-white); }

/* Circle icon buttons (Instagram + Back to top) */
.ls-footer__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--ls-white);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    transition: border-color var(--ls-transition), background var(--ls-transition);
}
.ls-footer__icon-btn:hover {
    border-color: var(--ls-white);
    background: rgba(255,255,255,0.08);
}

/* Mobile footer */
@media (max-width: 767px) {
    .ls-footer__inner {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .ls-footer__logo-wrap { order: 1; flex: 0 0 100%; }
    .ls-footer__nav       { order: 2; flex: 0 0 100%; }
    .ls-footer__nav-list  { flex-wrap: wrap; gap: 1rem 1.5rem; }
    .ls-footer__lang-wrap { order: 3; }
    .ls-footer__icon-btn  { order: 4; }
    .ls-footer__back-top  { order: 5; margin-left: auto; }
}

/* ─── Quiénes Somos ──────────────────────────────────────────────────────── */

/* Hero sits behind transparent header (same as single-produccion) */
.ls-nosotros { padding-top: 0; background: var(--ls-black); color: var(--ls-white); }

.ls-nosotros__hero {
    position: relative;
    height: 100svh; min-height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: flex-end;
}
.ls-nosotros__hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}
.ls-nosotros__hero-title {
    position: relative; z-index: 1;
    font-size: var(--ls-fs-display); font-weight: 600;
    color: var(--ls-white); letter-spacing: -0.02em;
    padding: 4rem 2rem;
}

/* About — 2-column layout */
.ls-nosotros__about {
    padding: 5rem 2rem;
}
.ls-nosotros__intro {
    font-size: 1.75rem; /* 28px */
    font-weight: 500;
    line-height: 1.3;
}
.ls-nosotros__intro p,
.ls-nosotros__body p { line-height: 1.3; }
.ls-nosotros__body { font-size: 1.75rem; /* 28px */ font-weight: 400; line-height: 1.3; }

.ls-nosotros__section-title {
    font-size: var(--ls-fs-h2); font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

/* Team — horizontal rows */
.ls-nosotros__team {
    padding: 5rem 2rem;
}
.ls-team-list {
    display: flex; flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.ls-team-member {
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ls-team-member__photo-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1rem;
}
.ls-team-member__photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%);
}
.ls-team-member__name { font-size: calc(1.05rem + 2px); font-weight: 600; margin-bottom: 0.2rem; text-align: center; }
.ls-team-member__role { font-size: 0.85rem; opacity: 0.5; text-align: center; }
.ls-team-member__bio {
    font-size: 1rem;
    line-height: 1.65;
}
.ls-team-member__bio p { margin-bottom: 1rem; }
.ls-team-member__bio p:last-child { margin-bottom: 0; }

/* Directoras Invitadas — dark section, 4-col grid */
.ls-nosotros__guests {
    padding: 5rem 2rem;
    background: var(--ls-black);
    color: var(--ls-white);
}
.ls-nosotros__guests .ls-nosotros__section-title {
    color: var(--ls-white);
    text-align: center;
}

/* Directoras card */
.ls-team-card { text-align: center; }
.ls-team-card__img-wrap {
    aspect-ratio: 1/1; overflow: hidden;
    margin-bottom: 0.75rem;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
}
.ls-team-card__img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%);
}
.ls-team-card__name {
    font-size: 1.1rem; font-weight: 600;
}
.ls-team-card__role { font-size: 0.85rem; opacity: 0.55; margin-top: 0.2rem; }

/* ─── Contacto ───────────────────────────────────────────────────────────── */
.ls-contacto {
    padding-top: 0;
    background: var(--ls-black);
    color: var(--ls-white);
}

.ls-contacto__hero {
    padding: calc(var(--ls-header-h) + 3rem) 2rem 3rem;
}
.ls-contacto__title {
    font-size: var(--ls-fs-display); font-weight: 600;
    letter-spacing: -0.02em; line-height: 1.0;
}

.ls-contacto__body { padding: 2rem 2rem 4rem; }
.ls-contacto__lead {
    font-size: var(--ls-fs-lead); font-weight: 400;
    line-height: 1.3;
}

.ls-contacto__links { display: flex; flex-direction: column; gap: 1.25rem; }
.ls-contacto__link {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 1.1rem; font-weight: 400;
    color: var(--ls-white);
    transition: opacity var(--ls-transition);
}
.ls-contacto__link:hover { opacity: 0.7; }

.ls-contacto__link-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 8px;
    transition: border-color var(--ls-transition);
}
.ls-contacto__link:hover .ls-contacto__link-icon { border-color: var(--ls-white); }

.ls-contacto__divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 3rem 0 0;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.ls-btn {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: var(--ls-font);
    font-size: var(--ls-fs-nav); font-weight: 600;
    padding: 0.75rem 1.5rem;
    cursor: pointer; border: 1.5px solid transparent;
    transition: background var(--ls-transition), color var(--ls-transition), border-color var(--ls-transition);
}
.ls-btn--outline {
    background: transparent;
    border: none;
    color: var(--ls-black);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}
.ls-btn--outline:hover { opacity: 0.6; }
.ls-btn--white {
    background: var(--ls-white); color: var(--ls-black);
}
.ls-btn--white:hover { background: rgba(255,255,255,0.8); }

/* ─── Generic page ───────────────────────────────────────────────────────── */
.ls-page {
    padding-top: calc(var(--ls-header-h) + 4rem);
    padding-bottom: 5rem;
    max-width: 900px;
}
.ls-page__title {
    font-size: var(--ls-fs-h2); font-weight: 600;
    margin-bottom: 2rem;
}
.ls-page__body { font-size: var(--ls-fs-body); line-height: 1.6; }

/* ─── Footer Portada image ───────────────────────────────────────────────── */
.ls-footer-portada {
    background-position: center center;
    background-size: cover;
    height: 80vh;
    width: 100%;
}

/* ─── Scroll padding for fixed header ───────────────────────────────────── */
html { scroll-padding-top: var(--ls-header-h); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */

/* Large tablet (≤ 1024px) */
@media (max-width: 1024px) {
    /* footer single-bar — no grid rules needed */
    .ls-marquee__item img   { height: 130px; }
    .ls-marquee__track      { gap: 2rem; }
}

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
    .ls-hero__content           { bottom: 4rem; left: 1.5rem; right: 1.5rem; }
    .ls-credits                 { grid-template-columns: repeat(2, 1fr); }
    .ls-single__gallery-slider  { height: 70vh; }
    .ls-header__inner           { padding: 0 1.25rem; }
    .ls-archive__tabs           { gap: 1rem; }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    /* Header */
    .ls-header__inner           { padding: 0 1rem; }

    /* About */
    .ls-about__logo-col         { margin-bottom: 2rem; }

    /* Featured slider — remove wrong side padding, keep height from inline block above */
    .ls-featured__heading       { padding: 0 1.25rem; }
    .ls-featured__slider        { padding: 0; }
    .ls-featured__footer        { padding: 1.5rem 1.25rem 2.5rem; }

    /* Archive */
    .ls-archive__hero           { padding: calc(var(--ls-header-h) + 2rem) 1rem 1.5rem; }
    .ls-archive__filters        { padding: 1.5rem 1rem; }
    .ls-archive__tabs           { gap: 1rem; }
    .ls-archive__grid           { padding: 2rem 1rem 3rem; }

    /* Single production */
    .ls-single__hero-content    { padding: 2rem 1rem; }
    .ls-single__title           { font-size: clamp(1.75rem, 7vw, 3rem); }
    .ls-single__gallery-slider  { height: 55vh; min-height: 280px; }
    .ls-single__ficha           { padding: 3rem 1rem; }
    .ls-single__related         { padding: 3rem 1rem; }
    .content-section            { padding: 3rem 1rem; }
    .btn-accion                 { width: 100%; }
    .ls-credits                 { grid-template-columns: 1fr; }
    .ls-cita                    { min-height: auto; }
    .ls-podcast__hero           { padding: calc(var(--ls-header-h) + 1.5rem) 1rem 2rem; }

    /* Arrows */
    .ls-hero__arrow,
    .ls-featured__arrow,
    .ls-single__gallery-arrow   { width: 40px; height: 40px; }

    /* Footer portada */
    .ls-footer-portada          { height: 50vh; }

    /* Video modal */
    .ls-video-modal__box        { width: 95vw; }
    .ls-video-modal__close      { top: -36px; right: 0; }

    /* Partners / Marquee */
    .ls-marquee__item img       { height: 80px; }
    .ls-marquee__track          { gap: 1.5rem; }
    .ls-partners__header        { padding: 0 1rem 2rem; }

    /* Footer — handled in footer block above */

    /* Quiénes Somos */
    .ls-nosotros__about         { padding: 3rem 1rem; }
    .ls-nosotros__hero-title    { padding: 2rem 1rem; }
    .ls-nosotros__team          { padding: 3rem 1rem; }
    .ls-nosotros__guests        { padding: 3rem 1rem; }
    .ls-nosotros__intro         { font-size: var(--ls-fs-body); }
    .ls-team-member             { padding: 2.5rem 0; }
    .ls-team-member__bio        { font-size: 1rem; }

    /* Contacto */
    .ls-contacto__hero          { padding: calc(var(--ls-header-h) + 2rem) 1rem 2rem; }
    .ls-contacto__body          { padding: 1.5rem 1rem 3rem; }

    /* Buttons */
    .ls-btn                     { font-size: 1rem; padding: 0.65rem 1.25rem; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .ls-header__inner           { padding: 0 0.75rem; }
    .ls-header__obras           { font-size: 0.85rem; }
    .ls-archive__tabs           { gap: 0.75rem; }

    /* Podcast episodes: stack vertically */
    .ls-podcast__episode        { flex-direction: column; gap: 0.75rem; }
    .ls-podcast__episode-img    { width: 100%; height: 160px; flex: none; }
    .ls-podcast__episode-img img { width: 100%; height: 100%; object-fit: cover; }

    /* Prensa cards: stack vertically */
    .ls-prensa-card             { flex-direction: column; }
    .ls-prensa-card__img-wrap   { flex: none; width: 100%; }
    .ls-prensa-card__img-wrap img { width: 100%; height: 180px; object-fit: cover; }
}
