/*
 Theme Name: GeneratePress Child
 Theme URI: https://yogagenda.eu
 Description: Child theme de GeneratePress para Yogagenda
 Author: Musa
 Template: generatepress
 Version: 1.0
*/
.retiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.retiro-card {
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.retiro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}

.retiro-card-title {
  margin: 0 0 10px;
}

.retiro-meta>div {
  margin: 6px 0;
}

.retiro-excerpt {
  margin-top: 12px;
}


.breadcrumbs {
  font-size: 14px;
  margin: 10px 0 20px;
  color: #777;
}

.breadcrumbs a {
  color: #555;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.tax-chips {
  margin: 18px 0 26px;
}

.tax-chips__title {
  font-weight: 600;
  margin-bottom: 10px;
}

.tax-chips__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1;
}

.chip.is-active {
  border-color: #111;
  font-weight: 600;
}

.combo-h2 {
  margin: 16px 0 6px;
  font-size: 1.25rem;
}

.combo-p {
  margin: 0 0 18px;
  opacity: .9;
}

/* =========================================================
   HUB DESTINOS – GRID DE TAXONOMÍAS
   ---------------------------------------------------------
   Uso:
   - Página /destinos/
   - Shortcode: [hub_destinos]
   - Muestra un grid de destinos (taxonomía destino)
   - Cada card enlaza a /destinos/{slug}/
   - Pensado para SEO (hubs + enlazado interno)
   ========================================================= */

/* Contenedor principal del grid de destinos */
.hub-grid {
  /* Grid responsive automático */
  display: grid;

  /* Columnas flexibles según ancho de pantalla */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  /* Espacio entre cards */
  gap: 16px;

  /* Separación vertical respecto a otros bloques */
  margin: 22px 0;
}

/* Card individual de destino */
.hub-card {
  /* Hacemos toda la card clicable */
  display: block;

  /* Estilo visual neutro (GeneratePress friendly) */
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;

  /* Quitamos subrayado del enlace */
  text-decoration: none;
}

/* Nombre del destino (ej: Ibiza, Barcelona, etc.) */
.hub-card__title {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Meta secundaria: número de retiros */
.hub-card__meta {
  /* Menos protagonismo visual */
  opacity: 0.75;
  font-size: 0.95rem;
}

/* =========================================================
   HUB CALENDARIO – LISTADO DE RETIROS POR MES
   ---------------------------------------------------------
   Uso:
   - Página tipo hub (ej: /calendario-retiros/)
   - Shortcode: [hub_calendario months="12" limit_per_month="12"]
   - Agrupa retiros futuros por mes de inicio
   - Pensado para:
     · UX (navegación temporal clara)
     · SEO (long-tail por fechas + enlazado interno)
   ========================================================= */

/* Bloque de un mes (ej: "Marzo 2026") */
.cal-month {
  /* Separación vertical entre meses */
  margin: 26px 0;
}

/* Título del mes (H2 generado por el shortcode) */
.cal-month__h2 {
  /* Sin margen superior para compactar */
  margin: 0 0 10px;

  /* Tamaño ligeramente menor que un H1 */
  font-size: 1.25rem;
}

/* Lista de retiros dentro del mes */
.cal-list {
  /* Quitamos márgenes por defecto del UL */
  margin: 0;

  /* Sangría ligera para mantener jerarquía visual */
  padding-left: 18px;
}

/* Item individual (un retiro concreto) */
.cal-item {
  /* Separación entre retiros del mismo mes */
  margin: 8px 0;
}

/* Meta del retiro: fechas y destino */
.cal-item__meta {
  /* Menos protagonismo que el título */
  opacity: 0.75;

  /* Tamaño un poco menor */
  font-size: 0.95rem;
}

/* =========================================
   Miniaturas en cards (archive / taxonomías)
   ========================================= */

.retiro-thumb {
  display: block;
  margin-bottom: 14px;
  /* separa imagen del título */
}

.retiro-thumb-img {
  width: 100%;
  height: 180px;
  /* altura fija para cards consistentes */
  object-fit: cover;
  /* recorte elegante sin deformar */
  border-radius: 14px;
  display: block;
}

/* HERO tipo banner (recorte elegante) */
.retiro-hero {
  max-width: 900px;
  margin: 0 auto 24px;
}

.retiro-hero-img {
  width: 100%;
  height: 420px;
  /* ajusta altura: 320 / 380 / 420 */
  object-fit: cover;
  /* recorta sin deformar */
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .retiro-hero-img {
    height: 260px;
  }
}

/* =========================================
Micro-CSS para ficha de retiros
========================================= */

/* 1. Contenedor Principal Centrado */
.single-retiro .grid-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Reset de estilos para Hero (contenido, no full width) */
.single-retiro .retiro-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  /* Volvemos a poner bordes redondeados */
}

/* 2. Contenido interno (ya hereda el ancho del padre) */
.single-retiro .retiro-body,
.single-retiro .bar-inner,
.single-retiro .retiro-hero-overlay .grid-container {
  max-width: 100%;
  /* Ya no necesita restricción extra */
  padding: 0;
}

