/* Hero Block Styles */
.heroBlock {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.heroBlock_ImageWrapper {
  /* no longer used; kept for backward compatibility */
  display: none;
}

.heroBlock_Backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

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

.heroBlock_Container {
  max-width: 1280px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.heroBlock_Grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 450px 0 150px 0;
}

/* Subtle dark overlay for readability */
.heroBlock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.heroBlock_Title {
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 70.4px */
  letter-spacing: -0.64px;
  margin: 0;
}

.heroBlock_Text {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}

.heroBlock_Text p {
  margin: 0;
}

.heroBlock_Buttons {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.heroBlock_Button {
  padding: 10px 24px;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 27px */
  text-decoration: none;
}

.heroBlock_Button--primary {
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(
    0deg,
    var(--Color-Persian-Red, #c53c29) 0%,
    var(--Color-Persian-Red, #c53c29) 100%
  );
  color: #fff;
}

.heroBlock_Button--secondary {
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.heroBlock_Button--primary:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, #8a291b 0%, #8a291b 100%);
}
.heroBlock_Button--secondary:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 1);
}

/* Responsive */
@media (max-width: 1024px) {
  .heroBlock_Grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .heroBlock_Container {
    margin-top: 24px;
    padding: 0 16px;
  }

  .heroBlock_Grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 50px 0;
  }

  .heroBlock_Title {
    font-size: 28px;
  }
}
