/* Hero Paragraph Layout */
.paragraph--hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 4rem 1rem;
}

.paragraph--hero .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.paragraph--hero.hero-has-bg {
  background-color: #004080;
  color: #fff;
}

/* Side-by-side layout */
.paragraph--hero .hero-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

/* Text block */
.paragraph--hero .hero-text {
  flex: 1;
  text-align: left;
}

.paragraph--hero .hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.paragraph--hero .hero-subhead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Image block */
.paragraph--hero .hero-image img {
  width: 100%;
  height: auto;
  max-width: 450px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* CTA buttons */
.paragraph--hero .hero-buttons a {
  display: inline-block;
  background: #fff;
  color: #004080;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 0.4rem;
  text-decoration: none;
}

.paragraph--hero .hero-buttons a:hover {
  background: #e6e6e6;
  text-decoration: none;
}

/* Mobile layout */
@media (max-width: 768px) {
  .paragraph--hero .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .paragraph--hero .hero-text {
    text-align: center;
  }
}