/* Hero wrapper normal (sin breakout) */
.retiro-hero-wrap {
  width: 100%;
  max-width: 1280px;
  /* Igual que el contenido */
  margin: 0 auto 24px auto;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.single-retiro h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.single-retiro p,
.single-retiro ul {
  max-width: 100%;
}

.single-retiro ul {
  padding-left: 1.2rem;
}

.single-retiro .wp-block-button {
  margin-top: 2rem;
}


/* =========================================
   PREMIUM RETREAT LAYOUT
   ========================================= */

/* 1. HERO & OVERLAY */
.retiro-hero-wrap {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  margin-bottom: 0;
}

.retiro-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retiro-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 60px 0 30px;
}

.retiro-badge {
  background: #ff6b6b;
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.retiro-title {
  color: #fff;
  margin: 10px 0;
  font-size: 2.5rem;
  line-height: 1.1;
}

.retiro-meta-hero span {
  margin-right: 15px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* 2. STICKY NAV BAR */
.retiro-sticky-bar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.retiro-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* Scroll en móvil */
}

.tab-link {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

.tab-link:hover,
.tab-link.active {
  color: #111;
  border-bottom-color: #ff6b6b;
}

.btn-reservar {
  background: #ff6b6b;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.btn-reservar:hover {
  background: #e05e5e;
  color: #fff;
}

/* 3. LAYOUT BODY */
.retiro-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.retiro-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
  /* Para el scroll del sticky nav */
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  border-left: 4px solid #ff6b6b;
  padding-left: 15px;
}

/* 4. TIMELINE (PROGRAMA) */
.timeline {
  border-left: 2px solid #eee;
  padding-left: 20px;
  margin-left: 10px;
}

.timeline-day {
  margin-bottom: 30px;
  position: relative;
}

.day-badge {
  background: #f4f4f4;
  padding: 5px 15px;
  border-radius: 6px;
  font-weight: 700;
  color: #333;
  display: inline-block;
  margin-bottom: 15px;
}

.day-badge::before {
  content: '';
  position: absolute;
  left: -26px;
  /* Ajustar posición punto */
  top: 10px;
  width: 10px;
  height: 10px;
  background: #ff6b6b;
  border-radius: 50%;
}

.schedule-list {
  list-style: none;
  padding: 0;
}

.schedule-list li {
  display: flex;
  margin-bottom: 12px;
}

.schedule-list .time {
  min-width: 60px;
  font-weight: 600;
  color: #777;
  font-size: 0.9rem;
}

/* 5. TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  /* Center items if few */
}

.team-card {
  flex: 0 1 250px;
  /* Base width */
  max-width: 300px;
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
}

.team-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-content {
  padding: 15px;
}

.team-content h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
}

.team-content p {
  font-size: 0.9rem;
  color: #666;
}

/* 6. GALLERY - HORIZONTAL SCROLL */
.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
  /* Space for scrollbar */
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  /* Firefox */
  -webkit-overflow-scrolling: touch;
}

/* Hide Scrollbar for Slider feel */
.gallery-scroll {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.gallery-scroll::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Slider Wrapper */
.gallery-slider-wrap {
  position: relative;
  width: 100%;
}

/* Nav Buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.gallery-nav:hover {
  background: #ff6b6b;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.gallery-nav.prev {
  left: -20px;
}

.gallery-nav.next {
  right: -20px;
}

/* Responsive Arrows */
@media (max-width: 768px) {
  .gallery-nav {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .gallery-nav.prev {
    left: -10px;
  }

  .gallery-nav.next {
    right: -10px;
  }
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  /* Ancho fijo */
  height: 220px;
  /* Alto fijo */
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  /* Indica clickable */
  transition: transform 0.3s;
  text-decoration: none;
  /* remove underline from anchor */
  display: block;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

/* LIGHTBOX STYLES */
.yg-lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 999999;
  /* Higher than WP Admin Bar */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.yg-lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1
  }
}

.yg-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  transition: 0.3s;
  cursor: pointer;
  z-index: 100000;
  line-height: 1;
}

.yg-close:hover,
.yg-close:focus {
  color: #ff6b6b;
  text-decoration: none;
  cursor: pointer;
}

#yg-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: sans-serif;
}


