:root {
  --color-bg-page: #ffffff;
  --color-accent: #ffd84a;
  --color-text-main: #111111;
  --color-text-muted: #000000;
  --radius-pill: 999px;
}

/* Same as body: view-transition washes composite over this. Opaque navy/yellow on <html> becomes a solid “middle frame”. */
html {
  background-color: var(--color-bg-page);
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-bg-page);
  color: var(--color-text-main);
  font-family: 'Satoshi Standard', sans-serif;
  font-size: 1rem;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: 'Museo', sans-serif;
  font-weight: 400;
  margin: 0;
}

.h1,
.h2 {
  font-family: 'Museo', sans-serif;
  font-weight: 400;
  margin: 0;
}

h3,
h4,
h5,
h6 {
  font-family: 'Satoshi Standard', sans-serif;
  font-weight: 400;
  margin: 0;
}

.h3,
.h4,
.h5,
.h6 {
  font-family: 'Satoshi Standard', sans-serif;
  font-weight: 400;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

/* Container full-width by default; sitewide horizontal inset (Figma shell). */
.container {
  max-width: 100%;
  padding-left: 54px;
  padding-right: 54px;
}

/* Homepage hero carousel: full viewport width (template uses .container.px-0). */
.home-page .section-hero > .container.px-0 {
  padding-left: 0;
  padding-right: 0;
}

/* Breadcrumb: placeholder pages (no content) are not linked and slightly faded */
.detail-breadcrumb .breadcrumb-placeholder {
  opacity: 0.7;
  color: inherit;
}

.detail-breadcrumb.text-muted {
  font-family: "Inconsolata", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-breadcrumb.text-muted a,
.detail-breadcrumb.text-muted .breadcrumb-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* ===================== HEADER ===================== */
.header-site {
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0;
  font-size: 1rem;
  background-color: rgb(255 255 255 / 95%);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  z-index: 1100;
}

.menu-open .header-site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
}

/* Evita que el header tape el lightbox */
.lg-on .header-site {
  opacity: 0;
  pointer-events: none;
}

.header-logo {
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-logo span {
  display: block;
}

.header-nav {
  font-size: 12px;
}

.header-site nav a {
  font-family: "Satoshi", sans-serif;
  font-size: 500;
  padding: 0 15px;
  white-space: nowrap;
}
.bars-icon {
  font-size: 1.5rem;
}

/* ===================== HEADER V2 (INDEX) ===================== */
.header-site--v2 {
  padding: 6px 0 8px;
}

.header-site--v2 .container {
  display: grid;
  gap: 6px;
}

.header-site--v2 .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-site--v2 .header-logo {
  line-height: 1.25;
  padding: 6px 0;
}

.header-site--v2 .header-logo img {
  height: 34px;
  max-width: auto;
}

.header-mobile-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-mobile-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.header-site--v2 .header-actions {
  gap: 16px;
  font-size: 1rem;
  font-family: "Satoshi", sans-serif;
}

.header-site--v2 .header-actions a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  background-image: linear-gradient(#000, #000);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .2s ease;
}

.header-site--v2 .header-actions a:hover,
.header-site--v2 .header-actions a:focus-visible {
  text-decoration: none;
  background-size: 100% 1px;
}

.header-site--v2 .header-actions .header-cta {
  background-image: linear-gradient(90deg, #f2c94c 0%, #ff9bb3 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  transition: none;
}

.header-site--v2 .header-search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background-color: transparent;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  background-image: linear-gradient(#000, #000);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .2s ease;
}

.header-site--v2 .header-search:focus {
  outline: none;
  box-shadow: none;
}

.header-site--v2 .header-search:hover,
.header-site--v2 .header-search:focus-visible {
  outline: none;
  background-size: 100% 1px;
}

.header-site--v2 .header-cta {
  background: linear-gradient(90deg, #f2c94c 0%, #ff9bb3 100%);
  color: #000;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  transition: none;
}

.header-site--v2 .header-actions .header-cta:hover,
.header-site--v2 .header-actions .header-cta:focus-visible {
  background-size: 100% 100%;
}

.header-site--v2 .header-bottom {
  padding-bottom: 6px;
}

.header-site--v2 .header-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: 1rem;
  font-family: "Satoshi", sans-serif;
}

.header-site--v2 .header-primary a {
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  font-weight: 500;
  font-size: 1rem;
  background-image: linear-gradient(#FFAEA8, #FFAEA8);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .2s ease;
}

.header-site--v2 .header-primary a:hover,
.header-site--v2 .header-primary a:focus-visible,
.header-site--v2 .header-primary a.is-active {
  text-decoration: none;
  background-size: 100% 1px;
  background-color: transparent;
}

.header-site--v2 .header-primary a.is-active {
  font-weight: 500;
}

.header-site--v2 .nav-caret {
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-left: 1px;
}

/* Non-link nav label (e.g. Aprende): same look as link, no href */
.header-site--v2 .header-primary .header-primary__label {
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  font-weight: 500;
  font-size: 1rem;
  background-image: linear-gradient(#FFAEA8, #FFAEA8);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .2s ease;
  cursor: pointer;
}
.header-site--v2 .header-primary .header-primary__label:hover,
.header-site--v2 .header-primary .header-primary__label:focus-visible,
.header-site--v2 .header-primary .header-primary__label.is-active {
  text-decoration: none;
  background-size: 100% 1px;
  background-color: transparent;
}

.header-site--v2 .header-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: "Satoshi", sans-serif;
}

.header-site--v2 .header-lang a {
  color: #C6C6C6;
  text-decoration: none;
  background-image: linear-gradient(#000, #000);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .2s ease;
}

.header-site--v2 .header-lang a.is-active {
  color: #000;
  font-weight: 500;
  background-size: 100% 1px;
}

.header-site--v2 .header-lang a:hover,
.header-site--v2 .header-lang a:focus-visible {
  background-size: 100% 1px;
}

.header-mega {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  padding: 18px 0 24px;
  display: none;
  position: fixed;
  top: var(--header-height, 72px);
  left: 0;
  right: 0;
  z-index: 1090;
}

.header-mega.is-open {
  display: block;
}

.header-mega .container {
  position: relative;
  overflow: hidden;
}

.header-mega__panel {
  position: absolute;
  top: 0;
  left: var(--mega-left, 0);
  right: 0;
  max-width: min(680px, 100%);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.header-mega__panel.is-active {
  max-height: var(--mega-panel-height, 70vh);
  opacity: 1;
}

.header-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.header-mega__list a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Satoshi", sans-serif;
  line-height: 1.25;
}

.header-mega__list a:hover,
.header-mega__list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: #FFAEA8;
  text-decoration-thickness: 2px;
}

.header-mega__item {
  display: block;
  cursor: pointer;
  margin-bottom: 0.3rem;
}

.header-mega__item.header-mega__item--has-sublist {
  margin-bottom: 0;

}

/* Third level in mega menu: collapsed by default, toggle to expand */
.header-mega__item--has-sublist .header-mega__row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.header-mega__sublist-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-left: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mega__sublist-toggle-icon {
  display: inline-flex;
  line-height: 0;
}
.header-mega__sublist {
  list-style: none;
  margin: 0.25em 0 0 1em;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.14s ease, opacity 0.1s ease;
}
.header-mega__item--has-sublist.is-open .header-mega__sublist {
  max-height: var(--mega-sublist-height, 0);
  opacity: 1;
}

.header-mega__sublist > li {
  margin-bottom: 0.4rem;
}

.header-mega__sublist > li > a {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Satoshi", sans-serif;
}
/* 4th level in desktop mega menu */
.header-mega__l3row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8em;
}
.header-mega__l4list-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  margin-left: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mega__l4list-toggle-icon {
  display: inline-flex;
  line-height: 0;
}
.header-mega__l4list {
  list-style: none;
  margin: 0.25em 0 0 1em;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.14s ease, opacity 0.1s ease;
}
.header-mega__l3item--has-l4list.is-open .header-mega__l4list {
  max-height: var(--mega-l4list-height, 0);
  opacity: 1;
}
.header-mega__l4list a {
  font-size: 0.9rem;
  font-weight: 400;
  font-family: "Satoshi", sans-serif;
}

/* ===================== HERO ===================== */
:root {
  --hero-gap-d: 15px;
  /* separación entre imágenes en desktop */
  --hero-gap-t: 15px;
  /* separación en tablet */
  --hero-gap-m: 14px;
  /* separación en móvil */
  --hero-h-d: 480px;
  /* ALTURA visible de cada imagen en desktop */
  --hero-h-t: 380px;
  /* ALTURA en tablet */
  --hero-h-m: 300px;
  /* ALTURA en móvil */
  --hero-overlay-bg: 151, 16, 23;
  --hero-size-multiplier: 1;
}

.home-page {
  --hero-size-multiplier: 2.5;
}

.hero-title h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

.hero-title h1 p {
  margin-bottom: 0rem; 
  padding-bottom: 0rem;
}

/* Contenedor del carrusel */
.hero-flickity {
  width: 100%;
  perspective: 1000px;
  /* da profundidad a la animación */
}

/* Viewport de Flickity */
.flickity-viewport {
  overflow: hidden;
}

/* Capa que Flickity */
.flickity-slider {
  will-change: transform;
  backface-visibility: hidden;
}

/* Cada celda */
.carousel-cell {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  height: auto;
  margin-right: var(--hero-gap-d);
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  z-index: 1;
}

/* Gaps por breakpoint (el ancho lo fija el JS) */
@media (max-width: 991.98px) {
  .carousel-cell {
    margin-right: var(--hero-gap-t);
  }
}

@media (max-width: 575.98px) {
  .carousel-cell {
    aspect-ratio: auto;
    height: var(--hero-h-m);
    margin-right: var(--hero-gap-m);
  }
}

/* La animación fuerte va en la IMAGEN (no en la celda) */
.hero-flickity-wrapper {
  overflow-x: hidden;
}

.carousel-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.95) contrast(.96) brightness(.98);
  opacity: .92;
  transition:
    transform .5s cubic-bezier(.22, .61, .36, 1),
    filter .5s cubic-bezier(.22, .61, .36, 1),
    opacity .5s cubic-bezier(.22, .61, .36, 1),
    box-shadow .5s cubic-bezier(.22, .61, .36, 1);
  will-change: transform, filter, opacity, box-shadow;
}

.carousel-cell .hero-overlay {
  position: absolute;
  inset: 0;
  /* Gradient above full-slide link; pointer-events none so clicks pass through to the link */
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 24px 36px 36px;
  font-family: "Satoshi Standard", sans-serif;
  background: linear-gradient(0deg, rgba(var(--hero-overlay-bg), 0.92) 0%, rgba(var(--hero-overlay-bg), 0.82) 55%, rgba(var(--hero-overlay-bg), 0) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.carousel-cell .hero-overlay-content {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: calc(1.1rem * 1.25);
  align-items: start;
  width: 100%;
}

.carousel-cell .hero-overlay-content > h4 {
  grid-column: 1 / -1;
  grid-row: 1;
  font-family: "Satoshi Standard", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}

.carousel-cell .hero-overlay-text {
  font-family: "Satoshi Standard", sans-serif;
  min-width: 0;
  line-height: 1.25;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(1.1rem * 1.25);
}

.carousel-cell .hero-overlay-body {
  font-family: "Satoshi Standard", sans-serif;
  min-width: 0;
  line-height: 1.25;
  width: 100%;
}

.carousel-cell .hero-overlay-content:not(:has(> h4)) .hero-overlay-text {
  grid-row: 1;
}

.carousel-cell .hero-overlay-content:not(:has(> h4)) .hero-overlay-cta {
  grid-row: 1;
}

.carousel-cell .hero-overlay-text > h4 {
  font-family: "Satoshi Standard", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}

.carousel-cell .hero-overlay-body > :last-child,
.carousel-cell .hero-overlay-text > :last-child {
  margin-bottom: 0;
}

.carousel-cell .hero-overlay p {
  font-family: "Satoshi Standard", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0;
}

.carousel-cell .hero-overlay-body > * {
  margin: 0;
}

.carousel-cell .hero-overlay-time {
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-block;
}

.carousel-cell .hero-overlay-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: "Satoshi Standard", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  flex: 0 0 auto;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: end;
}

.carousel-cell:hover .hero-overlay,
.carousel-cell:focus-within .hero-overlay,
.carousel-cell:has(.hero-slide-full-link:hover) .hero-overlay,
.carousel-cell:has(.hero-slide-full-link:focus-visible) .hero-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Video slide (Vimeo / YouTube): cover-crop inside square cell */
.carousel-cell.hero-slide--video {
  background: linear-gradient(0deg, rgba(var(--hero-overlay-bg), 0.92) 0%, rgba(var(--hero-overlay-bg), 0.82) 55%, rgba(var(--hero-overlay-bg), 0) 100%);
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%;
  height: 100%;
  max-width: none;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

/* Full-cell tap target above media, below overlay (image + video slides) */
.carousel-cell .hero-slide-full-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
}

.carousel-cell .hero-slide-full-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
  z-index: 3;
}

/* DESTACADA */
.carousel-cell.is-highlight img {
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
  opacity: 1;
}

.carousel-cell.is-highlight .hero-slide-media {
  filter: saturate(1.08) contrast(1.08) brightness(1.02);
  opacity: 1;
}

/* Vecinas (prev/next) para dar más contraste visual */
.carousel-cell.is-near img {
  filter: saturate(.98) contrast(.98) brightness(.99);
  opacity: .95;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
}

.carousel-cell.is-near .hero-slide-media {
  filter: saturate(.98) contrast(.98) brightness(.99);
  opacity: .95;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
}

/* El resto queda más “plano” */
.carousel-cell:not(.is-highlight):not(.is-near) img {
  transform: translateZ(0) scale(.98);
  filter: saturate(.92) contrast(.94) brightness(.98);
  opacity: .86;
}

.carousel-cell:not(.is-highlight):not(.is-near) .hero-slide-media {
  transform: translateZ(0) scale(.98);
  filter: saturate(.92) contrast(.94) brightness(.98);
  opacity: .86;
}

/* Botones */
.flickity-prev-next-button {
  background: transparent;
  width: 44px;
  height: 44px;
}

.flickity-prev-next-button .flickity-button-icon {
  fill: #111;
  opacity: .45;
}

.flickity-prev-next-button:hover .flickity-button-icon {
  opacity: .9;
}

/* Dots cuadrados (como la maqueta) */
.flickity-page-dots {
  bottom: -24px;
}

.flickity-page-dots .dot {
  width: 25px !important;
  height: 7px !important;
  border-radius: 0px !important;
  background: transparent !important;
  border: 1px solid #62676b !important;
  opacity: .7 !important;
  margin: 0 4px !important;
}

.flickity-page-dots .dot.is-selected {
  background: #62676b !important;
  opacity: 1 !important;
}

/* ===================== HORARIO ===================== */
.horario-title h3 {
  font-family: "Museo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  font-size: 2.25rem;
}

/* Texto central: dos líneas, jerarquía clara y legible */
.horario-info p {
  color: #111;
  font-weight: 400;
  line-height: 1.25;
  font-size: 1.2rem;
}

/* Botón “Ver mapa”: pastilla amarilla con leve sombra y borde sutil */
.btn-map {
  --map-bg: #fff;
  --map-bg-hover: #000;
  --map-border: #000;
  background: var(--map-bg);
  border: 1px solid var(--map-border);
  color: #000;
  font-weight: 500;
  padding: 0.2rem 1.5rem;
  font-size: 1.2rem;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn-map:hover {
  background-color: var(--map-bg-hover);
  color: #fff;
}

.btn-map:active {
  transform: translateY(0);
}

.btn-map:focus {
  outline: none;
  box-shadow: 0 0 0 .2rem rgba(255, 227, 122, .45);
}

/* Línea divisoria: gris muy sutil como en la captura */
.horario-divider {
  border: 0;
  height: 1px;
  background: #CFCFCF;
  opacity: 1;
}

/* Ajustes responsivos finos */
@media (max-width: 991.98px) {

  /* En tablet/móvil, que el botón no quede pegado al texto */
  #horario .btn-map {
    margin-top: .25rem;
  }
}

/* ===================== CARTELERA ===================== */
/* Row 1: title | top tabs; row 2: category filters | grid (filters align with card image tops). */
@media (min-width: 768px) {
  .cartelera-layout__title {
    margin-bottom: 1.75rem;
  }

  .cartelera-layout__header {
    margin-bottom: 1.75rem;
  }

  .cartelera-layout__header .cartelera-main-header {
    margin-bottom: 0;
  }

  .cartelera-layout__sidebar #filters {
    /* Grid mt-3 + card-top row; minus first filter-item padding so dot top meets image top */
    padding-top: calc(1rem + 10px + 1.3rem - 0.45rem);
  }

  .cartelera-layout__grid {
    margin-top: 1rem;
  }
}

