/* Hero Video Section Styles */
.hero-video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 420px;
  background: #fff;
  padding-top: 32px;
  padding-bottom: 32px;
  box-sizing: border-box;
}
.hero-video-section video.hero-video {
  width: 75vw;
  max-width: 1200px;
  min-width: 260px;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.7);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
  margin-bottom: 0;
  display: block;
}
.hero-overlay {
  position: static;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: unset;
  padding: 0;
}
.hero-content {
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 32px;
}
.hero-title {
  font-size: 2.5rem;
  /* font-family removed, global font applies */
  font-weight: 700;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: 1.25rem;
  /* font-family removed, global font applies */
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
}
.hero-action-card {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.hero-action-card:hover {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 4px 18px 0 rgba(0,0,0,0.12);
}
/* Action link and icon use --hr-primary color */
.hero-action-link {
  color: var(--hr-primary, #0b1536);
  text-decoration: none;
  font-size: 1.08rem;
  /* font-family removed, global font applies */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-action-link span {
  color: var(--hr-primary, #0b1536);
  font-weight: 600;
}
.hero-action-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  filter: invert(17%) sepia(90%) saturate(7500%) hue-rotate(210deg) brightness(90%) contrast(110%);
}
@media (max-width: 900px) {
  .hero-video-section video.hero-video {
    width: 95vw;
    height: 220px;
  }
  .hero-content {
    margin-top: 18px;
  }
}
@media (max-width: 700px) {
  .hero-video-section {
    min-height: 220px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .hero-video-section video.hero-video {
    min-width: 0;
    height: 160px;
    border-radius: 14px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    width: 100%;
  }
  .hero-action-card {
    width: 92vw;
    max-width: 340px;
    min-width: 0;
    padding: 12px 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
  }
  .hero-action-link {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
  }
  .hero-action-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 0;
  }
}
