/* Fuente única del proyecto: se fuerza el WOFF2 servido por la app para evitar
   que iOS Safari resuelva una familia local distinta. */

@font-face {
  font-family: "IberPangeaVAR";

  src: url("/static/fonts/IberPangeaVAR.woff2?v=20260429") format("woff2");

  font-weight: 100 900;

  font-style: normal;

  font-display: swap;
}

@font-face {
  font-family: "IberPangea VAR";

  src: url("/static/fonts/IberPangeaVAR.woff2?v=20260429") format("woff2");

  font-weight: 100 900;

  font-style: normal;

  font-display: swap;
}

html,
body {
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
  font-synthesis: none;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

@media (hover: hover) and (pointer: fine) {
  html.pulse-custom-cursor,
  html.pulse-custom-cursor body,
  html.pulse-custom-cursor *,
  html.pulse-custom-cursor *::before,
  html.pulse-custom-cursor *::after {
    cursor: none !important;
  }
}

.pulse-diff-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #27bf63;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 30000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 120ms ease;
}

.pulse-diff-cursor.is-visible {
  opacity: 1;
}

/* Safari/iOS can ignore font-weight with variable fonts in some breakpoints.
   Mirror Tailwind font utility classes to the variable "wght" axis. */

.font-thin {
  font-variation-settings: "wght" 100;
}

.font-extralight {
  font-variation-settings: "wght" 200;
}

.font-light {
  font-variation-settings: "wght" 300;
}

.font-normal {
  font-variation-settings: "wght" 400;
}

.font-medium {
  font-variation-settings: "wght" 500;
}

.font-semibold {
  font-variation-settings: "wght" 600;
}

.font-bold {
  font-variation-settings: "wght" 700;
}

.font-extrabold {
  font-variation-settings: "wght" 800;
}

.font-black {
  font-variation-settings: "wght" 900;
}

.pulse-shell {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

:root {
  --pulse-design-width: 1440;
}

/* Keep desktop proportions while viewport shrinks (pixel-perfect scale-down). */

@media (min-width: 901px) and (max-width: 1439px) {
  #pulse-scale-shell {
    width: calc(var(--pulse-design-width) * 1px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    zoom: calc(100vw / (var(--pulse-design-width) * 1px));
  }
}

@supports not (zoom: 1) {
  @media (min-width: 901px) and (max-width: 1439px) {
    #pulse-scale-shell {
      width: calc(var(--pulse-design-width) * 1px);
      position: relative;
      left: 50%;
      transform-origin: top center;
      transform: translateX(-50%) scale(calc(100vw / (var(--pulse-design-width) * 1px)));
    }
  }
}

input,
button,
textarea,
select {
  font-family: inherit;
}

.pulse-hero-title {
  font-size: clamp(82px, 6.8vw, 100px);
  line-height: clamp(74px, 6.1vw, 90px);
}

.pulse-hero-title__top {
  white-space: nowrap;
}

.pulse-nav-link,
.pulse-bottom__unsubscribe {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.pulse-logo-mark {
  position: relative;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 9999px;
  background: #FEF6ED;
}

.pulse-logo-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  transform-origin: center;
  animation-duration: 9s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: infinite;
}

.pulse-logo-circle--green {
  background: #003020;
  animation-name: pulseOrange;
}

.pulse-logo-circle--orange {
  background: #FF9C1A;
  animation-name: pulseGreen;
}

.pulse-logo-circle--blue {
  background: #0E9FEE;
  animation-name: pulseBlue;
}

.pulse-logo-text-svg {
  width: 105.297px;
  height: 32px;
  margin-left: 9px;
  flex: none;
  -o-object-fit: contain;
     object-fit: contain;
}

/* VERDE: GRANDE -> PEQUENO -> MEDIANO -> GRANDE */

@keyframes pulseGreen {
  0% {
    transform: scale(1.0);
    z-index: 1;
  }

  11% {
    transform: scale(0.3);
    z-index: 3;
  }

  33.3% {
    transform: scale(0.3);
    z-index: 3;
  }

  44.3% {
    transform: scale(0.6);
    z-index: 2;
  }

  66.6% {
    transform: scale(0.6);
    z-index: 2;
  }

  77.6% {
    transform: scale(1.0);
    z-index: 1;
  }

  100% {
    transform: scale(1.0);
    z-index: 1;
  }
}

/* NARANJA: MEDIANO -> GRANDE -> PEQUENO -> MEDIANO */

@keyframes pulseOrange {
  0% {
    transform: scale(0.6);
    z-index: 2;
  }

  11% {
    transform: scale(1.0);
    z-index: 1;
  }

  33.3% {
    transform: scale(1.0);
    z-index: 1;
  }

  44.3% {
    transform: scale(0.3);
    z-index: 3;
  }

  66.6% {
    transform: scale(0.3);
    z-index: 3;
  }

  77.6% {
    transform: scale(0.6);
    z-index: 2;
  }

  100% {
    transform: scale(0.6);
    z-index: 2;
  }
}

/* AZUL: PEQUENO -> MEDIANO -> GRANDE -> PEQUENO */

@keyframes pulseBlue {
  0% {
    transform: scale(0.3);
    z-index: 3;
  }

  11% {
    transform: scale(0.6);
    z-index: 2;
  }

  33.3% {
    transform: scale(0.6);
    z-index: 2;
  }

  44.3% {
    transform: scale(1.0);
    z-index: 1;
  }

  66.6% {
    transform: scale(1.0);
    z-index: 1;
  }

  77.6% {
    transform: scale(0.3);
    z-index: 3;
  }

  100% {
    transform: scale(0.3);
    z-index: 3;
  }
}

@media (max-width: 900px) {
  .pulse-logo-mark {
    width: 19.743px;
    height: 19.743px;
  }

  .pulse-logo-circle {
    width: 19.743px;
    height: 19.743px;
  }

  .pulse-logo-text-svg {
    width: 64.903px;
    height: 19.743px;
    margin-left: 5.552px;
  }
}

.pulse-nav-link::after,
.pulse-bottom__unsubscribe::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.pulse-nav-link:hover::after,
.pulse-nav-link:focus-visible::after,
.pulse-bottom__unsubscribe:hover::after,
.pulse-bottom__unsubscribe:focus-visible::after {
  transform: scaleX(1);
}

/* Date nav arrows: base styles so buttons stay visible even if Tailwind is stale */

.pulse-date-nav__btn {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #003f28;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pulse-date-nav__btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 63, 40, 0.06);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.pulse-date-nav__btn:hover:not(:disabled)::after {
  opacity: 1;
}

.arrow-icon {
  position: relative;
  z-index: 2;
  will-change: transform;
}

#pulse-date-nav-next:hover .arrow-icon,
.pulse-invite__button:hover .arrow-icon {
  animation: arrow-slide-right 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes arrow-slide-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    transform: translateX(30px);
    opacity: 0;
  }

  41% {
    transform: translateX(-30px);
    opacity: 0;
  }

  42% {
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#pulse-date-nav-prev:hover .arrow-icon {
  animation: arrow-slide-left 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes arrow-slide-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  40% {
    transform: translateX(-30px);
    opacity: 0;
  }

  41% {
    transform: translateX(30px);
    opacity: 0;
  }

  42% {
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.pulse-date-nav__btn:focus-visible {
  outline: 2px solid #003f28;
  outline-offset: 3px;
}

.pulse-date-nav__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 900px) {
  .pulse-date-nav__btn {
    width: 48px;
    height: 48px;
  }
}

.design-grid-helper.is-hidden {
  display: none;
}

.pulse-page-wrap {
  display: grid;
  width: 100%;
}

.pulse-content-wrap {
  position: relative;
  z-index: 100;
  background-color: #fff5ec;
  margin-bottom: 100vh;
  grid-area: 1 / 1;
  min-width: 0;
  width: 100%;
}

.pulse-content-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #fff5ec;
  z-index: -1;
  pointer-events: none;
}

.pulse-footer-placeholder {
  position: sticky;
  bottom: 0;
  z-index: 0;
  width: 100%;
  grid-area: 1 / 1;
  align-self: end;
  min-width: 0;
}

.pulse-bottom-shell {
  position: relative;
  z-index: 0;
  width: 100%;
}