.cartelera-sidebar-title h3 {
  font-family: "Museo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  font-size: 2.25rem;
}

.cartelera-sidebar-filter-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  margin: 1.5rem 0 0.35rem;
}

.cartelera-month {
  font-weight: 500;
  line-height: 1.25;
  font-size: 2.25rem;
}

.cartelera-top-filters {
  display: inline-flex;
  gap: 10px;
}

.cartelera-top-filter {
  border: 0;
  background: transparent;
  color: #000;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  background-image: linear-gradient(#000, #000);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  cursor: pointer;
  padding: 0;
  opacity: .6;
  transition: color .2s ease, background-size .2s ease, opacity .2s ease;
}

.cartelera-top-filter.active,
.cartelera-top-filter:hover {
  color: #000;
  opacity: 1;
  background-size: 100% 1px;
}

.cartelera-calendar-btn {
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: .35rem .95rem;
  border-radius: 0;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.cartelera-calendar-btn:hover {
  background: #111;
  color: #fff;
}

/* ===== Filtros ===== */
.cartelera-filtros {
  margin: 0;
  padding: 0;
}

.cartelera-filtros .filter-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 0;
  cursor: pointer;
  font-weight: 500;
  color: #111;
  user-select: none;
}

.cartelera-filtros .filter-item:hover {
  opacity: .85;
}

