.wp-block-kipo-kipo-about-hero {
  container-type: inline-size;
}

/* ─── SECTION ────────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero {
  background: var(--hero-bg);
  padding: 80px 80px 0px;
  position: relative;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  height: 80px;
  background-color: var(--hero-bg);
  border-radius: 0 0 50% 50% / 0 0 80px 80px;
  z-index: 1;
}

/* ─── HEADER ─────────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-header {
  text-align: center;
  margin-bottom: 64px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-title {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #0D1B2D;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #5c646f;
  display: block;
}

/* ─── BODY (2 cols) ──────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-body {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── VISIÓN ─────────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-heading {
  font-family: 'Ubuntu Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0D1B2D;
  line-height: 1.2;
  margin: 0 0 20px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-sub {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #5c646f;
  margin: 0 0 20px;
  display: block;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-text {
  font-size: 16px;
  color: #5c646f;
  line-height: 1.7;
  margin-bottom: 32px;
  display: block;
}

/* ─── CHIPS ──────────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding-left: 15px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1e2941;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  white-space: nowrap;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-chip-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-chip-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transform: translateX(-40%)translateY(-10%);
}

/* ─── CARRUSEL ───────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-slides {
  position: relative;
  width: 100%;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--hero-bg);
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-slide.active {
  opacity: 1;
}

/* ─── CAROUSEL NAV ───────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-prev,
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ADC8F4;
  background: #ffffff;
  color: #1e2941;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-prev:hover,
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-next:hover {
  background: #ADC8F4;
  border-color: #ADC8F4;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ADC8F4;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-dot.active {
  background: #1e2941;
  transform: scale(1.3);
}

/* ─── PLACEHOLDER ────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-carousel-placeholder {
  aspect-ratio: 4 / 3;
  background: #f4f7fe;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c646f;
  font-size: 14px;
  border: 2px dashed #ADC8F4;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero { padding: 60px 24px 80px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero::after { bottom: -60px; height: 60px; border-radius: 0 0 50% 50% / 0 0 60px 60px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-title { font-size: 36px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-header { margin-bottom: 40px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-body { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero::after { bottom: -40px; height: 40px; border-radius: 0 0 50% 50% / 0 0 40px 40px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-title { font-size: 28px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-subtitle { font-size: 15px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-heading,
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-sub,
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-text { text-align: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-chips { justify-content: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-prev,
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-next { width: 28px; height: 28px; font-size: 16px; }
}

@container (max-width: 768px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero { padding: 60px 24px 80px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero::after { bottom: -60px; height: 60px; border-radius: 0 0 50% 50% / 0 0 60px 60px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-title { font-size: 36px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-header { margin-bottom: 40px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-body { grid-template-columns: 1fr; gap: 40px; }
}

@container (max-width: 480px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero::after { bottom: -40px; height: 40px; border-radius: 0 0 50% 50% / 0 0 40px 40px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-hero-title { font-size: 28px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-heading,
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-sub,
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-vision-text { text-align: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .about-chips { justify-content: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-prev,
  :is(#kipo-landing, .wp-block-kipo-kipo-about-hero) .carousel-next { width: 28px; height: 28px; font-size: 16px; }
}