.pulse-bottom__copy {
  margin: 0;
  color: var(--5, #00402a);
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Mobile/tablet: disable sticky-reveal footer to avoid clipping/overlap issues
   across viewport heights and browser UI chrome changes. */

@media (max-width: 900px) {
  .pulse-content-wrap {
    margin-bottom: 0;
  }

  .pulse-footer-placeholder {
    position: relative;
    bottom: auto;
  }
}

/* Guard fixed-width sections against subpixel horizontal overflow on tablet/desktop */

.duo-news,
.layered-news,
.pulse-invite {
  max-width: 100%;
}

.pulse-invite__content {
  max-width: 100%;
}

.pulse-bottom,
.pulse-bottom__brand {
  max-width: 100%;
}

.hero-card,
.featured-card,
.duo-news__card,
.layered-news__headline,
.layered-news__bottom .layered-news__card {
  overflow: hidden;
  transform: translateZ(0);
}

.plus-btn {
  --plus-hover-mask: rgba(0, 0, 0, 0.08);
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  /* position comes from Tailwind `absolute` on the same element; do not set
     `position: relative` here — pulse.css loads after tailwind.css and would
     override `absolute`, breaking corner placement on cards. */
}

.plus-btn:hover {
  transform: scale(1);
}

.plus-btn::before,
.plus-btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.plus-btn::before {
  left: 50%;
  top: 50%;
  height: 20px;
  width: 20px;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size:
    2px 20px,
    20px 2px;
  background-image:
    linear-gradient(var(--plus-glyph-color), var(--plus-glyph-color)),
    linear-gradient(var(--plus-glyph-color), var(--plus-glyph-color));
}

.plus-btn::after {
  inset: 0;
  border-radius: inherit;
  z-index: 2;
  opacity: 0;
  background: var(--plus-hover-mask);
  transition: opacity 0.3s ease;
}

.plus-btn--blue {
  background: #0E9FEE;
  --plus-glyph-color: #003F28;
}

.plus-btn--dark {
  background: #003020;
  --plus-glyph-color: #ffffff;
  --plus-hover-mask: rgba(255, 255, 255, 0.18);
}

.plus-btn--green {
  background: #00a443;
  --plus-glyph-color: #003F28;
}

.plus-btn--orange {
  background: #D68010;
  --plus-glyph-color: #003F28;
}

.plus-btn--white {
  background: #fff5ec;
  --plus-glyph-color: #003F28;
}

.pulse-invite__button:focus-visible {
  outline: 2px solid #003f28;
  outline-offset: 3px;
}

.hero-card__image,
.featured-card__image,
.duo-news__image,
.layered-news__headline-image,
.layered-news__bottom .layered-news__icon {
  transition: transform 0.4s ease;
  transform-origin: center;
}

.hero-card:hover .hero-card__image,
.hero-card:focus-within .hero-card__image {
  transform: scale(1.03);
}

.featured-card:hover .featured-card__image,
.featured-card:focus-within .featured-card__image,
.duo-news__card:hover .duo-news__image,
.duo-news__card:focus-within .duo-news__image {
  transform: scale(1.03);
}

.layered-news__bottom .layered-news__card:hover .layered-news__icon,
.layered-news__bottom .layered-news__card:focus-within .layered-news__icon {
  transform: scale(1.03);
}

.layered-news__headline:hover .layered-news__headline-image,
.layered-news__headline:focus-within .layered-news__headline-image {
  transform: scale(1.03);
}

.hero-card:hover .plus-btn::after,
.hero-card:focus-within .plus-btn::after,
.featured-card:hover .plus-btn::after,
.featured-card:focus-within .plus-btn::after,
.duo-news__card:hover .plus-btn::after,
.duo-news__card:focus-within .plus-btn::after,
.layered-news__headline:hover .plus-btn::after,
.layered-news__headline:focus-within .plus-btn::after,
.layered-news__bottom .layered-news__card:hover .plus-btn::after,
.layered-news__bottom .layered-news__card:focus-within .plus-btn::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pulse-logo-circle {
    animation: none;
  }

  .pulse-logo-circle--green {
    transform: scale(1.0);
    z-index: 1;
  }

  .pulse-logo-circle--orange {
    transform: scale(0.6);
    z-index: 2;
  }

  .pulse-logo-circle--blue {
    transform: scale(0.3);
    z-index: 3;
  }

  .pulse-bottom-shell {
    opacity: 1;
    transform: none;
    transition: none;
    pointer-events: auto;
  }

  .plus-btn {
    transition: none;
  }

  .hero-card__image,
  .featured-card__image,
  .duo-news__image,
  .layered-news__headline-image,
  .layered-news__bottom .layered-news__icon {
    transition: none;
  }

  .plus-btn:hover {
    transform: scale(1);
  }

  .hero-card:hover .hero-card__image,
  .hero-card:focus-within .hero-card__image {
    transform: none;
  }

  .featured-card:hover .featured-card__image,
  .featured-card:focus-within .featured-card__image,
  .duo-news__card:hover .duo-news__image,
  .duo-news__card:focus-within .duo-news__image,
  .layered-news__bottom .layered-news__card:hover .layered-news__icon,
  .layered-news__bottom .layered-news__card:focus-within .layered-news__icon {
    transform: none;
  }

  .layered-news__headline:hover .layered-news__headline-image,
  .layered-news__headline:focus-within .layered-news__headline-image {
    transform: none;
  }
}

.hero-card__title,
.featured-card__title,
.duo-news__title,
.layered-news__headline-title,
.layered-news__title {
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-card__title,
.featured-card__title,
.duo-news__summary,
.layered-news__headline-title,
.layered-news__summary {
  line-height: normal !important;
}

.duo-news__title,
.layered-news__title {
  font-size: 40px !important;
  line-height: 40px !important;
}

.pulse-invite__copy {
  line-height: normal !important;
}

.hero-card__title {
  line-clamp: 6;
  -webkit-line-clamp: 6;
}

.featured-card__title {
  line-clamp: 4;
  -webkit-line-clamp: 4;
}

.duo-news__title,
.layered-news__title {
  line-clamp: 5;
  -webkit-line-clamp: 5;
}

.layered-news__headline-title {
  font-size: 24px !important;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

@media (max-width: 900px) {
  .featured-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    box-sizing: border-box;
  }

  .featured-card__media {
    left: 20px !important;
    right: 20px !important;
    top: 20px !important;
    width: auto !important;
  }

  .featured-card__title,
  .featured-card .card-title {
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    padding-right: 64px !important;
    top: 251px !important;
    bottom: 124px !important;
  }

  /* Featured cards had desktop top-position on mobile; pin CTA to bottom */

  .featured-card__plus {
    top: auto !important;
    bottom: 16px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 10 !important;
  }

  /* Safari iOS can ignore line-clamp intermittently: force a hard text box */

  .featured-card__title {
    display: -webkit-box !important;
    /* autoprefixer: ignore next */
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;
    line-clamp: 4;
    overflow: hidden !important;
    max-height: 5.2em;
  }

  /* Keep a safe area for the action button in remaining mobile cards */

  .duo-news__summary,
  .layered-news__summary {
    width: calc(100% - 112px) !important;
  }

  /* Avoid plus button overlapping media blocks on large cards */

  .duo-news__media {
    width: calc(100% - 96px) !important;
  }

  .layered-news__icon-box {
    width: calc(100% - 96px) !important;
    max-width: 210px;
  }

  /* Robust mobile layout for featured cards (avoid odd spacing/overlaps) */

  .featured-card {
    height: auto !important;
    min-height: 0 !important;
    padding: 20px 20px 76px !important;
  }

  .featured-card__media {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 215px !important;
  }

  .featured-card__title,
  .featured-card .card-title {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 14px !important;
    padding-right: 64px !important;
  }

  .featured-card__plus {
    bottom: 20px !important;
    right: 20px !important;
  }

  /* Mobile: avoid oversized loading animations covering most of viewport */

  #lectura.is-pulse-loading .hero-card::before,
  #lectura.is-pulse-loading .featured-card::before,
  #lectura.is-pulse-loading .duo-news__card:has(.duo-news__image)::before,
  #lectura.is-pulse-loading .layered-news__headline::before,
  #lectura.is-pulse-loading .layered-news__bottom .layered-news__card:has(.layered-news__icon-box)::before,
  #lectura.is-pulse-loading .hero-card::after,
  #lectura.is-pulse-loading .featured-card::after,
  #lectura.is-pulse-loading .duo-news__card::after,
  #lectura.is-pulse-loading .layered-news__headline::after,
  #lectura.is-pulse-loading .layered-news__bottom .layered-news__card::after {
    display: none !important;
    animation: none !important;
  }

  .pulse-hero-title__top {
    white-space: normal;
  }

  .pulse-hero-title {
    font-size: 36px;
    line-height: 34px;
  }

  .pulse-hero-title > span {
    width: 329px;
    margin-left: auto;
    margin-right: auto;
  }

  .featured-section {
    padding-bottom: 0 !important;
  }

  .featured-section h2 {
    margin-top: 80px !important;
    margin-bottom: 68px !important;
    font-size: 32px !important;
    line-height: 1.05 !important;
  }

  .duo-news {
    margin-top: 20px !important;
  }

  .featured-grid--next {
    padding-top: 20px !important;
    padding-bottom: 112px !important;
  }

  .duo-news__title,
  .layered-news__title {
    font-size: 32px !important;
    line-height: 32px !important;
  }

  .layered-news__headline-title {
    font-size: 22px !important;
    line-height: 1.1 !important;
    top: 330px !important;
  }

  .layered-news__headline,
  .layered-news__bottom .layered-news__card,
  .duo-news .duo-news__card {
    min-height: 500px;
  }

  #audio {
    padding-top: 88px !important;
    padding-bottom: 120px !important;
  }

  #audio h2 {
    font-size: clamp(40px, 11vw, 52px) !important;
  }

  #audio p,
  #audio span {
    font-size: 20px !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere;
  }

  .pulse-bottom__links {
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    row-gap: 0;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }

  .pulse-bottom {
    padding-left: 21px !important;
    padding-right: 30px !important;
    padding-top: 80px !important;
    padding-bottom: 72px !important;
  }

  .pulse-bottom__brand {
    display: block;
    width: min(100%, 560px) !important;
    height: auto !important;
    aspect-ratio: 1361.95 / 406.607;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }

  .pulse-bottom__meta {
    margin-top: 80px !important;
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .pulse-bottom__copy {
    max-width: 30ch;
    font-size: 16px;
    line-height: 1.28 !important;
  }

  .pulse-bottom__unsubscribe,
  .pulse-bottom__year {
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
  }

  .pulse-bottom__links {
    margin-top: 40px;
  }

  .pulse-bottom__iberdrola {
    width: min(220px, 62vw) !important;
    height: auto !important;
    margin-top: 77px;
    align-self: center;
    justify-self: center !important;
  }
}