.cartelera-filtros .filter-item.active {
  font-weight: 500;
}

.dot {
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  display: inline-block;
}

.dot-all {
  background: #9aa0a6;
}

.dot-taller {
  background: #76c791;
}

.dot-curso {
  background: #000000;
}

.dot-lanzamiento {
  background: #c46243;
}

.dot-charla {
  background: #7b3f2c;
}

.dot-otros {
  background: #2734a9;
}

#filters-publico .dot {
  background: #fff;
  border: 1px solid #111;
  box-sizing: border-box;
}

/* ===== Flechas ===== */
.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1.25;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.arrow-btn:hover {
  transform: translateY(-1px);
}

/* ===== Tarjetas ===== */
.cartelera-card {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 3rem;
}

.cartelera-card:focus {
  outline: 2px solid rgba(0, 0, 0, .2);
  outline-offset: 2px;
}

.cartelera-card__media {
  overflow: hidden;
}

.cartelera-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.cartelera-card:hover .cartelera-card__media img,
.cartelera-card:focus .cartelera-card__media img {
  transform: scale(1.05);
}

.cartelera-card:has(.card-dot.is-open) .cartelera-card__media img,
.cartelera-card:has(.card-dot:hover) .cartelera-card__media img,
.cartelera-card:has(.card-dot:focus-visible) .cartelera-card__media img {
  transform: none;
}

@media (min-width:576px) {
  .cartelera-card__media img {
    height: 240px;
  }
}

@media (min-width:1200px) {
  .cartelera-card__media img {
    height: 210px;
  }
}

/* Dots de categoría por tarjeta (arriba a la izquierda) */
.card-dots {
  display: flex;
  gap: .35rem;
  z-index: 2;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-live {
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  font-size: .85rem;
  line-height: 1.25;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #111;
}

.card-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 999px;
  color: #fff;
  font-family: 'Inconsolata';
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  transition: width .3s ease, padding .3s ease;
}

.card-dot-text {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .225s ease, transform .3s ease;
}

.card-dot.is-open,
.card-dot:hover,
.card-dot:focus-visible {
  width: auto;
  padding: 0 .65rem;
}

.card-dot.is-open .card-dot-text,
.card-dot:hover .card-dot-text,
.card-dot:focus-visible .card-dot-text {
  opacity: 1;
  transform: translateX(0);
}

.card-dot--publico {
  background: #fff;
  border: 1px solid #111;
  color: #111;
}

.card-dot--publico.is-open,
.card-dot--publico:hover,
.card-dot--publico:focus-visible {
  background: #fff;
  border: 1px solid #111;
  color: #111;
}

.cartelera-card-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  color: #000;
  margin: .55rem 0 .25rem;
  font-size: 1.0rem;
  line-height: 1.25;
}

.cartelera-card-title.mb-3 {
  margin-bottom: 1rem !important;
}

.cartelera-card-title span {
  display: inline;
  padding-bottom: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(#000, #000);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .2s ease;
}

.cartelera-card:hover .cartelera-card-title span,
.cartelera-card:focus .cartelera-card-title span {
  background-size: 100% 1px;
}

.cartelera-card:has(.card-dot.is-open) .cartelera-card-title span,
.cartelera-card:has(.card-dot:hover) .cartelera-card-title span,
.cartelera-card:has(.card-dot:focus-visible) .cartelera-card-title span {
  background-size: 0 1px;
}

.cartelera-card-date {
  font-family: 'Inconsolata';
  color: #000;
  font-size: 0.9rem;
  line-height: 1.25;
  letter-spacing: .08em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.cartelera-card-time,
.cartelera-card-meta {
  font-family: 'Inconsolata';
  color: #000;
  font-size: 0.9rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.cartelera-card-location {
  font-family: 'Inconsolata';
  color: #000;
  font-size: 0.9rem;
  line-height: 1.25;
  text-transform: none;
}

.cartelera-load {
  border: 0;
  background: transparent;
  color: #111;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.cartelera-load:disabled {
  opacity: .5;
  cursor: default;
}

/* ===================== NEWSLETTER (BOLETÍN) ===================== */
.section-newsletter {
  padding-top: 28px;
  padding-bottom: 32px;
}

.newsletter-title p {
  font-family: "Satoshi", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.newsletter-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-input {
  color: #fff;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  font-size: 0.95rem;
  flex: 1 1 180px;
  font-weight: 400;
  height: 52px;
  background-color: transparent;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.newsletter-button {
  color: #fff;
  border-radius: var(--radius-pill);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0 26px;
  font-size: 0.95rem;
  white-space: nowrap;
  font-weight: 500;
  height: 52px;
}

.newsletter-button:hover {
  color: #000;
  background-color: #fff;
}

/* ===================== COLECCIÓN EN LÍNEA ===================== */
.cartelera-title h3 {
  font-family: "Museo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 0.8;
  font-size: 2.25rem;
}

.colec-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 20px;
  margin-bottom: 14px;
}

.colec-tabs {
  justify-self: start;
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.colec-tab {
  border: 0;
  background: transparent;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
  background-image: linear-gradient(#000, #000);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  cursor: pointer;
  padding: 0;
  opacity: .6;
  transition: opacity .2s ease, background-size .2s ease;
}

.colec-tab.active,
.colec-tab:hover {
  opacity: 1;
  background-size: 100% 1px;
}

.colec-nav {
  justify-self: end;
  display: inline-flex;
  gap: 12px;
}

.colec-flickity {
  width: 100%;
}

.flickity-viewport {
  overflow: hidden;
}

:root {
  --colec-gap: 24px;
}

.colec-cell {
  display: block;
  width: calc(50% - var(--colec-gap) / 2);
  margin-right: var(--colec-gap);
  text-decoration: none;
  color: inherit;
}

/* 1 visible en móvil */
@media (max-width: 575.98px) {
  .colec-cell {
    width: 100%;
    margin-right: 16px;
  }

  :root {
    --colec-gap: 16px;
  }
}

/* Colección en línea: proporción Figma 3w / 2h */
.colec-cell figure {
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
  aspect-ratio: 3 / 2;
  margin: 0;
}

.colec-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.colec-cell:hover img {
  transform: scale(1.03);
}

.colec-cap {
  font-weight: 600;
  font-size: clamp(14px, .35vw + 13px, 16px);
  line-height: 1.25;
  padding: .65rem .25rem 0;
}

/* Flechas externas (las tuyas) */
.colec-arrow {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 20px;
  line-height: 1.25;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.colec-arrow:hover {
  transform: translateY(-1px);
  opacity: .7;
}

.section-coleccion .colec-nav .colec-arrow {
  transform: translateY(7px);
}

.section-coleccion .colec-nav .colec-arrow:hover {
  transform: translateY(6px);
}

.icon-arrow {
  display: inline-flex;
  line-height: 0;
}

.icon-arrow i {
  font-size: 30.6px;
  line-height: 1;
  display: block;
}

.icon-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: inherit;
}

.icon-nav-arrow i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  font-size: 17px;
  line-height: 1;
}

/* Angle down; closed = down (0deg), open = up (180deg) */
.icon-nav-arrow__chevron {
  display: inline-flex;
  line-height: 0;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}

.header-site--v2 .header-primary a.is-active .nav-caret .icon-nav-arrow__chevron,
.header-site--v2 .header-primary .header-primary__label.is-active .nav-caret .icon-nav-arrow__chevron,
.fs-menu__item.is-open .fs-menu__toggle .icon-nav-arrow__chevron,
.fs-menu__subitem--has-sublist.is-open .fs-menu__sublist-toggle .icon-nav-arrow__chevron,
.fs-menu__l3item--has-l4list.is-open .fs-menu__l4list-toggle .icon-nav-arrow__chevron,
.header-mega__item--has-sublist.is-open .header-mega__sublist-toggle .icon-nav-arrow__chevron,
.header-mega__l3item--has-l4list.is-open .header-mega__l4list-toggle .icon-nav-arrow__chevron {
  transform: rotate(180deg);
}

.icon-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: inherit;
  transition: transform .12s ease, opacity .12s ease;
}

.icon-plus i {
  display: block;
  line-height: 1;
}

.pub-plus.icon-plus i,
.av-plus.icon-plus i {
  font-size: 25.2px;
}

.colec-cta {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #111;
  border: 1px solid #111;
  border-radius: 999px;
  padding: .35rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.colec-cta:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 991.98px) {
  .colec-header {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .colec-nav {
    justify-self: end;
  }
}

/* ===================== PUBLICACIONES ===================== */
.pub-title h3 {
  font-family: "Museo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  font-size: 2.25rem;
}

.pub-row {
  border-bottom: 1px solid #CFCFCF;
  padding: 10px;
}

.pub-row-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 16px;
}

.pub-row-toggle:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .25);
  outline-offset: 4px;
}

.pub-heading {
  min-width: 0;
}

.pub-label,
.pub-count {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.25;
}

.pub-count {
  white-space: nowrap;
}

.pub-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 0;
  align-self: center;
}

.pub-row-toggle:hover .pub-plus {
  opacity: .8;
}

.pub-row-toggle[aria-expanded="true"] .pub-plus {
  transform: rotate(45deg);
}

.pub-collapse {
  padding: 6px 0 12px;
}

.pub-files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: .95rem;
  color: #111;
}

