/* Hero Banner Container */
h1,h2,h3,p,span {
    margin-bottom: 0;
    padding-bottom: 0;
}

.ibd-hero-banner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;

  width: 100%;
  min-width: 360px;
  height: 356px;
  padding: var(--size-space-0, 0);

  background: var(--Color-Surface-General-1, #fff);
}

/* Content Container */
.ibd-hero-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 100%;
  height: 100%;
  gap: var(--size-space-32, 32px);
  padding: var(--size-space-32, 32px) var(--size-space-16, 16px);
}

.ibd-hero-banner__title {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: var(--size-space-8, 8px);
  align-self: stretch;

  width: 100%;
}

.ibd-hero-banner__blank {
  display: none;
}

/* Pretí­tulo */
.ibd-hero-banner__pretitulo {
  align-self: stretch;
  color: var(--Color-Content-General-2, rgba(71, 71, 71, 0.8));
  font-feature-settings:
    "liga" off,
    "clig" off;

  /* Body/SmBold/M */
  font-family: "IberPangea Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 137.5% */

  width: 100%;
}

/* Título Principal */
.ibd-hero-banner__titulo {
  align-self: stretch;
  color: var(--Color-Content-General-1, #2c2c2c);
  font-feature-settings:
    "liga" off,
    "clig" off;

  font-weight: 600 !important;
  width: 100%;
}

/* Picture y Image */
.ibd-hero-banner__picture {
  display: block;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.ibd-hero-banner__image {
  width: 100%;
  display: block;
  object-fit: cover;

  border-radius: var(--border-radius-l, 16px);
  background: lightgray 50% / cover no-repeat;

  height: 150px;
  align-self: stretch;
}

/* Responsive Breakpoints */

/* 576px - Mobile Large */
@media (min-width: 576px) {
  .ibd-hero-banner {
    min-width: 576px;
  }

  .ibd-hero-banner__content {
    padding: var(--size-space-32, 32px) var(--size-space-42, 42px);
  }
}

/* 768px - Tablet */
@media (min-width: 768px) {
  .ibd-hero-banner {
    min-width: 768px;
    height: 316px;
  }

  .ibd-hero-banner__content {
    padding: var(--size-space-32, 32px) var(--size-space-48, 48px);
  }
}

/* 992px - Desktop Small - CON BURBUJA BLANCA SUPERPUESTA */
@media (min-width: 992px) {
  .ibd-hero-banner {
    min-width: 992px;
    height: 250px;

    background: none;
    border-radius: var(--border-radius-none, 0) var(--border-radius-none, 0) 48px 48px;
  }

  .ibd-hero-banner__content {
    flex-direction: row;
    padding: var(--size-space-40, 40px) var(--size-space-82, 82px);
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
  }

  .ibd-hero-banner__picture {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 0;
  }

  .ibd-hero-banner__image {
    height: 100%;
    border-radius: var(--border-radius-none, 0) var(--border-radius-none, 0) 48px 48px;
  }

  .ibd-hero-banner__title {
    position: relative;
    z-index: 1;

    display: flex;
    width: 402px;
    padding: var(--size-space-32, 32px) var(--size-space-24, 24px);
    align-items: center;
    justify-content: center;
    gap: var(--size-space-12, 12px);

    border-radius: var(--border-radius-l, 16px);
    background: var(--Color-Surface-General-1, #fff);
  }

  .ibd-hero-banner__blank {
    display: block;
    width: 400px;
    height: 144px;
  }

  .ibd-hero-banner__pretitulo {
    text-align: center;
  }

  .ibd-hero-banner__titulo {
    text-align: center;
  }
}

/* 1200px - Desktop Medium */
@media (min-width: 1200px) {
  .ibd-hero-banner {
    min-width: 1200px;
  }

  .ibd-hero-banner__content {
    padding: var(--size-space-40, 40px) 102px;
  }

  .ibd-hero-banner__title {
    width: 401px;
  }
}

/* 1920px - Desktop Large */
@media (min-width: 1920px) {
  .ibd-hero-banner {
    min-width: 1920px;
  }

  .ibd-hero-banner__content {
    padding: var(--size-space-40, 40px) 324px;
  }

  .ibd-hero-banner__title {
    width: 408px;
  }
}