@media (max-width: 480px) {
  .pulse-bottom {
    padding-left: 21px !important;
    padding-right: 24px !important;
  }

  .hero-card {
    height: 558px !important;
  }

  .duo-news__card,
  .layered-news__headline,
  .layered-news__bottom .layered-news__card {
    min-height: 470px;
  }

  .pulse-invite__image-wrap {
    height: 300px !important;
  }

  .news-detail-source-arrow {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 360px) {
  .pulse-date-nav__btn {
    width: 42px;
    height: 42px;
  }

  #pulse-date-label {
    font-size: 20px;
  }

  .plus-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 900px) {
  .hero-card__media {
    position: absolute !important;
    top: 100px !important;
    left: 50% !important;
    right: auto !important;
    width: min(171.571px, calc(100% - 40px)) !important;
    height: 171.57px !important;
    transform: translateX(-50%) !important;
  }

  .hero-card__title {
    top: 311.57px !important;
    left: 47px !important;
    right: 47px !important;
    width: auto !important;
    transform: none !important;
  }

  .plus-btn {
    width: 44px;
    height: 44px;
  }

  .duo-news__title,
  .layered-news__title {
    line-height: 32px !important;
  }

  .hero-card__title {
    display: -webkit-box !important;
    /* autoprefixer: ignore next */
    -webkit-box-orient: vertical !important;
    line-clamp: 3 !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }

  .featured-card__title {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .duo-news__title,
  .layered-news__title {
    line-clamp: 4;
    -webkit-line-clamp: 4;
  }

  .layered-news__headline-title {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }

  .pulse-bottom__copy {
    line-height: 1.35 !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  /* Touch devices: remove oversized motion effects */

  #pulse-date-nav-next:hover .arrow-icon,
  #pulse-date-nav-prev:hover .arrow-icon,
  .pulse-invite__button:hover .arrow-icon,
  .news-detail-source-item:hover .news-detail-source-arrow svg,
  .news-detail-source-item:focus-visible .news-detail-source-arrow svg,
  .news-detail-source-item:focus-within .news-detail-source-arrow svg {
    animation: none !important;
  }

  .hero-card:hover .hero-card__image,
  .featured-card:hover .featured-card__image,
  .duo-news__card:hover .duo-news__image,
  .layered-news__headline:hover .layered-news__headline-image,
  .layered-news__bottom .layered-news__card:hover .layered-news__icon {
    transform: none !important;
  }
}

.news-detail-overlay {
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 24, 16, 0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: background-color 420ms cubic-bezier(0.33, 0.86, 0.2, 1);
}

.news-detail-overlay.news-detail-overlay--shown {
  background: rgba(0, 24, 16, 0.62);
}

/* Primer frame con flex: panel ligeramente bajo y atenuado; --shown activa la transición */

.news-detail-overlay.flex:not(.news-detail-overlay--shown) .news-detail-panel {
  opacity: 0.86;
  transform: translateY(14px) scale(0.988);
}

.news-detail-overlay.news-detail-overlay--shown .news-detail-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.news-detail-panel {
  position: relative;
  margin: 25px auto 40px;
  width: calc(100% - 2.5rem);
  border-radius: 20px;
  border: 1px solid rgba(0, 63, 40, 0.12);
  border-bottom: 1px solid rgba(0, 63, 40, 0.12);
  box-shadow: none;
  background: #fff5ec;
  transition:
    opacity 440ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-detail-panel::-webkit-scrollbar {
  display: none;
}

@media (min-width: 901px) {
  .news-detail-panel {
    width: calc(100% - 2.5rem);
  }
}

.news-detail-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 40px 40px 44px;
}

@media (min-width: 901px) {
  .news-detail-header {
    width: calc(100vw - 40px);
    margin-left: calc((100vw - 40px - 100%) / -2);
  }
}

.news-detail-scroll {
  padding: 0;
}

.news-detail-content {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-bottom: 0;
}

#news-detail-title {
  width: min(670px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: #003f28;
  text-align: center;
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 59px;
}

#news-detail-tags {
  margin-top: 24px;
}

#news-detail-image-wrap {
  margin-top: 45px;
}

@media (min-width: 901px) {
  #news-detail-title {
    width: 670px;
    font-size: 64px;
  }

  #news-detail-tags {
    margin-top: 40px;
  }
}

.news-detail-link-wrap {
  margin-top: 80px;
  margin-bottom: 0;
  padding-bottom: 112px;
  display: flex;
  justify-content: center;
}

.news-detail-link {
  transition: background-color 0.2s ease;
}

.news-detail-link:hover {
  background-color: #005236;
}

.news-detail-link:focus-visible {
  outline: 2px solid #0ab2fe;
  outline-offset: 3px;
}

.news-detail-sources-list {
  width: min(670px, 100%);
  margin-top: 80px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 112px;
}

.news-detail-sources-list.is-visible {
  display: block;
}

.news-detail-source-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #f8ddc4;
  text-decoration: none;
}

.news-detail-source-content {
  min-width: 0;
  flex: 1;
}

.news-detail-source-title {
  margin: 0;
  color: #003f28;
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: normal;
}

.news-detail-source-arrow {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #fff;
  overflow: hidden;
}

.news-detail-source-arrow svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke: #003f28;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  will-change: transform, opacity;
}

.news-detail-source-item:hover .news-detail-source-arrow svg,
.news-detail-source-item:focus-visible .news-detail-source-arrow svg,
.news-detail-source-item:focus-within .news-detail-source-arrow svg {
  animation: source-arrow-slide-diagonal 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes source-arrow-slide-diagonal {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  40% {
    transform: translate(22px, -22px);
    opacity: 0;
  }

  41% {
    transform: translate(-22px, 22px);
    opacity: 0;
  }

  42% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.news-detail-close {
  border: none;
  padding: 0;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Mask above the icon: the close SVG is a solid white circle, so an underlay
   would never show through — the overlay must sit on top of the image. */

.news-detail-close::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 63, 40, 0.1);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 1;
}

.news-detail-close:hover::after,
.news-detail-close:focus-visible::after {
  opacity: 1;
}

.news-detail-close > img {
  position: relative;
  z-index: 0;
}

.news-detail-close:focus-visible {
  outline: 2px solid #0ab2fe;
  outline-offset: 3px;
}

.news-detail-paragraph {
  color: #003f28;
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.news-detail-source-meta {
  box-sizing: border-box;
  display: inline-flex;
  height: 18px;
  padding: 0 4px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background: #ebd9ca;
  color: #003f2a;
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  vertical-align: baseline;
}

.news-detail-source-meta__icon {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-detail-source-meta__icon svg {
  display: block;
  width: 12px;
  height: 12px;
}

.news-detail-source-meta__domain,
.news-detail-source-meta__count {
  color: inherit;
  font: inherit;
  line-height: 1;
}

.news-detail-source-meta__icon.is-fallback {
  background: #003f2a;
}

/* Detail media always renders in a 16:9 mask. Large images are cropped,
   small images are zoomed to cover while keeping center focus. */

#news-detail-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

#news-detail-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .news-detail-link {
    transition: background-color 0.15s ease;
  }

  .news-detail-overlay {
    transition: none;
  }

  .news-detail-overlay,
  .news-detail-overlay.news-detail-overlay--shown {
    background: rgba(0, 24, 16, 0.62);
  }

  .news-detail-panel {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }

  .news-detail-source-item:hover .news-detail-source-arrow svg,
  .news-detail-source-item:focus-visible .news-detail-source-arrow svg,
  .news-detail-source-item:focus-within .news-detail-source-arrow svg {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .news-detail-panel {
    margin: 1rem auto 2rem;
    width: calc(100% - 1rem);
    border-radius: 1rem;
  }

  .news-detail-header {
    width: auto;
    margin-left: 0;
    padding: 1.25rem 1.25rem 1.25rem;
  }

  .news-detail-scroll {
    padding: 0;
  }

  /* Keep detail image from becoming an oversized block on mobile */

  #news-detail-image-wrap {
    box-sizing: border-box;
    width: min(670px, calc(100% - 40px));
    max-height: min(42vh, 260px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    aspect-ratio: 16 / 10;
  }

  .news-detail-link-wrap {
    margin-top: 64px;
    margin-bottom: 0;
    padding-bottom: 64px;
  }

  .news-detail-sources-list {
    margin-top: 48px;
    padding-bottom: 64px;
  }

  .news-detail-source-item {
    gap: 14px;
    padding: 20px 0;
  }

  .news-detail-source-title {
    font-size: 24px;
    line-height: 1.05;
  }
}

/* --- Pulse: skeleton / loading state for news cards --- */

@keyframes pulse-card-loading-shimmer {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pulse-skeleton-image-slot {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 0.95;
  }
}

/* Image-area skeletons (above the card veil, aligned with real image slots) */

#lectura.is-pulse-loading .hero-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 135px;
  width: 208.534px;
  height: 208.532px;
  transform: translateX(-50%);
  border-radius: 12.087px;
  z-index: 21;
  background: linear-gradient(
    145deg,
    rgba(235, 235, 235, 0.98) 0%,
    rgba(200, 200, 200, 0.95) 50%,
    rgba(225, 225, 225, 0.98) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  animation: pulse-skeleton-image-slot 1.25s ease-in-out infinite;
}

@media (max-width: 900px) {
  #lectura.is-pulse-loading .hero-card::before {
    top: 20px;
    width: calc(100% - 40px);
    height: 208px;
  }
}

#lectura.is-pulse-loading .featured-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 285px;
  height: 215px;
  border-radius: 8.936px;
  z-index: 21;
  background: linear-gradient(
    145deg,
    rgba(235, 235, 235, 0.98) 0%,
    rgba(200, 200, 200, 0.95) 50%,
    rgba(225, 225, 225, 0.98) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  animation: pulse-skeleton-image-slot 1.25s ease-in-out infinite;
}

@media (max-width: 900px) {
  #lectura.is-pulse-loading .featured-card::before {
    width: calc(100% - 40px);
  }
}

