/* =====================================================================
   Atletico Arten — Phase 3B homepage hero (scoped)
   ===================================================================== */

:root {
  --aa-hero-teal: #1d3533;
  --aa-hero-orange: #f05d19;
  --aa-hero-muted: #8e9a99;
  --aa-hero-maxw: 1440px;
}

.aa-home-hero {
  position: relative;
}

.aa-home-hero .owl-dots,
.aa-home-hero .owl-nav {
  display: none !important;
}

.aa-hero {
  position: relative;
  background: var(--aa-hero-teal);
  color: #fff;
  overflow: hidden;
}

.aa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--aa-hero-img);
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .aa-hero::before {
    background-image: var(--aa-hero-img-mobile, var(--aa-hero-img));
  }
}

.aa-hero[data-aa-hero-no-image="1"]::before {
  display: none;
}

.aa-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 53, 51, 0.42), rgba(29, 53, 51, 0.66));
}

.aa-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 28px;
  padding-bottom: 28px;
  min-height: 288px;
  max-width: var(--aa-hero-maxw);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .aa-hero__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.aa-hero__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 500;
}

.aa-hero__facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}

.aa-fact__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.aa-fact__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.aa-fact__icon--chip {
  background: #e1e4e2;
  color: var(--aa-hero-teal);
  border-radius: 8px;
}

.aa-fact__icon--chip svg {
  width: 15px;
  height: 15px;
}

.aa-hero__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}

.aa-hero__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.aa-hero__title {
  margin: 0;
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  font-weight: 600;
  max-width: 640px;
}

.aa-hero__sub {
  margin: 14px 0 0;
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  max-width: 640px;
}

/* HTML from CMS (p, etc.) must match plain-text look */
.aa-hero__sub :where(p, div, span, a, li, ul, ol, h1, h2, h3, h4, h5, h6, strong, b, em, i) {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
}

.aa-hero__sub p,
.aa-hero__sub div {
  margin: 0 0 0.4em;
}

.aa-hero__sub p:last-child,
.aa-hero__sub div:last-child {
  margin-bottom: 0;
}

.aa-hero__sub a {
  text-decoration: underline;
  color: inherit;
}

.aa-price {
  flex: 0 0 auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  color: var(--aa-hero-teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  text-align: center;
  padding: 8px;
  box-sizing: border-box;
}

.aa-price__label {
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}

.aa-price__value {
  font-family: "Montserrat Alternates", system-ui, sans-serif;
  font-weight: 700;
  color: var(--aa-hero-orange);
  font-size: 26px;
  line-height: 1.1;
  margin-top: 4px;
  word-break: break-word;
}

.aa-hero__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.aa-hero__btn {
  width: 100%;
  max-width: 300px;
}

.aa-hero__arrows {
  display: none;
  gap: 16px;
  flex: 0 0 auto;
}

.aa-home-hero .aa-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  padding: 0;
}

.aa-home-hero .aa-arrow:hover,
.aa-home-hero .aa-arrow:focus {
  background: rgba(255, 255, 255, 0.3);
  outline: none;
}

.aa-home-hero .aa-arrow svg {
  width: 22px;
  height: 22px;
}

.aa-home-hero--single .aa-hero__arrows {
  display: none !important;
}

@media (min-width: 768px) {
  .aa-hero__inner {
    gap: 28px;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 420px;
  }
  .aa-hero__facts {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .aa-hero__facts li {
    font-size: 20px;
  }
  .aa-hero__title {
    font-size: 44px;
  }
  .aa-hero__sub {
    font-size: 20px;
  }
  .aa-price {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 992px) {
  .aa-hero__inner {
    min-height: 490px;
    gap: 36px;
  }
  .aa-hero__facts li {
    font-size: 24px;
    line-height: 36px;
  }
  .aa-fact__icon {
    width: 30px;
    height: 30px;
  }
  .aa-fact__icon svg {
    width: 24px;
    height: 24px;
  }
  .aa-fact__icon--chip svg {
    width: 18px;
    height: 18px;
  }
  .aa-hero__title {
    font-size: 54px;
    line-height: 54px;
  }
  .aa-hero__sub {
    font-size: 24px;
    line-height: 32px;
  }
  .aa-price {
    width: 147px;
    height: 147px;
  }
  .aa-hero__btn {
    width: 300px;
  }
  .aa-home-hero:not(.aa-home-hero--single) .aa-hero__arrows {
    display: flex;
  }
}