.pub-grid-loading {
  font-size: 0.95rem;
  color: #555;
  padding: 8px 0;
}

.pub-grid-empty {
  font-size: 0.95rem;
  color: #555;
  padding: 8px 0;
}

.pub-grid-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 6vw, 80px);
}

.pub-card {
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #CFCFCF;
  color: inherit;
  text-decoration: none;
  transition: background-color .15s ease;
}

.pub-card:hover,
.pub-card:focus-visible {
  background-color: rgb(250, 248, 245);
}

.pub-card-body {
  min-width: 0;
}

.pub-card-figure {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  height: calc(52px * 4 / 3);
  background: #f4f4f4;
  overflow: hidden;
}

.pub-card-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pub-card-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  color: #111;
  text-align: left;
  min-width: 0;
}

.pub-card-year {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  color: #111;
  min-height: 1.25rem;
}

.pub-link a {
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-align: right;
  margin-top: 6px;
  color: var(--color-text-muted);
}

@media (max-width: 575.98px) {
  .pub-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    border-radius: 999px;
    padding: .2rem .95rem;
    font-size: .9rem;
    font-weight: 500;
    color: #111;
  }

  .pub-row-toggle .row {
    align-items: center;
  }

  .pub-row {
    grid-template-columns: 1fr 90px 36px;
    padding: 16px 0;
  }

  .pub-title h3 {
    font-size: 1.5rem;
  }

  .pub-plus.icon-plus i {
    font-size: 19.8px;
  }

  .pub-files {
    font-size: .9rem;
  }
}

/* ===================== ARCHIVO AUDIOVISUAL ===================== */
.av-title h3 {
  font-family: "Museo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.25;
  font-size: 2.25rem;
}

.av-feature-media {
  position: relative;
  overflow: hidden;
}

.av-player {
  width: 100%;
  height: clamp(200px, 35vw, 200px);
  display: block;
  background: #000;
  border: 0;
}

.av-item.is-active {
  background: rgba(0, 0, 0, 0.03);
}

.av-item.is-active .av-title-sm {
  font-weight: 400;
}

.av-feature-media img {
  width: 100%;
  height: clamp(200px, 35vw, 200px);
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.av-feature-media .av-hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(28px, 2.2vw + 12px, 48px);
  opacity: 0;
  transition: opacity .25s ease, backdrop-filter .25s ease;
  backdrop-filter: blur(0px);
}

.av-feature:hover img {
  transform: scale(1.02);
}

.av-feature:hover .av-hover {
  opacity: 1;
  backdrop-filter: blur(2px);
}

.av-item {
  display: grid;
  align-items: center;
  grid-template-columns: 142px 1fr 100px 36px;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid #cfcfcf;
  text-decoration: none;
  color: inherit;
  transition: background-color .15s ease;
}

.av-item:hover {
  background-color: #fafafa;
}

.av-thumb {
  width: 132px;
  height: 90px;
  object-fit: cover;
}

.av-title-sm {
  font-weight: 400;
  color: #000;
  font-size: 1.2rem;
  line-height: 1.25;
}

.av-time {
  text-align: center;
  font-weight: 400;
  color: #111;
  font-size: 1.2rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.av-plus {
  border: 0;
  background: transparent;
  color: #000;
  padding: 0;
  cursor: pointer;
}

.av-item:hover .av-plus {
  transform: translateY(-1px);
  opacity: .85;
}

.av-link a {
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-align: right;
  margin-top: 6px;
  color: var(--color-text-muted);
}

@media (max-width: 991.98px) {
  .av-item {
    grid-template-columns: 120px 1fr 80px 32px;
  }

  .av-thumb {
    width: 120px;
    height: 68px;
  }
}

@media (max-width: 575.98px) {
  .av-item {
    grid-template-columns: 110px 1fr 30px;
    padding: 14px 0;
  }

  .av-thumb {
    width: 110px;
    height: 64px;
  }
}

/* ===================== EXPOSICIÓN ACTUAL ===================== */
/* Cabecera sobre la imagen: etiqueta a la izquierda, fechas centradas en el ancho de la imagen, misma línea */
.expo-image-heading__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  column-gap: 0.75rem;
  width: 100%;
}

.expo-image-heading__title {
  justify-self: start;
  min-width: 0;
}

.expo-image-heading__title .expo-title {
  margin-bottom: 0;
}

.expo-image-heading__period {
  justify-self: center;
  text-align: center;
}

.expo-image-heading__period .expo-period {
  margin-bottom: 0;
}

.expo-image-heading__balance {
  min-width: 0;
}

.expo-title h3 {
  font-family: "Museo", sans-serif;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1;
  font-size: 2.25rem;
}

.expo-period {
  font-family: "Inconsolata", monospace;
  font-weight: 400;
  line-height: 1.25;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: .2em;
}

/* Imagen grande con proporción alta (similar a la maqueta) */
.expo-figure {
  border-radius: 0px;
  overflow: hidden;
  height: clamp(300px, 46vw, 520px);
  margin: 0;
}

.expo-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* Aside derecho */
.expo-aside-eyebrow {
  font-weight: 400;
  color: #000;
  font-size: 1.2rem;
  margin-bottom: .2rem;
}

.expo-aside-title p {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.25;
  font-size: 1.5rem;
  margin: 0 0 20px;
}

.expo-aside-body p {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25;
  color: #000;
  margin-bottom: 10px;
}

.expo-aside-body p:last-child {
  margin-bottom: 0;
}

/* Visitar promo CTA: space above = one .btn-map control tall; mobile font/padding in max-width 991.98px block */
#expo-actual .expo-aside-cta {
  margin-top: calc(0.2rem + 0.2rem + 1.5 * 1.2rem + 2px);
}

.expo-link-wrap {
  margin-top: auto;
}

.expo-link a {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.expo-link a:hover {
  opacity: .8;
}

/* Ajustes responsivos finos */
@media (max-width: 991.98px) {
  .expo-figure {
    height: clamp(240px, 56vw, 480px);
  }
}

@media (max-width: 575.98px) {
  .expo-mobile-heading__text {
    min-width: 0;
  }

  .expo-mobile-heading .expo-title {
    min-width: 0;
  }

  .expo-mobile-heading .expo-title h3 {
    margin: 0;
  }

  .expo-mobile-heading .btn-map {
    flex: 0 0 auto;
  }

  .expo-period {
    margin-top: .35rem;
  }

  .expo-figure {
    height: clamp(220px, 62vw, 420px);
  }
}

/* ===================== AMIGOS DEL MUSEO ===================== */
.amigos {
  background-color: #fffe81;
}

.amigos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.amigos-title p {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.25;
  margin: 0;
  color: #111;
}

.amigos-cta {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #111;
  border: 1px solid #111;
  border-radius: 999px;
  padding: .45rem 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.amigos-cta:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 767.98px) {
  .amigos-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================== BANDA GRADIENTE ===================== */

.band-video {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  color: #fff;
  background: #0a1b5f;
}

.band-video .content {
  position: relative;
  z-index: 2;
}

/* ambas instancias apiladas */
.band-video .vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  /* duración del crossfade */
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
}

.band-video .vid.active {
  opacity: 1;
}

/* degradado de color por encima del video (opcional) */
.band-video.fx-crossfade::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 70, 255, .25), rgba(255, 91, 43, .25));
}

/* accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .band-video .vid {
    transition: none;
  }
}

/* ===================== OVERLAY PANTALLA COMPLETA ===================== */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-areas: "stack";
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.fs-menu[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.fs-menu[hidden] {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.fs-menu__backdrop {
  grid-area: stack;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

.fs-menu__panel {
  display: grid;
  align-content: start;
  justify-items: flex-start;
  gap: 14px;
  min-height: 100dvh;
  padding: clamp(72px, 11vh, 88px) 20px 28px;
  z-index: 1;
  overflow-y: auto;
}

.fs-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  width: min(100%, 30rem);
}

.fs-menu__item {
  position: relative;
  border-bottom: 0;
  padding-bottom: 0;
}

.fs-menu[data-open="true"] .fs-menu__item {
  animation: fsItemIn .45s ease forwards;
}

.fs-menu[data-open="true"] .fs-menu__item:nth-child(1) { animation-delay: .05s; }
.fs-menu[data-open="true"] .fs-menu__item:nth-child(2) { animation-delay: .1s; }
.fs-menu[data-open="true"] .fs-menu__item:nth-child(3) { animation-delay: .15s; }
.fs-menu[data-open="true"] .fs-menu__item:nth-child(4) { animation-delay: .2s; }

.fs-menu__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

/* Mobile menu: level 1 */
.fs-link {
  display: block;
  font-weight: 500;
  line-height: 1.25;
  font-size: clamp(1.45rem, 7vw, 2.25rem);
  color: #000;
  text-decoration: none;
  margin: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.fs-link:hover, .fs-link:focus-visible {
  opacity: .75;
  outline: none;
}

.fs-menu__item.is-open > .fs-menu__row .fs-link {
  opacity: .88;
}

.fs-menu__toggle {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: .15em;
  border-radius: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.fs-menu__toggle:hover,
.fs-menu__toggle:focus-visible {
  opacity: 0.7;
  outline: none;
}

.fs-menu__toggle-chevron {
  display: inline-flex;
  line-height: 0;
}

.fs-menu__toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.fs-menu__toggle-icon::before,
.fs-menu__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #000;
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .2s ease;
}

.fs-menu__toggle-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.fs-menu__item.is-open .fs-menu__toggle-icon::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleY(0);
}

/* Accordion: in-flow so submenus push content down, no overlap */
.fs-sublist {
  list-style: none;
  margin: 10px 0 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 10px;
  /*border-left: 1px solid rgba(0, 0, 0, 0.18);*/
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.24s ease, opacity 0.18s ease;
}

/* 2nd level: no line before */
.fs-sublink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(1.05rem, 4.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  color: #000;
  text-decoration: none;
  padding-left: 0;
  position: relative;
}

.fs-sublink:hover,
.fs-sublink:focus-visible {
  color: rgba(0, 0, 0, 0.95);
  outline: none;
}

.fs-menu__subitem--has-sublist.is-open > .fs-menu__subrow .fs-sublink,
.fs-menu__l3item--has-l4list.is-open > .fs-menu__l3row .fs-subsublink {
  opacity: 1;
}

/* Third level: accordion, in-flow */
.fs-menu__subitem--has-sublist .fs-menu__subrow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.fs-menu__sublist-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: .1em;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fs-menu__sublist-toggle-icon {
  display: inline-flex;
  line-height: 0;
}
/* 3rd level: indent */
.fs-subsublist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 7px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.22s ease, opacity 0.16s ease;
}
.fs-menu__subitem--has-sublist.is-open .fs-subsublist {
  max-height: var(--fs-subsublist-height, 0);
  opacity: 1;
}
.fs-subsublink {
  display: inline-block;
  font-size: clamp(.95rem, 4vw, 1.12rem);
  font-weight: 400;
  line-height: 1.25;
  color: #000;
  padding-left: 0;
  opacity: .9;
}
/* 4th level in mobile menu */
.fs-menu__l3row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.fs-menu__l4list-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fs-menu__l4list-toggle-icon {
  display: inline-flex;
  line-height: 0;
}
.fs-l4list {
  list-style: none;
  margin: 7px 0 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.22s ease, opacity 0.16s ease;
}
.fs-menu__l3item--has-l4list.is-open .fs-l4list {
  max-height: var(--fs-l4list-height, 0);
  opacity: 1;
}
.fs-l4link {
  display: inline-block;
  font-size: clamp(.86rem, 3.7vw, .98rem);
  font-weight: 400;
  line-height: 1.25;
  color: #000;
  padding-left: 0;
  opacity: .76;
}

.fs-menu__close {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 1.25;
  margin-top: 55px;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .fs-menu {
    transition: none;
  }

  .fs-link {
    transition: none;
  }

  .fs-sublist {
    transition: none;
  }

  .fs-menu[data-open="true"] .fs-menu__item {
    animation: none;
  }
}

@keyframes fsItemIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-toggle .menu-icon {
  transition: transform .2s ease, opacity .2s ease;
}

[data-open="true"]~.menu-toggle .menu-icon,
/* si el botón no es hermano, omite esta línea */
.menu-open .menu-icon {
  transform: rotate(90deg);
}

/* si usas una clase global */

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767.98px) {
  .header-nav {
    display: none;
  }

  .hero-title h1 {
    font-size: 2.5rem;
  }

  .hero-gallery img {
    height: 220px;
  }

  .cartelera-card {
    min-width: 180px;
  }

  .coleccion-gallery img {
    height: 240px;
  }

  .expo-main-img {
    height: 260px;
  }
}

@media (min-width: 992px) {
  .fs-menu__panel {
    padding-left: clamp(48px, 8vw, 120px);
  }
}

@media (max-height: 700px) {
  .fs-menu__panel {
    padding-top: 95px;
    gap: 12px;
  }

  .fs-menu__list {
    gap: 8px;
  }
}