#lectura.is-pulse-loading .duo-news__card:has(.duo-news__image)::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 287.087px;
  height: 217.776px;
  border-radius: 8.936px;
  z-index: 21;
  background: linear-gradient(
    145deg,
    rgba(235, 235, 235, 0.98) 0%,
    rgba(200, 200, 200, 0.95) 50%,
    rgba(225, 225, 225, 0.98) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  animation: pulse-skeleton-image-slot 1.25s ease-in-out infinite;
}

@media (max-width: 900px) {
  #lectura.is-pulse-loading .duo-news__card:has(.duo-news__image)::before {
    left: 20px;
    right: 20px;
    bottom: auto;
    top: 250px;
    width: auto;
    height: 220px;
  }
}

#lectura.is-pulse-loading .layered-news__headline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 188px;
  width: 210px;
  height: 210px;
  transform: translateX(-50%);
  border-radius: 8.936px;
  z-index: 21;
  background: linear-gradient(
    145deg,
    rgba(235, 235, 235, 0.98) 0%,
    rgba(200, 200, 200, 0.95) 50%,
    rgba(225, 225, 225, 0.98) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  animation: pulse-skeleton-image-slot 1.25s ease-in-out infinite;
}

#lectura.is-pulse-loading .layered-news__bottom .layered-news__card:has(.layered-news__icon-box)::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 288px;
  width: 210px;
  height: 210px;
  border-radius: 8.936px;
  z-index: 21;
  background: linear-gradient(
    145deg,
    rgba(235, 235, 235, 0.98) 0%,
    rgba(200, 200, 200, 0.95) 50%,
    rgba(225, 225, 225, 0.98) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 4px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  animation: pulse-skeleton-image-slot 1.25s ease-in-out infinite;
}

@media (max-width: 900px) {
  #lectura.is-pulse-loading .layered-news__bottom .layered-news__card:has(.layered-news__icon-box)::before {
    left: 20px;
    top: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #lectura.is-pulse-loading .hero-card::before,
  #lectura.is-pulse-loading .featured-card::before,
  #lectura.is-pulse-loading .duo-news__card:has(.duo-news__image)::before,
  #lectura.is-pulse-loading .layered-news__headline::before,
  #lectura.is-pulse-loading .layered-news__bottom .layered-news__card:has(.layered-news__icon-box)::before {
    animation: none;
    opacity: 0.85;
  }
}

#lectura.is-pulse-loading .hero-card::after,
#lectura.is-pulse-loading .featured-card::after,
#lectura.is-pulse-loading .duo-news__card::after,
#lectura.is-pulse-loading .layered-news__headline::after,
#lectura.is-pulse-loading .layered-news__bottom .layered-news__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  border-radius: inherit;
  background: rgba(115, 115, 115, 0.8);
  pointer-events: none;
  animation: pulse-card-loading-shimmer 1.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  #lectura.is-pulse-loading .hero-card::after,
  #lectura.is-pulse-loading .featured-card::after,
  #lectura.is-pulse-loading .duo-news__card::after,
  #lectura.is-pulse-loading .layered-news__headline::after,
  #lectura.is-pulse-loading .layered-news__bottom .layered-news__card::after {
    animation: none;
    opacity: 0.9;
  }
}

#lectura.is-pulse-loading .hero-card__image,
#lectura.is-pulse-loading .hero-card__title,
#lectura.is-pulse-loading .featured-card__image,
#lectura.is-pulse-loading .featured-card__title,
#lectura.is-pulse-loading .duo-news__image,
#lectura.is-pulse-loading .duo-news__title,
#lectura.is-pulse-loading .duo-news__summary,
#lectura.is-pulse-loading .layered-news__badge,
#lectura.is-pulse-loading .layered-news__headline-image,
#lectura.is-pulse-loading .layered-news__headline-title,
#lectura.is-pulse-loading .layered-news__bottom .layered-news__title,
#lectura.is-pulse-loading .layered-news__bottom .layered-news__summary,
#lectura.is-pulse-loading .layered-news__bottom .layered-news__icon,
#lectura.is-pulse-loading .layered-news__bottom .layered-news__icon-box,
#lectura.is-pulse-loading .plus-btn {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 900px) {
  main#lectura .featured-section > h2 {
    margin-top: 80px !important;
    margin-bottom: 68px !important;
    font-size: 32px !important;
  }

  .featured-grid .featured-card,
  .featured-grid--next .featured-card {
    width: 373.06px !important;
    height: 497.413px !important;
    aspect-ratio: 3 / 4 !important;
    max-width: none !important;
  }

  .duo-news .duo-news__card:first-child .duo-news__media {
    width: 176.738px !important;
    height: 134.069px !important;
    left: 20px !important;
    bottom: 20px !important;
    top: auto !important;
  }

  .duo-news__title,
  .layered-news__headline-title,
  .layered-news__title {
    font-size: 24px !important;
  }

  .layered-news__headline-title {
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: normal !important;
    top: 330px !important;
    left: 50% !important;
    right: auto !important;
    width: calc(100% - 40px) !important;
    height: auto !important;
    transform: translateX(-50%) !important;
  }

  .duo-news .duo-news__card,
  .layered-news__bottom .layered-news__card {
    width: 374px !important;
    height: 374.003px !important;
    min-height: 0 !important;
  }

  .layered-news__bottom .layered-news__summary {
    left: 20px !important;
    bottom: 20px !important;
  }

  .layered-news__bottom .layered-news__card:last-child .layered-news__icon-box {
    width: 176.74px !important;
    height: 134.07px !important;
    left: 20px !important;
    bottom: 20px !important;
    top: auto !important;
  }

  main#lectura #invitar {
    margin-top: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    width: 373px !important;
    height: 897.65px !important;
    max-width: none !important;
    padding: 20px !important;
    grid-template-columns: none !important;
  }

  main#lectura #invitar .pulse-invite__image-wrap {
    order: 1;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 332.87px !important;
    height: 443.57px !important;
    border-radius: 12px !important;
    margin-left: auto;
    margin-right: auto;
  }

  main#lectura #invitar .pulse-invite__image {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 332.87px !important;
    height: 443.57px !important;
    aspect-ratio: 332.87 / 443.57 !important;
    margin-left: auto;
    margin-right: auto;
  }

  main#lectura #invitar .pulse-invite__content {
    order: 2;
    width: 332.87px !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  main#lectura #invitar .pulse-invite__title {
    position: static !important;
    width: 100% !important;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
  }

  main#lectura #invitar .pulse-invite__copy {
    position: static !important;
    width: 100% !important;
    max-width: 320px;
    margin-top: 20px !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: normal !important;
  }

  main#lectura #invitar .pulse-invite__form {
    position: static !important;
    width: 100% !important;
    max-width: 332px;
    margin-top: 24px !important;
  }
}

/* Keep the exact mobile design but prevent horizontal overflow on very narrow screens. */

@media (max-width: 420px) {
  .featured-grid .featured-card,
  .featured-grid--next .featured-card,
  .duo-news .duo-news__card,
  .layered-news__bottom .layered-news__card {
    width: 100% !important;
    max-width: 100% !important;
  }

  main#lectura #invitar {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  main#lectura #invitar .pulse-invite__image-wrap,
  main#lectura #invitar .pulse-invite__image,
  main#lectura #invitar .pulse-invite__content,
  main#lectura #invitar .pulse-invite__form {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-card__media {
    left: 50% !important;
    right: auto !important;
    width: min(171.571px, calc(100% - 40px)) !important;
    transform: translateX(-50%) !important;
  }

  .hero-card__title {
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .featured-grid,
  .featured-grid--next,
  .duo-news,
  .layered-news,
  .layered-news__bottom {
    justify-items: center;
  }

  .hero-card,
  .featured-card,
  .duo-news .duo-news__card,
  .layered-news__headline,
  .layered-news__bottom .layered-news__card,
  main#lectura #invitar {
    width: min(100%, 374px) !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .pulse-invite {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .pulse-hero-title > span {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .layered-news__headline-title {
    left: 50% !important;
    right: auto !important;
    width: min(217px, calc(100% - 40px)) !important;
    transform: translateX(-50%) !important;
  }

  main#lectura #invitar .pulse-invite__image-wrap {
    height: auto !important;
    aspect-ratio: 332.87 / 443.57 !important;
  }

  main#lectura #invitar .pulse-invite__image {
    height: 100% !important;
  }
}

@media (max-width: 360px) {
  .pulse-hero-title > span {
    width: 100% !important;
  }

  .access-footer,
  .pulse-bottom__links {
    gap: 12px;
  }
}

.pulse-cta-underline {
  color: #003F2A;
  text-align: right;
  font-family: "IberPangea VAR", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.pulse-cta-underline:hover::after,
.pulse-cta-underline:focus-visible::after {
  transform: scaleX(1);
}

.pulse-today-card-wrap {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
}

.pulse-today-card {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 220;
  width: min(92vw, 760px);
  min-height: 420px;
  border-radius: 20px;
  background: #FFA61C;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(0, 48, 32, 0.18);
}

.pulse-today-card.is-hidden {
  display: none;
}

.pulse-today-card__item {
  margin: 0;
  color: #003F28;
  text-align: center;
  font-family: "IberPangea VAR", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  opacity: 0.32;
  transition: opacity 0.2s ease;
}

.pulse-today-card__item.is-selected {
  opacity: 1;
}

.pulse-today-card__close {
  align-self: flex-end;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 9999px;
  background: #EEF8F4;
  color: #003F28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pulse-today-card__close > span {
  position: relative;
  z-index: 1;
  transform: translateY(-1px);
}

.pulse-today-card__close::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 63, 40, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pulse-today-card__close:hover::after,
.pulse-today-card__close:focus-visible::after {
  opacity: 1;
}

.pulse-today-card__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  padding: 16px 28px 22px;
}

