/* Short Hero Component Styles */
.short-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.short-hero a {
  color: white !important;
  text-decoration: underline !important;
}

.short-hero .hero-background {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
}

.short-hero .container {
  position: absolute !important;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

/* Dark overlay for better text readability */
.short-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.short-hero .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
}

.short-hero .hero-content {
  max-width: 600px;
}

.short-hero .hero-heading {
  font-size: 68px;
  font-weight: 550;
  font-family: var(--font-family-title);
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 72px;
}

.short-hero .hero-heading-gold {
  background: var(--gradient-on-brand-gold, linear-gradient(315deg, #DBB172 20.73%, #F5E0BA 73.39%, #EBCC96 87.72%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.short-hero .hero-description {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media screen and (max-width: 1040px) {
  .short-hero .hero-heading {
    font-size: 54px;
    line-height: 60px;
    margin: 0 0 20px 0;
  }
}

@media (max-width: 640px) {
  .short-hero .hero-heading {
    font-size: 46px;
    line-height: 52px;
  }
}