/* ======================================
   HERO WRAPPER
====================================== */
.main__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

/* ======================================
   BACKGROUND
====================================== */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ======================================
   CONTENT
====================================== */
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 16px;
}

/* ======================================
   TITLE
====================================== */
.hero__content > .hero__title {
  max-width: 780px;
  padding-top: 25px;
}

.hero__content > .hero__title > div > * {
  color: #fff;
  font-family: var(--font--poppins);
  font-size: clamp(22px, 5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}

/* ======================================
   BLOCK
====================================== */
.hero__block {
  padding: 20px;
  background-color: var(--color-tertiary--dark);
  border-radius: 10px;
  max-width: 550px;
  width: 100%;
  box-sizing: border-box;
}

.hero__block > .hero__block-text {
  color: #fff;
  font-family: var(--font--poppins);
  font-size: clamp(15px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ======================================
   CTA
====================================== */
.hero__block > .hero__block-cta_wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__block > .hero__block-cta_wrapper > div > * {
  border-radius: 32px;
  padding: 12px 24px;
  width: fit-content;
  border: 3px solid var(--Secondary, #E30B17);
  background-color: transparent;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.hero__block > .hero__block-cta_wrapper > div > * {
  border-radius: 32px;
  padding: 12px 24px;
  width: fit-content;
  border: 3px solid var(--Secondary, #E30B17);
  background-color: transparent;
  box-sizing: border-box;

  transition: background-color 0.3s ease;
}

.hero__block > .hero__block-cta_wrapper > div > * > a {
  color: #fff;
  font-family: var(--font--poppins, Poppins);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;

  transition: color 0.3s ease;
}

.hero__block > .hero__block-cta_wrapper > div > *:hover {
  background-color: var(--color-secondary--1);
}

.hero__block > .hero__block-cta_wrapper > div > *:hover > a {
  color: var(--color-white) !important;
}

/* ======================================
   TABLET (768px+)
====================================== */
@media screen and (min-width: 768px) {
  .main__hero {
    min-height: 580px;
  }

  .hero__content {
    padding: 60px 40px;
    gap: 32px;
  }

  .hero__block {
    padding: 24px;
  }

  .hero__block > .hero__block-text {
    margin-bottom: 20px;
  }

  .hero__block > .hero__block-cta_wrapper > div > * > a {
    font-size: 16px;
  }
}

/* ======================================
   DESKTOP (999px+)
====================================== */
@media screen and (min-width: 999px) {
  .main__hero {
    min-height: 740px;
    padding-top: 150px;
  }

  .hero__content {
    padding: 60px 80px;
  }

  .hero__content > .hero__title {
    padding-top: 0;
  }

  .hero__block {
    padding: 32px;
  }

  .hero__block > .hero__block-cta_wrapper > div {
    flex-direction: row;
    gap: 16px;
  }

  .hero__block--internal > .hero__content > .hero__block {
    max-width: 795px;
    margin-left: 25%;
  }

  .hero__block--internal > .hero__content > .hero__block > * > * {
    font-size: 18px;
  }
}


/* ======================================
   UTILS
====================================== */
.block-page-title-block {
  display: none !important;
}