.site-footer {
  background: #000;
  color: #f6efe9;
  padding-bottom: 20px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.footer-top {
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.footer-col a {
  display: block;
  font-family: "Satoshi", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: .92;
}

.footer-col a:hover {
  opacity: .7;
}

/* External shortcuts (footer RedirectPage, richtext pills): arrow always visible. */
.site-menu__external-shortcut {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
}

.site-menu__external-shortcut-icon {
  flex-shrink: 0;
  font-size: 0.85em;
  line-height: 1;
  margin-left: 0.35em;
  transform: translateY(3px);
}

.footer-social {
  display: flex;
  gap: 14px;
  padding: 18px 0 18px;
}

.footer-social a {
  font-size: 1.4rem;
  opacity: 1;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-links a {
  font-family: "Satoshi";
  font-weight: 400;
  font-size: .8rem;
  opacity: .9;
}

.footer-logo {
  text-align: right;
  line-height: 1.25;
  padding: 6px 0;
}

.footer-logo__img {
  display: inline-block;
  height: 36px;
  max-width: min(200px, 52vw);
  width: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 767.98px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-logo {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .footer-top {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .footer-col a {
    font-size: .95rem;
    margin-bottom: 6px;
  }

  .footer-social {
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
  }

  .footer-social--mobile {
    padding-top: 6px;
  }

  .footer-bottom {
    padding-top: 16px;
  }

  .footer-links a {
    font-size: .75rem;
  }

  .footer-logo__img {
    height: 30px;
    max-width: 170px;
  }
}

@media (max-width: 575.98px) {
  .header-site--v2 .header-logo img {
    height: 28px;
    max-width: auto;
  }

  .header-site .container {
    padding-top: .35rem !important;
    padding-bottom: .35rem !important;
  }

  .section-hero {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .hero-title {
    margin-bottom: .75rem !important;
  }

  .hero-title h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  :root {
    --hero-h-m: 390px;
  }

  .carousel-cell.is-highlight .hero-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: none;
  }

  .carousel-cell .hero-overlay {
    padding: 16px;
    background: linear-gradient(0deg, rgba(var(--hero-overlay-bg), 0.95) 0%, rgba(var(--hero-overlay-bg), 0.8) 38%, rgba(var(--hero-overlay-bg), 0) 100%);
  }

  .carousel-cell .hero-overlay-content {
    grid-template-columns: 1fr;
    column-gap: 16px;
    row-gap: 0;
  }

  .carousel-cell .hero-overlay p {
    font-family: "Satoshi Standard", sans-serif;
    font-size: 1rem;
    line-height: 1.25;
    margin: 0;
  }

  .carousel-cell .hero-overlay-time {
    display: none;
  }

  .carousel-cell .hero-overlay-body,
  .carousel-cell .hero-overlay-cta {
    display: none;
  }

  .carousel-cell .hero-overlay-text {
    grid-column: 1;
  }

  .hero-flickity {
    padding-bottom: 22px;
  }

  .hero-flickity .flickity-page-dots {
    bottom: 0;
  }

  .hero-flickity .flickity-page-dots .dot {
    width: 18px;
    height: 4px;
    border-radius: 0;
    background: #c9c9c9;
    margin: 0 4px;
    opacity: 1;
  }

  .hero-flickity .flickity-page-dots .dot.is-selected {
    background: #111;
  }

  #horario {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  #horario .row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title btn"
      "info info";
    align-items: center;
    row-gap: 8px;
  }

  #horario .row > :nth-child(1) {
    grid-area: title;
  }

  #horario .row > :nth-child(2) {
    grid-area: info;
  }

  #horario .row > :nth-child(3) {
    grid-area: btn;
    justify-self: end;
  }

  .horario-title h3 {
    font-size: 1.45rem;
  }

  .horario-info p {
    font-size: .95rem;
  }

  .btn-map {
    font-size: .9rem;
    padding: .2rem .95rem;
  }

  .horario-divider {
    margin-top: 12px !important;
  }

  .section-expo {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  #expo-actual .expo-aside-cta {
    margin-top: calc(0.2rem + 0.2rem + 1.5 * 0.9rem + 2px);
  }

  .expo-title h3 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .expo-period {
    font-size: 1.125rem;
    letter-spacing: .12em;
    margin-top: 0;
  }

  .expo-period-mobile {
    margin-bottom: 12px;
  }

  .expo-figure {
    height: clamp(240px, 56vw, 480px);
    margin-left: 0;
    margin-right: 0;
  }

  .expo-figure img {
    object-fit: cover;
    object-position: left center;
  }

  .expo-aside-title p {
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 0 0 12px;
  }

  .expo-aside-body p {
    font-size: .9rem;
    line-height: 1.25;
  }

  .expo-link a {
    font-size: .9rem;
  }

  .expo-link-wrap {
    margin-top: 10px;
  }

  .section-cartelera {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .cartelera-sidebar-title h3 {
    font-size: 1.45rem;
  }

  .cartelera-filtros {
    display: none;
  }

  .cartelera-main-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cartelera-top-filters {
    gap: 12px;
  }

  .cartelera-top-filter {
    font-size: .9rem;
  }

  .cartelera-calendar-btn {
    font-size: .85rem;
    padding: .25rem .7rem;
  }

  .cartelera-card {
    position: relative;
  }

  .cartelera-card__media img {
    height: 190px;
  }

  .cartelera-card-title {
    font-size: 1rem;
  }

  .cartelera-card-date,
  .cartelera-card-time,
  .cartelera-card-meta,
  .cartelera-card-location {
    font-size: .85rem;
  }

  .cartelera-card {
    margin-bottom: 3rem;
  }

  .cartelera-card-live {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #55C28D;
    color: #fff;
    font-size: .65rem;
    line-height: 1.25;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 999px;
  }

  .section-newsletter {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .newsletter-title p {
    font-size: 1.6rem;
    line-height: 1.25;
    max-width: 18ch;
  }

  .newsletter-form-row {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input {
    height: 40px;
    font-size: .9rem;
    padding: 8px 12px;
    flex: 0 0 auto;
    width: 100%;
  }

  .newsletter-button {
    width: auto;
    height: 32px;
    font-size: .85rem;
    padding: 0 14px;
    align-self: flex-start;
  }

  .section-coleccion {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .cartelera-title h3 {
    font-size: 1.45rem;
  }

  .colec-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .colec-tabs {
    display: none;
  }

  .colec-arrow {
    font-size: 18px;
  }

  .section-coleccion .colec-nav .icon-arrow i {
    font-size: 24.48px;
  }

  .colec-cta {
    font-size: .9rem;
    padding: .3rem .85rem;
  }

  #publicaciones {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .pub-title h3 {
    font-size: 1.45rem;
  }

  .pub-row {
    padding: 12px 0;
  }

  .pub-label,
  .pub-count {
    font-size: .95rem;
  }

  .pub-grid-items {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .pub-card-title,
  .pub-card-year {
    font-size: .95rem;
  }

  .pub-plus.icon-plus i {
    font-size: 28.8px;
  }

  .pub-link a {
    font-size: .9rem;
  }

  .section-audiovisual {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .av-title h3 {
    font-size: 1.45rem;
  }

  .av-list {
    margin-top: 6px;
  }

  .av-item {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px 0;
  }

  .av-thumb {
    display: none;
  }

  .av-title-sm {
    font-size: 1rem;
    line-height: 1.25;
  }

  .av-time {
    display: none;
  }

  .av-plus.icon-plus i {
    font-size: 28.8px;
  }

  .av-link a {
    font-size: .9rem;
  }

  .av-link {
    margin-top: 12px;
  }

  .av-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    border-radius: 999px;
    padding: .2rem .95rem;
    font-size: .9rem;
    font-weight: 500;
    color: #111;
  }
}

/* ===================== NOTICIAS LIST CARDS ===================== */
.noticias-home .noticia-card {
  border: none;
  border-radius: 0;
  background: transparent;
}

.noticias-home .noticia-card__date {
  display: block;
  margin: 0 0 0.5rem;
  font-family: "Inconsolata", monospace;
  font-size: 0.9rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: left;
  color: #000;
}

.noticias-home .noticia-card__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.noticias-home .noticia-card__title {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
}

/* ===================== REUSABLE PAGINATION (no borders; current = black square) ===================== */
.pagination-site .page-link {
  border: none;
  border-radius: 0;
  color: #111;
  background: transparent;
}
.pagination-site .page-link:hover {
  background: #111;
  color: #fff;
}
.pagination-site .page-item.active .page-link {
  background: #111;
  color: #fff;
  border-radius: 0;
}
.pagination-site .page-item.disabled .page-link {
  background: transparent;
  color: #999;
}

/* ===================== BÚSQUEDA PANTALLA COMPLETA ===================== */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  grid-template-areas: "stack";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.search-modal[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.search-modal[hidden] {
  display: grid;
  opacity: 0;
  pointer-events: none;
}

.search-modal__backdrop {
  grid-area: stack;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}

.search-modal__panel {
  grid-area: stack;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.search-modal__header {
  flex: 0 0 auto;
  padding: clamp(16px, 3vw, 28px) 0 12px;
  border-bottom: 1px solid #e5e5e5;
}

.search-modal__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Una sola línea inferior, sin caja */
.search-modal__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #111;
  background: transparent;
  padding: 12px 0 10px;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #111;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-modal__input::placeholder {
  color: #888;
  opacity: 1;
}

.search-modal__input:focus {
  border-bottom-color: #111;
}

.search-modal__input:focus-visible {
  border-bottom-width: 2px;
  margin-bottom: -1px;
}

.search-modal__close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: #000;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1.25;
}

.search-modal__close:hover,
.search-modal__close:focus-visible {
  opacity: 0.85;
  outline: none;
}

.search-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px 0 32px;
}

.search-modal__loading,
.search-modal__hint,
.search-modal__nohits {
  font-family: "Satoshi", sans-serif;
  font-size: 1rem;
  color: #555;
  margin: 0 0 16px;
}

.search-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
}

@media (max-width: 991.98px) {
  .search-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .search-modal__grid {
    grid-template-columns: 1fr;
  }
}

.search-modal__hit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 0 12px;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Satoshi", sans-serif;
  text-decoration: none;
  background-image: linear-gradient(#000, #000);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.2s ease, opacity 0.2s ease;
  min-height: 3.5rem;
}

/* Section / parent page (small, above the hit title) */
.search-modal__hit-parent {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25;
  color: #666;
  letter-spacing: 0.02em;
}

.search-modal__hit-title {
  display: block;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  color: #111;
}

.search-modal__hit:hover,
.search-modal__hit:focus-visible {
  background-size: 100% 1px;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .search-modal {
    transition: none;
  }

  .search-modal__hit {
    transition: none;
  }
}

/* ===================== Streamfield section tabs (horizontal under breadcrumbs) ===================== */

.streamfield-page__tab-nav-horizontal {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  padding: 0.5rem 0;
  margin-top: 0.75rem;
}

.streamfield-page__tab-nav-horizontal-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.streamfield-page__tab-nav-horizontal-link {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.15s ease;
}

.streamfield-page__tab-nav-horizontal-link:hover {
  color: #000;
  border-bottom-color: #000;
}

/* Current page: bold only, no underline */
.streamfield-page__tab-nav-horizontal-link.is-active,
.streamfield-page__tab-nav-horizontal-link.is-active:hover {
  color: #000;
  font-weight: 700;
  border-bottom-color: transparent;
}

/* ===================== ARCHIVED MINISITES INDEX ===================== */
.archived-minisites-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archived-minisites-item {
  border-bottom: 1px solid #d2d2d2;
  /*padding: 12px 0;*/
}

.archived-minisites-link {
  display: block;
  color: #000;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.15s ease, color 0.15s ease;
  padding: 15px 0;
}

.archived-minisites-link:hover,
.archived-minisites-link:focus-visible,
.archived-minisites-link:active {
  background-color: #d2d2d2;
  color: #000;
  outline: none;
}

.archived-minisites-title {
  display: block;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  line-height: 1.25;
}

.archived-minisites-desc {
  margin: 6px 0 0;
  color: #555;
  font-family: "Satoshi", sans-serif;
  font-size: 0.95rem;
  line-height: 1.25;
}

.archived-minisites-item--empty {
  color: #666;
}

/* Same-origin navigations: UA default root cross-fade only (no custom overlays or stagger). */
@supports (view-transition-name: none) {
  @view-transition {
    navigation: auto;
  }
}

.culturas-landing .card {
  border: 0;
  border-radius: 0;
  --bs-card-inner-border-radius: 0;
}

.culturas-landing .card .card-body {
  padding: 0;
}

.culturas-landing .card .card-title {
  font-family: 'Museo', sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  color: var(--bs-heading-color);
  font-size: 1rem;
}

.culturas-landing .card .card-img-top {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  display: block;
}

.culturas-area .card {
  border: 0;
  border-radius: 0;
  --bs-card-inner-border-radius: 0;
}

.culturas-area .card .card-body {
  padding: 0;
}

.culturas-area .card .card-title {
  font-family: 'Museo', sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  color: var(--bs-heading-color);
  font-size: 1rem;
}

.culturas-area .card .card-img-top {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  display: block;
}

.pueblos-culturas-landing .card {
  border: 0;
  border-radius: 0;
  --bs-card-inner-border-radius: 0;
}

.pueblos-culturas-landing .card .card-body {
  padding: 0;
}

/* Amigos del Museo landing — rhythm/colors aligned with museo.precolombino.cl/amigos-del-museo/ */
body.amigos-landing {
  background-color: #ffffff;
  /* Sticky strip sits below site header (.header-site z-index 1100) */
  --amigos-strip-sticky-top: 4.375rem;
}

@media (min-width: 992px) {
  body.amigos-landing {
    --amigos-strip-sticky-top: 6.75rem;
  }
}

main.amigos-landing {
  background-color: #ffffff;
}

/* Same lemon as hero band (.amigos-landing__hero-yellow); no frosted glass */
.amigos-landing__strip {
  position: sticky;
  top: var(--amigos-strip-sticky-top);
  z-index: 1050;
  background-color: #fffe7b;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.amigos-landing__lockup {
  max-height: 44px;
  width: auto;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .amigos-landing__lockup {
    max-height: 52px;
  }
}

@media (min-width: 992px) {
  .amigos-landing__lockup {
    max-height: 60px;
  }
}

.amigos-landing__subnav-sep {
  color: rgba(0, 0, 0, 0.4);
  padding: 0 0.15rem;
  user-select: none;
}

body.amigos-landing .amigos-landing__subnav-link {
  letter-spacing: 0.02em;
}

body.amigos-landing .amigos-landing__subnav-link:hover,
body.amigos-landing .amigos-landing__subnav-link:focus-visible {
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
}

/* Reference lemon yellow (Elementor #FFFE7B); section padding ~100px / 50px */
.amigos-landing__hero-yellow {
  background-color: #fffe7b;
}

.amigos-landing__hero-inner {
  padding-top: clamp(2.5rem, 8vw, 6.25rem);
  padding-bottom: clamp(2rem, 5vw, 3.125rem);
}

/* Reference ~90px display heading; font inherits site h2 (Museo) — no body-font override */
.amigos-landing__hero-title {
  font-size: clamp(2.25rem, 6.5vw, 5.625rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

@media (min-width: 992px) {
  .amigos-landing__hero-lead {
    margin-top: 1.25rem;
    margin-left: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .amigos-landing__hero-lead p {
    font-size: inherit;
  }
}

/* Intro richtext: clear vertical rhythm between paragraphs (reference-style gaps). */
.amigos-landing__hero-lead p {
  margin-top: 0;
  margin-bottom: 0;
}

.amigos-landing__hero-lead p + p {
  margin-top: 1.75rem;
}

/* Illustration strip: one row, fits container — icons share width and cap height by vw */
.amigos-landing__icon-strip {
  width: 100%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
}

.amigos-landing__icon-wrap {
  flex: 1 1 0;
  min-width: 0;
  line-height: 1.25;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.amigos-landing__icon-strip .amigos-landing__icon-svg {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: clamp(1.25rem, 6.25vw, 3.5rem);
  display: block;
  object-fit: contain;
}

/* Same lemon as hero + sticky strip (#fffe7b) */
.amigos-landing__icons-panel {
  background-color: #fffe7b;
}

.amigos-landing__icons-inner {
  padding-top: clamp(0.5rem, 1.5vw, 0.625rem);
  padding-bottom: clamp(2rem, 6vw, 3.75rem);
}

.amigos-landing__plans-band {
  background-color: #fffe7b;
}

/* In-page anchors clear sticky header + strip */
#item0,
#item4,
#item5,
#eventos-amigos,
#auspiciadores {
  scroll-margin-top: calc(var(--amigos-strip-sticky-top, 4.5rem) + 3.5rem);
}

@media (min-width: 992px) {
  #item0,
  #item4,
  #item5,
  #eventos-amigos,
  #auspiciadores {
    scroll-margin-top: calc(var(--amigos-strip-sticky-top, 6.75rem) + 3.25rem);
  }
}

.amigos-landing__band-inner,
.amigos-landing__events-inner {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Sponsors band — shared (homepage + Amigos landing) */
.sponsors-band {
  background-color: #ffffff;
}

.sponsors-band__inner {
  padding-top: clamp(1.35rem, 3vw, 2rem);
  padding-bottom: 0.35rem;
}

.sponsors-band__title {
  margin-bottom: 0.75rem;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.3;
}

body.home-page .home-sponsors-band {
  margin-top: 0;
}

body.amigos-landing .amigos-landing__sponsors-inner {
  padding-top: clamp(1.35rem, 3vw, 2rem);
  padding-bottom: 0.35rem;
}

/* Top row of donation / corporate bands: full-width fluid like Elementor gap-wide */
.amigos-landing__band-toolbar {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

/* Plan grid — 4-col, no gap; cells align to top and push price/button to bottom */
.amigos-landing__plan-cell {
  padding: 2rem 1.5rem 1.75rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 520px;
}

/* Slightly stronger separators on lemon (same band as hero) */
body.amigos-landing .amigos-landing__plans-band .amigos-landing__plan-cell {
  border-right-color: rgba(0, 0, 0, 0.14);
}

.amigos-landing__plan-col:last-child .amigos-landing__plan-cell {
  border-right: none;
}

@media (max-width: 991.98px) {
  .amigos-landing__plan-cell {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    min-height: 0;
  }
  .amigos-landing__plan-col:last-child .amigos-landing__plan-cell {
    border-bottom: none;
  }

  body.amigos-landing .amigos-landing__plans-band .amigos-landing__plan-cell {
    border-bottom-color: rgba(0, 0, 0, 0.16);
  }
}

body.amigos-landing .amigos-landing__plan-title {
  font-size: clamp(1.5rem, 2vw, 1.8125rem);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  text-transform: none;
}

.amigos-landing__plan-body ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.amigos-landing__plan-body ul li {
  margin-bottom: 0.4rem;
  /*font-weight: 700;*/
}

/* Plan value + CTA: same column, shared font-size/weight (scoped; do not affect global .btn) */
body.amigos-landing .amigos-landing__plan-cta-stack {
  min-width: 0;
}

body.amigos-landing .amigos-landing__plan-cta-stack .amigos-landing__plan-price {
  max-width: 100%;
}

body.amigos-landing .amigos-landing__plan-value-btn-type {
  font-size: 1.1rem;
  font-weight: 700;
}

body.amigos-landing .amigos-landing__plan-btn.amigos-landing__plan-value-btn-type {
  text-transform: capitalize;
  border-radius: 25px !important;
  font-weight: 500;
}

.amigos-landing__events,
.amigos-landing__auspiciadores {
  background-color: #ffffff;
}

/* Donación (#item4) y membresías (#item5): two grays from reference */
.amigos-landing__item4 {
  background-color: #ebebeb;
}

.amigos-landing__item5 {
  background-color: #e3e3e3;
}

/* Donación / membresías: force left copy (toolbar + body); beat Draftail/legacy center rules */
body.amigos-landing #item4,
body.amigos-landing #item5 {
  text-align: left !important;
}

@media (min-width: 992px) {
  body.amigos-landing #item4 .amigos-landing__band-toolbar > .row > div:nth-child(2),
  body.amigos-landing #item5 .amigos-landing__band-toolbar > .row > div:nth-child(2) {
    text-align: right !important;
  }
}

/* Same horizontal padding as toolbar so title + body share one left edge */
body.amigos-landing #item4 .amigos-landing__band-inner,
body.amigos-landing #item5 .amigos-landing__band-inner {
  max-width: none;
}

body.amigos-landing #item4 .amigos-landing__band-toolbar {
  padding-bottom: 0.65rem;
}

body.amigos-landing #item4 .amigos-landing__band-inner.amigos-landing__donation-bilingual {
  padding-top: 0.85rem;
}

body.amigos-landing #item5 .amigos-landing__band-toolbar {
  padding-bottom: 0.65rem;
}

body.amigos-landing #item5 .amigos-landing__band-inner {
  padding-top: 0.85rem;
}

