/* --- Optimized Hero Section Styles --- */
.hero {
  background: var(--hr-bg, #fff);
  color: var(--hr-primary, #091235);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  border-radius: 0 0 32px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--hr-primary, #091235);
  margin-bottom: 18px;
  text-align: center;
}
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--hr-primary, #091235);
  margin-bottom: 32px;
  text-align: center;
}
.hero-video-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 10px;
  margin-bottom: 32px;
  background: var(--hr-bg, #fff);
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(34,64,142,0.08);
  overflow: hidden;
}
.hero-video {
  flex: 1.2;
  height: 100%;
  object-fit: cover;
  background: #e6edfa;
}
.hero-overlay {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  background: transparent;
  gap: 18px;
}
.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 0 0;
  flex-wrap: wrap;
}
.hero-action-card, .browse-featured-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: #091235;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(35, 64, 142, 0.10);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  margin: 0;
  border: none;
  cursor: pointer;
}
.hero-action-card:hover, .browse-featured-cta:hover {
  background: #2d53b4;
  color: #fff;
  box-shadow: 0 4px 24px rgba(45, 83, 180, 0.14);
}
.hero-action-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  gap: 10px;
}
.hero-action-link span {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
}
.hero-action-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  fill: #fff !important;
  color: #fff !important;
  filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-video-section {
    flex-direction: column;
    height: auto;
  }
  .hero-video {
    min-height: 220px;
    max-height: 260px;
  }
  .hero-overlay {
    padding: 32px 12px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-action-card, .browse-featured-cta {
    width: 100px;
    height: 100px;
    font-size: 0.98rem;
  }
  .hero-action-icon {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 32px 8px;
    border-radius: 0 0 18px 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-action-card, .browse-featured-cta {
    width: 90vw;
    max-width: 340px;
    height: 56px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 18px;
    font-size: 1rem;
  }
  .hero-action-link {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
  }
  .hero-action-icon {
    margin-bottom: 0;
    margin-right: 12px;
  }
}