.pulse-today-card__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.pulse-today-wheel {
  width: 100%;
  height: 220px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: y mandatory;
  padding: 86px 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.pulse-today-wheel::-webkit-scrollbar {
  display: none;
}

.pulse-today-wheel .pulse-today-card__item {
  scroll-snap-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-today-wheel .pulse-today-card__item.is-disabled {
  opacity: 0.38;
  color: #2a2a2a;
}

.pulse-today-wheel .pulse-today-card__item.is-selected.is-disabled {
  opacity: 1;
  color: #2f2f2f;
}

/* AAFF centrado solo escritorio; en ≤900px copia absoluta top 33px / right 15px */

.pulse-header-aaff-desktop {
  position: absolute;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  width: min(267px, calc(100% - 32px));
  height: auto;
  max-height: clamp(48px, 12vw, 94px);
  -o-object-fit: contain;
     object-fit: contain;
}

.pulse-header-aaff-mobile-wrap {
  display: none;
}

.pulse-header-aaff-mobile {
  display: block;
  width: 92.212px;
  height: 32.564px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pulse-header-invite {
  width: 150px;
  height: 64px;
  border-radius: 74px;
  background: #FFA61C;
  color: #003F28;
  font-family: "IberPangea VAR", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600 !important;
  font-variation-settings: "wght" 600;
  line-height: normal;
  padding: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pulse-header-invite::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 63, 40, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pulse-header-invite:hover::after,
.pulse-header-invite:focus-visible::after {
  opacity: 1;
}

/* 83px del círculo al título en móvil: fila solo logo (~20px), sin hueco extra bajo el círculo */

.pulse-header-title-stack {
  margin-top: 92px;
}

.pulse-header-title-image {
  display: block;
  box-sizing: border-box;
  width: 655.95px;
  height: 179.522px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.pulse-header-meta-row {
  margin-top: 120px;
}

/* Ámbitos: subrayado solo en activo; hover mueve la línea con salida RTL / entrada LTR a la vez */

.pulse-section-tab {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  padding-bottom: 3px;
  -webkit-tap-highlight-color: transparent;
}

.pulse-section-tab__label {
  display: inline-block;
}

.pulse-section-tab__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: currentColor;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: right center;
}

.pulse-section-tab__line--static-on {
  transform: scaleX(1);
  transform-origin: left center;
}

.pulse-section-tab__line--static-off {
  transform: scaleX(0);
  transform-origin: right center;
}

.pulse-section-tab__line--anim-in {
  animation: pulse-tab-line-in 0.22s ease forwards;
}

.pulse-section-tab__line--anim-out {
  animation: pulse-tab-line-out 0.22s ease forwards;
}

@keyframes pulse-tab-line-in {
  from {
    transform: scaleX(0);
    transform-origin: left center;
  }

  to {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes pulse-tab-line-out {
  from {
    transform: scaleX(1);
    transform-origin: right center;
  }

  to {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-section-tab__line--anim-in,
  .pulse-section-tab__line--anim-out {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

@media (max-width: 900px) {
  .pulse-header-aaff-mobile-wrap {
    display: block;
    position: absolute;
    top: 33px;
    right: 15px;
    z-index: 2;
    line-height: 0;
  }

  .pulse-header-title-stack {
    margin-top: 83px;
  }

  .pulse-header-title-image {
    width: min(100%, 520px);
    height: calc(min(100%, 520px) * 179.522 / 655.95);
  }

  .pulse-header-meta-row {
    margin-top: 79px;
  }

  .pulse-today-card {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: none;
    min-height: 0;
    height: auto;
    z-index: 10000;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .pulse-today-card__close {
    width: 48px;
    height: 48px;
    font-size: 32px;
  }

  .pulse-today-card__grid {
    padding: 12px 0 0;
    gap: 12px;
  }

  .pulse-today-card__item {
    font-size: 32px;
    line-height: 32px;
  }

  .pulse-today-wheel {
    height: 180px;
    padding: 74px 0;
  }

  .pulse-today-wheel .pulse-today-card__item {
    min-height: 32px;
  }
}

@media (max-width: 600px) {
  /* Logo Pulse a 20px (px-5 en header) y 40px del borde superior; AAFF sigue absolute (≤900px) para no empujar el carrusel */

  .pulse-content-wrap > header {
    padding-top: 40px;
  }

  .pulse-header-title-stack {
    margin-top: 83px;
  }

  .pulse-header-invite {
    width: 112px;
    height: 48px;
    font-size: 14px;
    padding: 8px 12px;
  }

  .pulse-header-logo-link {
    width: 19.738px;
    height: 19.738px;
    aspect-ratio: 1 / 1;
  }

  .pulse-header-circle-carousel {
    width: 19.738px;
    height: 19.738px;
    aspect-ratio: 1 / 1;
  }

  /* Mayor especificidad que `img` (Preflight) y utilidades; tamaño Figma móvil */

  img.pulse-header-title-image {
    width: 372.489px;
    max-width: 100%;
    height: 101.944px;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .pulse-header-meta-row {
    align-items: flex-end;
    gap: 16px;
  }
}

@media (max-width: 400px) {
  .pulse-today-card {
    width: calc(100% - 20px);
    padding: 20px 16px;
  }
}

/* --- Circle Carousel (DIV layers, synchronized) --- */

.pulse-header-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pulse-header-circle-carousel {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
}

@media (min-width: 601px) {
  .pulse-header-logo-link {
    width: 64px;
    height: 64px;
  }

  .pulse-header-circle-carousel {
    width: 64px;
    height: 64px;
  }
}

.carousel-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 1;
  will-change: width, height, z-index, opacity;
}

.carousel-orange {
  background: #FF9C1A;
  animation: carousel-orange 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.carousel-dark {
  background: #00402A;
  animation: carousel-dark 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.carousel-light {
  background: #00A443;
  animation: carousel-light 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes carousel-light {
  0%   {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }

  22%  {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }

  33%  {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }

  55%  {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }

  66%  {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }

  88%  {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }

  90%  {
    width: 18px;
    height: 18px;
    z-index: 4;
    opacity: 0;
  }

  91%  {
    width: 0px;
    height: 0px;
    z-index: 4;
    opacity: 0;
  }

  100% {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }
}

@keyframes carousel-dark {
  0%   {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }

  22%  {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }

  33%  {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }

  55%  {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }

  57%  {
    width: 18px;
    height: 18px;
    z-index: 4;
    opacity: 0;
  }

  58%  {
    width: 0px;
    height: 0px;
    z-index: 4;
    opacity: 0;
  }

  66%  {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }

  88%  {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }

  100% {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }
}

@keyframes carousel-orange {
  0%   {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }

  22%  {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }

  24%  {
    width: 18px;
    height: 18px;
    z-index: 4;
    opacity: 0;
  }

  25%  {
    width: 0px;
    height: 0px;
    z-index: 4;
    opacity: 0;
  }

  33%  {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }

  55%  {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }

  66%  {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }

  88%  {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }

  100% {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }
}

/* Móvil: escala 19.738 / 64 respecto al carrusel desktop */

@keyframes carousel-light-sm {
  0%   {
    width: 7.093px;
    height: 7.093px;
    z-index: 3;
    opacity: 1;
  }

  22%  {
    width: 7.093px;
    height: 7.093px;
    z-index: 3;
    opacity: 1;
  }

  33%  {
    width: 13.261px;
    height: 13.261px;
    z-index: 2;
    opacity: 1;
  }

  55%  {
    width: 13.261px;
    height: 13.261px;
    z-index: 2;
    opacity: 1;
  }

  66%  {
    width: 19.738px;
    height: 19.738px;
    z-index: 1;
    opacity: 1;
  }

  88%  {
    width: 19.738px;
    height: 19.738px;
    z-index: 1;
    opacity: 1;
  }

  90%  {
    width: 5.551px;
    height: 5.551px;
    z-index: 4;
    opacity: 0;
  }

  91%  {
    width: 0px;
    height: 0px;
    z-index: 4;
    opacity: 0;
  }

  100% {
    width: 7.093px;
    height: 7.093px;
    z-index: 3;
    opacity: 1;
  }
}

@keyframes carousel-dark-sm {
  0%   {
    width: 13.261px;
    height: 13.261px;
    z-index: 2;
    opacity: 1;
  }

  22%  {
    width: 13.261px;
    height: 13.261px;
    z-index: 2;
    opacity: 1;
  }

  33%  {
    width: 19.738px;
    height: 19.738px;
    z-index: 1;
    opacity: 1;
  }

  55%  {
    width: 19.738px;
    height: 19.738px;
    z-index: 1;
    opacity: 1;
  }

  57%  {
    width: 5.551px;
    height: 5.551px;
    z-index: 4;
    opacity: 0;
  }

  58%  {
    width: 0px;
    height: 0px;
    z-index: 4;
    opacity: 0;
  }

  66%  {
    width: 7.093px;
    height: 7.093px;
    z-index: 3;
    opacity: 1;
  }

  88%  {
    width: 7.093px;
    height: 7.093px;
    z-index: 3;
    opacity: 1;
  }

  100% {
    width: 13.261px;
    height: 13.261px;
    z-index: 2;
    opacity: 1;
  }
}

@keyframes carousel-orange-sm {
  0%   {
    width: 19.738px;
    height: 19.738px;
    z-index: 1;
    opacity: 1;
  }

  22%  {
    width: 19.738px;
    height: 19.738px;
    z-index: 1;
    opacity: 1;
  }

  24%  {
    width: 5.551px;
    height: 5.551px;
    z-index: 4;
    opacity: 0;
  }

  25%  {
    width: 0px;
    height: 0px;
    z-index: 4;
    opacity: 0;
  }

  33%  {
    width: 7.093px;
    height: 7.093px;
    z-index: 3;
    opacity: 1;
  }

  55%  {
    width: 7.093px;
    height: 7.093px;
    z-index: 3;
    opacity: 1;
  }

  66%  {
    width: 13.261px;
    height: 13.261px;
    z-index: 2;
    opacity: 1;
  }

  88%  {
    width: 13.261px;
    height: 13.261px;
    z-index: 2;
    opacity: 1;
  }

  100% {
    width: 19.738px;
    height: 19.738px;
    z-index: 1;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-light,
  .carousel-dark,
  .carousel-orange {
    animation: none;
  }

  .carousel-light {
    width: 23px;
    height: 23px;
    z-index: 3;
    opacity: 1;
  }

  .carousel-dark {
    width: 43px;
    height: 43px;
    z-index: 2;
    opacity: 1;
  }

  .carousel-orange {
    width: 64px;
    height: 64px;
    z-index: 1;
    opacity: 1;
  }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  .carousel-light {
    width: 7.093px;
    height: 7.093px;
  }

  .carousel-dark {
    width: 13.261px;
    height: 13.261px;
  }

  .carousel-orange {
    width: 19.738px;
    height: 19.738px;
  }
}

/* Tras las reglas base `.carousel-* { animation: … }`: animación móvil con keyframes escalados */

@media (max-width: 600px) and (not (prefers-reduced-motion: reduce)) {
  .carousel-light {
    animation: carousel-light-sm 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  }

  .carousel-dark {
    animation: carousel-dark-sm 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  }

  .carousel-orange {
    animation: carousel-orange-sm 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.bottom-\[20px\] {
  bottom: 20px;
}

.bottom-\[26px\] {
  bottom: 26px;
}

.bottom-\[30px\] {
  bottom: 30px;
}

.bottom-\[35px\] {
  bottom: 35px;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.left-\[-0\.83\%\] {
  left: -0.83%;
}

.left-\[110\.375px\] {
  left: 110.375px;
}

.left-\[168\.103px\] {
  left: 168.103px;
}

.left-\[20px\] {
  left: 20px;
}

.left-\[249px\] {
  left: 249px;
}

.left-\[30px\] {
  left: 30px;
}

.left-\[35px\] {
  left: 35px;
}

.right-\[20px\] {
  right: 20px;
}

.right-\[26px\] {
  right: 26px;
}

.right-\[28px\] {
  right: 28px;
}

.right-\[4\.625px\] {
  right: 4.625px;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-\[-0\.33\%\] {
  top: -0.33%;
}

.top-\[108px\] {
  top: 108px;
}

.top-\[152\.86px\] {
  top: 152.86px;
}

.top-\[188px\] {
  top: 188px;
}

.top-\[20px\] {
  top: 20px;
}

.top-\[251px\] {
  top: 251px;
}

.top-\[26px\] {
  top: 26px;
}

.top-\[279\.79px\] {
  top: 279.79px;
}

.top-\[288px\] {
  top: 288px;
}

.top-\[29px\] {
  top: 29px;
}

.top-\[30px\] {
  top: 30px;
}

.top-\[357px\] {
  top: 357px;
}

.top-\[420\.183px\] {
  top: 420.183px;
}

.top-\[456px\] {
  top: 456px;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.z-\[10000\] {
  z-index: 10000;
}

.z-\[9999\] {
  z-index: 9999;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.m-0 {
  margin: 0px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-0\.5 {
  margin-bottom: 0.125rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-\[124px\] {
  margin-bottom: 124px;
}

.mb-\[20px\] {
  margin-bottom: 20px;
}

.ml-\[calc\(50\%-50vw\)\] {
  margin-left: calc(50% - 50vw);
}

.mr-\[calc\(50\%-50vw\)\] {
  margin-right: calc(50% - 50vw);
}

.mt-0 {
  margin-top: 0px;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-\[141px\] {
  margin-top: 141px;
}

.mt-\[16px\] {
  margin-top: 16px;
}

.mt-\[1px\] {
  margin-top: 1px;
}

.mt-\[20px\] {
  margin-top: 20px;
}

.mt-\[247px\] {
  margin-top: 247px;
}

.mt-\[24px\] {
  margin-top: 24px;
}

.mt-\[265px\] {
  margin-top: 265px;
}

.mt-\[30px\] {
  margin-top: 30px;
}

.mt-\[80px\] {
  margin-top: 80px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-2 {
  height: 0.5rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-\[101\.65\%\] {
  height: 101.65%;
}

.h-\[140px\] {
  height: 140px;
}

.h-\[160px\] {
  height: 160px;
}

.h-\[210px\] {
  height: 210px;
}

.h-\[215px\] {
  height: 215px;
}

.h-\[217\.776px\] {
  height: 217.776px;
}

.h-\[24px\] {
  height: 24px;
}

.h-\[32\.023px\] {
  height: 32.023px;
}

.h-\[406\.607px\] {
  height: 406.607px;
}

.h-\[433\.333px\] {
  height: 433.333px;
}

.h-\[44px\] {
  height: 44px;
}

.h-\[48px\] {
  height: 48px;
}

.h-\[556\.209px\] {
  height: 556.209px;
}

.h-\[56px\] {
  height: 56px;
}

.h-\[577px\] {
  height: 577px;
}

.h-\[636\.305px\] {
  height: 636.305px;
}

.h-\[636\.306px\] {
  height: 636.306px;
}

.h-\[64px\] {
  height: 64px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-px {
  height: 1px;
}

.max-h-none {
  max-height: none;
}

.min-h-\[106px\] {
  min-height: 106px;
}

.min-h-screen {
  min-height: 100vh;
}

.w-2 {
  width: 0.5rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-\[101\.65\%\] {
  width: 101.65%;
}

.w-\[1131\.205px\] {
  width: 1131.205px;
}

.w-\[1360px\] {
  width: 1360px;
}

.w-\[1361\.95px\] {
  width: 1361.95px;
}

.w-\[140px\] {
  width: 140px;
}

.w-\[146\.301px\] {
  width: 146.301px;
}

.w-\[200px\] {
  width: 200px;
}

.w-\[210px\] {
  width: 210px;
}

.w-\[218px\] {
  width: 218px;
}

.w-\[24px\] {
  width: 24px;
}

.w-\[260px\] {
  width: 260px;
}

.w-\[285px\] {
  width: 285px;
}

.w-\[287\.086px\] {
  width: 287.086px;
}

.w-\[287\.087px\] {
  width: 287.087px;
}

.w-\[325px\] {
  width: 325px;
}

.w-\[332px\] {
  width: 332px;
}

.w-\[360\.738px\] {
  width: 360.738px;
}

.w-\[379\.59px\] {
  width: 379.59px;
}

.w-\[409\.221px\] {
  width: 409.221px;
}

.w-\[433px\] {
  width: 433px;
}

.w-\[447\.456px\] {
  width: 447.456px;
}

.w-\[44px\] {
  width: 44px;
}

.w-\[48px\] {
  width: 48px;
}

.w-\[56px\] {
  width: 56px;
}

.w-\[668\.205px\] {
  width: 668.205px;
}

.w-full {
  width: 100%;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

.w-px {
  width: 1px;
}

.w-screen {
  width: 100vw;
}

.min-w-0 {
  min-width: 0px;
}

.min-w-\[260px\] {
  min-width: 260px;
}

.min-w-full {
  min-width: 100%;
}

.max-w-\[1400px\] {
  max-width: 1400px;
}

.max-w-\[1440px\] {
  max-width: 1440px;
}

.max-w-\[250px\] {
  max-width: 250px;
}

.max-w-\[332px\] {
  max-width: 332px;
}

.max-w-\[600px\] {
  max-width: 600px;
}

.max-w-\[670px\] {
  max-width: 670px;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-none {
  max-width: none;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-none {
  flex: none;
}

.flex-shrink {
  flex-shrink: 1;
}

.shrink-0 {
  flex-shrink: 0;
}

.border-collapse {
  border-collapse: collapse;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[14px\] {
  --tw-translate-y: 14px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-\[210px_440px_minmax\(0\2c 1fr\)_210px_max-content\] {
  grid-template-columns: 210px 440px minmax(0,1fr) 210px max-content;
}

.grid-cols-\[356px_1fr_auto\] {
  grid-template-columns: 356px 1fr auto;
}

.grid-cols-\[556\.205px_556\.205px\] {
  grid-template-columns: 556.205px 556.205px;
}

.grid-cols-\[668\.205px_433px\] {
  grid-template-columns: 668.205px 433px;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-\[0px\] {
  gap: 0px;
}

.gap-\[10px\] {
  gap: 10px;
}

.gap-\[12px\] {
  gap: 12px;
}

.gap-\[16px\] {
  gap: 16px;
}

.gap-\[20px\] {
  gap: 20px;
}

.gap-\[44px\] {
  gap: 44px;
}

.gap-\[8px\] {
  gap: 8px;
}

.gap-x-\[90px\] {
  -moz-column-gap: 90px;
       column-gap: 90px;
}

.space-y-0 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}

.space-y-\[28px\] > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(28px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(28px * var(--tw-space-y-reverse));
}

.space-y-\[4px\] > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4px * var(--tw-space-y-reverse));
}

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

.justify-self-center {
  justify-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-\[10px\] {
  border-radius: 10px;
}

.rounded-\[12px\] {
  border-radius: 12px;
}

.rounded-\[14px\] {
  border-radius: 14px;
}

.rounded-\[15\.902px\] {
  border-radius: 15.902px;
}

.rounded-\[16px\] {
  border-radius: 16px;
}

.rounded-\[176px\] {
  border-radius: 176px;
}

.rounded-\[20px\] {
  border-radius: 20px;
}

.rounded-\[4px\] {
  border-radius: 4px;
}

.rounded-\[6px\] {
  border-radius: 6px;
}

.rounded-\[74px\] {
  border-radius: 74px;
}

.rounded-\[8\.936px\] {
  border-radius: 8.936px;
}

.rounded-\[8px\] {
  border-radius: 8px;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border-x {
  border-left-width: 1px;
  border-right-width: 1px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-\[\#00402a\] {
  --tw-border-opacity: 1;
  border-color: rgb(0 64 42 / var(--tw-border-opacity, 1));
}

.border-\[\#00402a\]\/10 {
  border-color: rgb(0 64 42 / 0.1);
}

.border-\[\#00402a\]\/15 {
  border-color: rgb(0 64 42 / 0.15);
}

.border-\[\#00402a\]\/20 {
  border-color: rgb(0 64 42 / 0.2);
}

.border-\[\#00402a\]\/5 {
  border-color: rgb(0 64 42 / 0.05);
}

.border-\[\#20b85a\]\/40 {
  border-color: rgb(32 184 90 / 0.4);
}

.border-\[\#20b85a\]\/55 {
  border-color: rgb(32 184 90 / 0.55);
}

.border-\[\#ff4a4a\]\/60 {
  border-color: rgb(255 74 74 / 0.6);
}

.border-\[\#ff9c1a\]\/60 {
  border-color: rgb(255 156 26 / 0.6);
}

.border-\[\#ffa61c\] {
  --tw-border-opacity: 1;
  border-color: rgb(255 166 28 / var(--tw-border-opacity, 1));
}

.border-\[\#ffa61c\]\/50 {
  border-color: rgb(255 166 28 / 0.5);
}

.border-\[rgba\(0\2c 63\2c 40\2c 0\.12\)\] {
  border-color: rgba(0,63,40,0.12);
}

.border-\[rgba\(13\2c 169\2c 255\2c 0\.45\)\] {
  border-color: rgba(13,169,255,0.45);
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-transparent {
  border-color: transparent;
}

.bg-\[\#003020\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 48 32 / var(--tw-bg-opacity, 1));
}

.bg-\[\#003f28\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 63 40 / var(--tw-bg-opacity, 1));
}

.bg-\[\#00402a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(0 64 42 / var(--tw-bg-opacity, 1));
}

.bg-\[\#00402a\]\/10 {
  background-color: rgb(0 64 42 / 0.1);
}

.bg-\[\#00402a\]\/5 {
  background-color: rgb(0 64 42 / 0.05);
}

.bg-\[\#0AB2FE\] {
  --tw-bg-opacity: 1;
  background-color: rgb(10 178 254 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0c6d34\] {
  --tw-bg-opacity: 1;
  background-color: rgb(12 109 52 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0d9488\] {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0d9488\]\/15 {
  background-color: rgb(13 148 136 / 0.15);
}

.bg-\[\#20b85a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(32 184 90 / var(--tw-bg-opacity, 1));
}

.bg-\[\#20b85a\]\/10 {
  background-color: rgb(32 184 90 / 0.1);
}

.bg-\[\#20b85a\]\/20 {
  background-color: rgb(32 184 90 / 0.2);
}

.bg-\[\#27bf63\] {
  --tw-bg-opacity: 1;
  background-color: rgb(39 191 99 / var(--tw-bg-opacity, 1));
}

.bg-\[\#e8f8ef\] {
  --tw-bg-opacity: 1;
  background-color: rgb(232 248 239 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ebd9ca\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 217 202 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f4f7f6\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 247 246 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f4f7f6\]\/50 {
  background-color: rgb(244 247 246 / 0.5);
}

.bg-\[\#f9fbfb\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 251 251 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ff4a4a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 74 74 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ff9c1a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 156 26 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ffa61c\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 166 28 / var(--tw-bg-opacity, 1));
}

.bg-\[\#ffa61c\]\/10 {
  background-color: rgb(255 166 28 / 0.1);
}

.bg-\[\#ffa61c\]\/20 {
  background-color: rgb(255 166 28 / 0.2);
}

.bg-\[\#ffebe5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 235 229 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff2d9\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 242 217 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fff5ec\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 245 236 / var(--tw-bg-opacity, 1));
}

.bg-\[rgba\(13\2c 169\2c 255\2c 0\.14\)\] {
  background-color: rgba(13,169,255,0.14);
}

.bg-\[rgba\(217\2c 217\2c 217\2c 0\.9\)\] {
  background-color: rgba(217,217,217,0.9);
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/60 {
  background-color: rgb(255 255 255 / 0.6);
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.p-0 {
  padding: 0px;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-\[40px\] {
  padding: 40px;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}

.px-\[16px\] {
  padding-left: 16px;
  padding-right: 16px;
}

.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}

.px-\[40px\] {
  padding-left: 40px;
  padding-right: 40px;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[14px\] {
  padding-top: 14px;
  padding-bottom: 14px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-0\.5 {
  padding-bottom: 0.125rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-\[199px\] {
  padding-bottom: 199px;
}

.pb-\[265px\] {
  padding-bottom: 265px;
}

.pb-\[40px\] {
  padding-bottom: 40px;
}

.pb-\[6px\] {
  padding-bottom: 6px;
}

.pr-\[20px\] {
  padding-right: 20px;
}

.pr-\[64px\] {
  padding-right: 64px;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-\[140px\] {
  padding-top: 140px;
}

.pt-\[15px\] {
  padding-top: 15px;
}

.pt-\[160px\] {
  padding-top: 160px;
}

.pt-\[40px\] {
  padding-top: 40px;
}

.pt-\[58px\] {
  padding-top: 58px;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.align-top {
  vertical-align: top;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.font-sans {
  font-family: "IberPangeaVAR", "IberPangea VAR", sans-serif;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-\[22px\] {
  font-size: 22px;
}

.text-\[24px\] {
  font-size: 24px;
}

.text-\[28px\] {
  font-size: 28px;
}

.text-\[32px\] {
  font-size: 32px;
}

.text-\[46px\] {
  font-size: 46px;
}

.text-\[48px\] {
  font-size: 48px;
}

.text-\[64px\] {
  font-size: 64px;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.leading-\[0\.9\] {
  line-height: 0.9;
}

.leading-\[1\.2\] {
  line-height: 1.2;
}

.leading-\[1\.35\] {
  line-height: 1.35;
}

.leading-\[1\] {
  line-height: 1;
}

.leading-\[26px\] {
  line-height: 26px;
}

.leading-\[48px\] {
  line-height: 48px;
}

.leading-\[normal\] {
  line-height: normal;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.text-\[\#003F28\] {
  --tw-text-opacity: 1;
  color: rgb(0 63 40 / var(--tw-text-opacity, 1));
}

.text-\[\#003F2A\] {
  --tw-text-opacity: 1;
  color: rgb(0 63 42 / var(--tw-text-opacity, 1));
}

.text-\[\#003f28\] {
  --tw-text-opacity: 1;
  color: rgb(0 63 40 / var(--tw-text-opacity, 1));
}

.text-\[\#003f2a\] {
  --tw-text-opacity: 1;
  color: rgb(0 63 42 / var(--tw-text-opacity, 1));
}

.text-\[\#00402a\] {
  --tw-text-opacity: 1;
  color: rgb(0 64 42 / var(--tw-text-opacity, 1));
}

.text-\[\#00402a\]\/60 {
  color: rgb(0 64 42 / 0.6);
}

.text-\[\#00402a\]\/80 {
  color: rgb(0 64 42 / 0.8);
}

.text-\[\#00402a\]\/90 {
  color: rgb(0 64 42 / 0.9);
}

.text-\[\#0c6d34\] {
  --tw-text-opacity: 1;
  color: rgb(12 109 52 / var(--tw-text-opacity, 1));
}

.text-\[\#7f0000\] {
  --tw-text-opacity: 1;
  color: rgb(127 0 0 / var(--tw-text-opacity, 1));
}

.text-\[\#7f4a00\] {
  --tw-text-opacity: 1;
  color: rgb(127 74 0 / var(--tw-text-opacity, 1));
}

.text-\[\#8b5b00\] {
  --tw-text-opacity: 1;
  color: rgb(139 91 0 / var(--tw-text-opacity, 1));
}

.text-\[\#ffa61c\] {
  --tw-text-opacity: 1;
  color: rgb(255 166 28 / var(--tw-text-opacity, 1));
}

.text-\[\#fff7ef\] {
  --tw-text-opacity: 1;
  color: rgb(255 247 239 / var(--tw-text-opacity, 1));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-inherit {
  color: inherit;
}

.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.underline {
  text-decoration-line: underline;
}

.no-underline {
  text-decoration-line: none;
}

.underline-offset-\[2px\] {
  text-underline-offset: 2px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-90 {
  opacity: 0.9;
}

.shadow-\[0_2px_8px_rgba\(0\2c 63\2c 40\2c 0\.05\)\] {
  --tw-shadow: 0 2px 8px rgba(0,63,40,0.05);
  --tw-shadow-colored: 0 2px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_4px_14px_rgba\(0\2c 63\2c 40\2c 0\.08\)\] {
  --tw-shadow: 0 4px 14px rgba(0,63,40,0.08);
  --tw-shadow-colored: 0 4px 14px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_4px_24px_rgba\(0\2c 63\2c 40\2c 0\.04\)\] {
  --tw-shadow: 0 4px 24px rgba(0,63,40,0.04);
  --tw-shadow-colored: 0 4px 24px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[inset_0_4px_10px_rgba\(0\2c 0\2c 0\2c 0\.02\)\] {
  --tw-shadow: inset 0 4px 10px rgba(0,0,0,0.02);
  --tw-shadow-colored: inset 0 4px 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.\[grid-column\:1\] {
  grid-column: 1;
}

.\[grid-column\:3\] {
  grid-column: 3;
}

.\[grid-column\:5\] {
  grid-column: 5;
}

.placeholder\:text-\[\#003f28\]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(0 63 40 / var(--tw-text-opacity, 1));
}

.placeholder\:text-\[\#003f28\]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(0 63 40 / var(--tw-text-opacity, 1));
}

.placeholder\:opacity-100::-moz-placeholder {
  opacity: 1;
}

.placeholder\:opacity-100::placeholder {
  opacity: 1;
}

.placeholder\:opacity-60::-moz-placeholder {
  opacity: 0.6;
}

.placeholder\:opacity-60::placeholder {
  opacity: 0.6;
}

.checked\:border-\[\#20b85a\]:checked {
  --tw-border-opacity: 1;
  border-color: rgb(32 184 90 / var(--tw-border-opacity, 1));
}

.checked\:bg-\[\#20b85a\]:checked {
  --tw-bg-opacity: 1;
  background-color: rgb(32 184 90 / var(--tw-bg-opacity, 1));
}

.hover\:scale-\[1\.02\]:hover {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:bg-\[\#00402a\]\/5:hover {
  background-color: rgb(0 64 42 / 0.05);
}

.hover\:bg-\[\#20b85a\]\/20:hover {
  background-color: rgb(32 184 90 / 0.2);
}

.hover\:bg-\[\#ffa61c\]\/20:hover {
  background-color: rgb(255 166 28 / 0.2);
}

.hover\:bg-\[\#ffb033\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 176 51 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.hover\:text-\[\#00402a\]:hover {
  --tw-text-opacity: 1;
  color: rgb(0 64 42 / var(--tw-text-opacity, 1));
}

.hover\:text-\[\#ffa61c\]:hover {
  --tw-text-opacity: 1;
  color: rgb(255 166 28 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-\[\#ffa61c\]\/20:hover {
  --tw-shadow-color: rgb(255 166 28 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.focus\:absolute:focus {
  position: absolute;
}

.focus\:z-\[99999\]:focus {
  z-index: 99999;
}

.focus\:rounded:focus {
  border-radius: 0.25rem;
}

.focus\:border-\[\#ffa61c\]:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 166 28 / var(--tw-border-opacity, 1));
}

.focus\:bg-\[\#003f28\]:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(0 63 40 / var(--tw-bg-opacity, 1));
}

.focus\:px-4:focus {
  padding-left: 1rem;
  padding-right: 1rem;
}

.focus\:py-2:focus {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.focus\:text-white:focus {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.focus\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-\[\#ffa61c\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 166 28 / var(--tw-ring-opacity, 1));
}

.focus\:ring-\[\#ffa61c\]\/30:focus {
  --tw-ring-color: rgb(255 166 28 / 0.3);
}

.focus\:ring-\[\#ffa61c\]\/50:focus {
  --tw-ring-color: rgb(255 166 28 / 0.5);
}

.active\:scale-\[0\.98\]:active {
  --tw-scale-x: 0.98;
  --tw-scale-y: 0.98;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.peer:checked ~ .peer-checked\:opacity-100 {
  opacity: 1;
}

@media (max-width: 900px) {
  .max-\[900px\]\:static {
    position: static;
  }

  .max-\[900px\]\:relative {
    position: relative;
  }

  .max-\[900px\]\:bottom-\[20px\] {
    bottom: 20px;
  }

  .max-\[900px\]\:bottom-\[86px\] {
    bottom: 86px;
  }

  .max-\[900px\]\:bottom-auto {
    bottom: auto;
  }

  .max-\[900px\]\:left-\[20px\] {
    left: 20px;
  }

  .max-\[900px\]\:left-auto {
    left: auto;
  }

  .max-\[900px\]\:right-\[20px\] {
    right: 20px;
  }

  .max-\[900px\]\:right-auto {
    right: auto;
  }

  .max-\[900px\]\:top-\[100px\] {
    top: 100px;
  }

  .max-\[900px\]\:top-\[20px\] {
    top: 20px;
  }

  .max-\[900px\]\:top-\[250px\] {
    top: 250px;
  }

  .max-\[900px\]\:top-\[260px\] {
    top: 260px;
  }

  .max-\[900px\]\:top-\[400px\] {
    top: 400px;
  }

  .max-\[900px\]\:top-\[40px\] {
    top: 40px;
  }

  .max-\[900px\]\:top-auto {
    top: auto;
  }

  .max-\[900px\]\:order-2 {
    order: 2;
  }

  .max-\[900px\]\:order-3 {
    order: 3;
  }

  .max-\[900px\]\:-mx-\[12px\] {
    margin-left: -12px;
    margin-right: -12px;
  }

  .max-\[900px\]\:mb-\[80px\] {
    margin-bottom: 80px;
  }

  .max-\[900px\]\:ml-\[-20px\] {
    margin-left: -20px;
  }

  .max-\[900px\]\:mr-\[-20px\] {
    margin-right: -20px;
  }

  .max-\[900px\]\:mt-0 {
    margin-top: 0px;
  }

  .max-\[900px\]\:mt-\[100px\] {
    margin-top: 100px;
  }

  .max-\[900px\]\:mt-\[28px\] {
    margin-top: 28px;
  }

  .max-\[900px\]\:mt-\[32px\] {
    margin-top: 32px;
  }

  .max-\[900px\]\:mt-\[40px\] {
    margin-top: 40px;
  }

  .max-\[900px\]\:mt-\[60px\] {
    margin-top: 60px;
  }

  .max-\[900px\]\:flex {
    display: flex;
  }

  .max-\[900px\]\:hidden {
    display: none;
  }

  .max-\[900px\]\:h-\[120px\] {
    height: 120px;
  }

  .max-\[900px\]\:h-\[220px\] {
    height: 220px;
  }

  .max-\[900px\]\:h-\[28px\] {
    height: 28px;
  }

  .max-\[900px\]\:h-\[480px\] {
    height: 480px;
  }

  .max-\[900px\]\:h-\[520px\] {
    height: 520px;
  }

  .max-\[900px\]\:h-\[636\.306px\] {
    height: 636.306px;
  }

  .max-\[900px\]\:h-auto {
    height: auto;
  }

  .max-\[900px\]\:w-\[100\%\] {
    width: 100%;
  }

  .max-\[900px\]\:w-\[132px\] {
    width: 132px;
  }

  .max-\[900px\]\:w-\[50\%\] {
    width: 50%;
  }

  .max-\[900px\]\:w-\[calc\(100\%\+40px\)\] {
    width: calc(100% + 40px);
  }

  .max-\[900px\]\:w-\[calc\(100\%-40px\)\] {
    width: calc(100% - 40px);
  }

  .max-\[900px\]\:w-\[calc\(100\%-64px\)\] {
    width: calc(100% - 64px);
  }

  .max-\[900px\]\:w-\[calc\(100\%-95px\)\] {
    width: calc(100% - 95px);
  }

  .max-\[900px\]\:w-full {
    width: 100%;
  }

  .max-\[900px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .max-\[900px\]\:flex-wrap {
    flex-wrap: wrap;
  }

  .max-\[900px\]\:gap-y-\[24px\] {
    row-gap: 24px;
  }

  .max-\[900px\]\:gap-y-\[8px\] {
    row-gap: 8px;
  }

  .max-\[900px\]\:justify-self-start {
    justify-self: start;
  }

  .max-\[900px\]\:p-\[20px\] {
    padding: 20px;
  }

  .max-\[900px\]\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-\[900px\]\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .max-\[900px\]\:px-\[12px\] {
    padding-left: 12px;
    padding-right: 12px;
  }

  .max-\[900px\]\:px-\[20px\] {
    padding-left: 20px;
    padding-right: 20px;
  }

  .max-\[900px\]\:py-\[16px\] {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .max-\[900px\]\:pb-0 {
    padding-bottom: 0px;
  }

  .max-\[900px\]\:pt-0 {
    padding-top: 0px;
  }

  .max-\[900px\]\:pt-\[36px\] {
    padding-top: 36px;
  }

  .max-\[900px\]\:text-\[20px\] {
    font-size: 20px;
  }

  .max-\[900px\]\:text-\[24px\] {
    font-size: 24px;
  }

  .max-\[900px\]\:text-\[40px\] {
    font-size: 40px;
  }

  .max-\[900px\]\:leading-\[40px\] {
    line-height: 40px;
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

@media (min-width: 901px) {
  .min-\[901px\]\:mt-\[41px\] {
    margin-top: 41px;
  }

  .min-\[901px\]\:mt-\[46px\] {
    margin-top: 46px;
  }

  .min-\[901px\]\:h-\[56px\] {
    height: 56px;
  }

  .min-\[901px\]\:w-\[56px\] {
    width: 56px;
  }

  .min-\[901px\]\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .min-\[901px\]\:text-\[64px\] {
    font-size: 64px;
  }
}

@media (min-width: 1024px) {
  .lg\:sticky {
    position: sticky;
  }

  .lg\:top-24 {
    top: 6rem;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:w-\[380px\] {
    width: 380px;
  }

  .lg\:grid-cols-\[1fr_280px\] {
    grid-template-columns: 1fr 280px;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