/* Reference: title is body-sized text, “Haz una” + strong “Donación”, not a display h2 */
.amigos-landing__band-line {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.25;
  letter-spacing: 0;
}

body.amigos-landing b, strong {
    font-weight: 500;
}

/* Reference: elementor-button-link + elementor-size-sm style (compact bordered) */
body.amigos-landing .amigos-landing__ref-btn {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  white-space: nowrap;
}

body.amigos-landing .amigos-landing__ref-btn:hover {
  color: #000;
  background-color: #f5f5f5;
}

/* Body copy under the title/cta row — slightly larger, no inherited bottom margin on last p */
.amigos-landing__band-body {
  font-size: 1.0625rem;
  line-height: 1.25;
  text-align: left;
}

.amigos-landing__band-body p:last-child {
  margin-bottom: 0;
}

/* Donación / membresías: keep copy left (Draftail alignment blocks, divs, links). */
body.amigos-landing #item4 .amigos-landing__band-body,
body.amigos-landing #item5 .amigos-landing__band-body,
body.amigos-landing #item4 .amigos-landing__band-body *,
body.amigos-landing #item5 .amigos-landing__band-body * {
  text-align: left !important;
}

body.amigos-landing #item4 .amigos-landing__band-line,
body.amigos-landing #item5 .amigos-landing__band-line {
  text-align: left;
}