/* SIDEBAR WIDGET */
.booking-widget {
  background: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 12px;
  position: sticky;
  top: 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.full-width {
  display: block;
  text-align: center;
  margin-top: 15px;
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 768px) {

  /* 1. Stack columns */
  .retiro-body {
    display: block;
    /* Safer than grid 1fr for some browsers */
    margin-top: 20px;
    margin-bottom: 40px;
  }

  /* 2. Sidebar below content */
  .retiro-content-col {
    margin-bottom: 40px;
  }

  .booking-widget {
    max-width: 100%;
    /* Prevent overflow */
    position: static;
    /* No sticky on mobile usually better or check height */
  }

  /* 3. Hero Adjustments */
  .retiro-hero-wrap {
    height: 50vh;
    min-height: 300px;
    /* Reduce min-height */
    padding-left: 15px;
    /* Reduce padding */
    padding-right: 15px;
  }

  .retiro-title {
    font-size: 1.8rem;
  }

  /* 4. Timeline & lists */
  .schedule-list li {
    flex-direction: column;
    /* Stack time and activity */
  }

  .schedule-list .time {
    margin-bottom: 5px;
    color: #ff6b6b;
  }

  /* 5. Sticky Bar simplified */
  .retiro-tabs {
    gap: 15px;
  }

  .bar-action {
    display: none;
    /* Hide button on top bar if space is tight, or adjust */
  }

  /* We keep the sticky bar minimal, user can use the bottom widget */
}

/* Prevent horizontal scroll globally */
body,
html {
  overflow-x: hidden;
}

/* =========================================================
   LOGIN & REGISTER FORMS ([yg_login] & [yg_registro])
   ========================================================= */

/* Register Container */
.yg-register-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid #eee;
}

/* Form Column (Left) */
.yg-register-form-col {
  flex: 1 1 50%;
  padding: 40px;
  min-width: 300px;
}

.yg-register-form-col h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 1.8em;
}

.yg-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.yg-form-row input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

.yg-required-note {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 15px;
}

.yg-legal-checks {
  margin-bottom: 25px;
}

.yg-legal-checks label {
  display: block;
  font-size: 0.9em;
  color: #555;
  margin-bottom: 8px;
  cursor: pointer;
}

.yg-legal-checks input[type="checkbox"] {
  margin-right: 8px;
}

.yg-submit-btn {
  width: 100%;
  background-color: #ffb400;
  /* Inspira yellow/orange */
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.yg-submit-btn:hover {
  background-color: #e5a200;
}

.yg-login-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

/* Promo Column (Right) */
.yg-register-promo-col {
  flex: 1 1 40%;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.yg-register-promo-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7));
}

.yg-promo-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
}

.yg-promo-content h3 {
  color: #ffb400;
  margin-bottom: 10px;
  font-size: 1.6em;
}

.yg-promo-content p {
  font-size: 1em;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Messages */
.yg-message {
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 4px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.yg-message.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.yg-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* Login Form Specifics */
#yg-login-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#yg-login-form p {
  margin-bottom: 15px;
}

#yg-login-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

#yg-login-form input[type="text"],
#yg-login-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#yg-login-form input[type="submit"] {
  width: 100%;
  background: #ffb400;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

#yg-login-form input[type="submit"]:hover {
  background: #e5a200;
}

.yg-login-links {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

/* Responsive Forms */
@media (max-width: 768px) {
  .yg-register-container {
    flex-direction: column;
  }

  .yg-form-row {
    flex-direction: column;
    gap: 10px;
  }

  .yg-register-promo-col {
    min-height: 200px;
    order: -1;
  }
}


/* =========================================================
   SEARCH & FILTER LAYOUT (archive-retiro.php)
   ========================================================= */

/* Main Container */
.yg-archive-container {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  position: relative;
}

/* Filters Sidebar */
.yg-filters {
  flex: 0 0 250px;
  background: #fdfdfd;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  height: fit-content;
  position: sticky;
  top: 100px;
  /* Adjusted for sticky header */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  /* Subtle shadow */
  transition: all 0.3s ease;
}

.yg-results-wrapper {
  flex: 1;
}

/* Filters Typography & Inputs */
.yg-filters h3 {
  margin-top: 0;
  font-size: 1.2rem;
  border-bottom: 2px solid #ffb400;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.yg-filter-group {
  margin-bottom: 20px;
}

.yg-filter-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

.yg-filter-group select,
.yg-filter-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  transition: border-color 0.3s;
}

.yg-filter-group select:focus,
.yg-filter-group input:focus {
  border-color: #ffb400;
  outline: none;
}

.yg-btn-clean {
  background: none;
  border: none;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
  transition: color 0.3s;
}

.yg-btn-clean:hover {
  color: #333;
}

/* Filter Loading State */
/* Filter Loading State */
.yg-loading {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.3s;
  position: relative;
  min-height: 200px;
}

.yg-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ffb400;
  /* Inspira color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Optional: Add spinner if needed */

/* Responsive Filters */
@media (max-width: 900px) {
  .yg-archive-container {
    flex-direction: column;
  }

  .yg-filters {
    position: static;
    width: 100%;
    margin-bottom: 30px;
  }
}
/* Fix truncated year in datepicker */
.ui-datepicker select.ui-datepicker-year,
.ui-datepicker select.ui-datepicker-month {
    width: auto !important;
    padding-right: 20px !important;
}

/* Inclusiones List Styles */
.check-list, .cross-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.check-list li, .cross-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* Hide old inclusion fields (Text Areas) */
.acf-field[data-name='inclusiones'],
.acf-field[data-name='no_inclusiones'],
.acf-field[data-key='field_inclusiones'],
.acf-field[data-key='field_no_inclusiones'] {
    display: none !important;
}