/* Auspiciadores logo carousel — Flickity; lg/xl 3 · md 2 · sm/xs 1; gap ≈ logo width */
.auspiciadores-logo-flickity {
  --ausp-logo-gap: clamp(7.5rem, 18vw, 11rem);
  --ausp-logo-cols: 1;
  --ausp-logo-h: clamp(4rem, 9vw, 6rem);
  margin: 0.5rem calc(var(--ausp-logo-gap) * -0.5) 0;
}

@media (min-width: 768px) {
  .auspiciadores-logo-flickity {
    --ausp-logo-gap: clamp(8rem, 22vw, 10.5rem);
    --ausp-logo-cols: 2;
  }
}

@media (min-width: 992px) {
  .auspiciadores-logo-flickity {
    --ausp-logo-gap: clamp(9rem, 16vw, 12rem);
    --ausp-logo-cols: 3;
    --ausp-logo-h: clamp(4.5rem, 8vw, 6.5rem);
  }
}

@media (max-width: 767.98px) {
  .auspiciadores-logo-flickity {
    --ausp-logo-gap: min(72vw, 14rem);
    --ausp-logo-h: clamp(5rem, 14vw, 7rem);
  }
}

.auspiciadores-logo-flickity .flickity-viewport {
  overflow: hidden;
}

.auspiciadores-logo-flickity .auspiciadores-logo-carousel__cell {
  width: calc(100% / var(--ausp-logo-cols));
  padding: 0 calc(var(--ausp-logo-gap) * 0.5);
  height: auto;
  margin-right: 0;
  overflow: visible;
}

.auspiciadores-logo-carousel__frame {
  --ausp-logo-pad-top: 0.55rem;
  --ausp-logo-pad-bottom: 0.1rem;
  position: relative;
  min-height: calc(var(--ausp-logo-h) + var(--ausp-logo-pad-top) + var(--ausp-logo-pad-bottom));
  height: calc(var(--ausp-logo-h) + var(--ausp-logo-pad-top) + var(--ausp-logo-pad-bottom));
  padding: var(--ausp-logo-pad-top) 0 var(--ausp-logo-pad-bottom);
  overflow: visible;
}

.ausp-logo-cell__link {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
}

.ausp-logo-visual {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.auspiciadores-logo-carousel__img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  max-width: none;
  max-height: none;
}

/* ——— Arriendo de espacios landing ——— */
/* Same light vertical wash as Planifica «gradient_soft» (streamfield_mchap_landings.css) */
body.arriendo-landing {
  background-color: rgb(250, 248, 245);
  background-image: linear-gradient(
    180deg,
    rgba(250, 248, 245, 1) 0%,
    rgba(240, 236, 230, 1) 45%,
    rgba(250, 248, 245, 1) 100%
  );
}

body.arriendo-landing > main.arriendo-landing {
  background-color: transparent;
}

/* Square corners: cards, modals, buttons, images, sticky contact (this page only) */
body.arriendo-landing .arriendo-landing *,
body.arriendo-landing .arriendo-landing__contact-fixed,
body.arriendo-landing .arriendo-landing__contact-fixed * {
  border-radius: 0 !important;
}

/* Black pill CTA under title — same pattern as e.g. amigos plan buttons */
body.arriendo-landing .arriendo-landing .arriendo-landing__espacios-cta.btn,
body.arriendo-landing .arriendo-landing .arriendo-landing__modal-contact-cta.btn {
  border-radius: var(--radius-pill, 999px) !important;
  font-weight: 500;
}

.arriendo-landing__hero-img {
  display: block;
  width: 100%;
  max-height: min(78vh, 56rem);
  object-fit: cover;
  object-position: center;
}

.arriendo-landing__richtext p:last-child {
  margin-bottom: 0;
}

.arriendo-landing__card .arriendo-landing__richtext ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.arriendo-landing__tile .card-title {
  line-height: 1.25;
}

.arriendo-landing__tile--clickable {
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.arriendo-landing__tile--clickable:hover {
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.12) !important;
}

.arriendo-landing__tile--clickable:focus-within {
  outline: 0.15rem solid rgba(13, 110, 253, 0.45);
  outline-offset: 0.1rem;
}

/* Grid tiles: low-res PDF extracts — fill the ratio box (browser + larger Wagtail fill) */
.arriendo-landing__tile .ratio > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Sticky contact chip: below site header + breadcrumb strip */
/* In-page anchor: clear sticky site header + breadcrumb */
body.arriendo-landing #arriendo-espacios-grid {
  scroll-margin-top: calc(5.5rem + env(safe-area-inset-top, 0px));
}

@media (min-width: 992px) {
  body.arriendo-landing #arriendo-espacios-grid {
    scroll-margin-top: calc(7.5rem + env(safe-area-inset-top, 0px));
  }
}

body.arriendo-landing .arriendo-landing__contact-fixed {
  position: fixed;
  top: calc(5.25rem + env(safe-area-inset-top, 0px));
  right: max(0.5rem, env(safe-area-inset-right, 0px));
  z-index: 1040;
  max-width: min(16rem, calc(100vw - 1rem));
}

/* Above modal backdrop (1050), below modal dialog (1055) — chip stays clickable in the corner */
body.arriendo-landing.modal-open .arriendo-landing__contact-fixed {
  z-index: 1051;
}

@media (min-width: 992px) {
  body.arriendo-landing .arriendo-landing__contact-fixed {
    top: calc(7.25rem + env(safe-area-inset-top, 0px));
    right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

.arriendo-landing__mosaic .modal .arriendo-landing__richtext p:last-child {
  margin-bottom: 0;
}

/* Arriendo modals: extra-wide dialog, media + text columns, carousel */
body.arriendo-landing .arriendo-landing__modal-dialog {
  max-width: min(96vw, 88rem);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  body.arriendo-landing .arriendo-landing__modal-media-col {
    border-right: 1px solid var(--bs-border-color);
  }

  body.arriendo-landing .arriendo-landing__modal-text-col {
    max-height: min(calc(100vh - 6rem), 48rem);
    overflow-y: auto;
  }
}

/* Fixed stage height so slides do not jump when photos differ in aspect ratio */
.arriendo-landing__modal-carousel {
  --arriendo-modal-carousel-stage-h: min(52vh, 32rem);
}

.arriendo-landing__modal-carousel .carousel-inner {
  height: var(--arriendo-modal-carousel-stage-h);
  min-height: var(--arriendo-modal-carousel-stage-h);
  background-color: var(--bs-tertiary-bg);
  overflow: hidden;
}

.arriendo-landing__modal-carousel .carousel-item {
  height: var(--arriendo-modal-carousel-stage-h);
}

.arriendo-landing__modal-carousel-slide {
  position: relative;
  height: 100%;
  margin: 0;
}

.arriendo-landing__modal-carousel-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.arriendo-landing__modal-carousel-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.arriendo-landing__modal-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.93);
  border-top: 1px solid var(--bs-border-color);
}

.arriendo-landing__modal-carousel-indicators {
  position: static;
  margin: 0;
  padding: 0.5rem 0.75rem;
  justify-content: center;
  gap: 0.35rem;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-body-bg, #fff);
}

.arriendo-landing__modal-carousel .carousel-control-prev,
.arriendo-landing__modal-carousel .carousel-control-next {
  width: 2.75rem;
  opacity: 0.9;
}

.arriendo-landing__map-thumb {
  max-height: 7.5rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.arriendo-landing__map-modal-img {
  max-height: min(50vh, 28rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

blockquote {
  font-size: 3.0rem;
}