/* Featured top - allow full-width background to extend */
.featured-top {
  overflow-x: visible;
}

.featured-top .featured-top__inner {
  overflow-x: visible;
  background: transparent;
  width: 100%;
}

/* Hero section - full-width background via pseudo-element, content stays in place */
.hero-with-background {
  position: relative;
  min-height: 80vh;
  min-height: max(80vh, 700px);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

/* Full-width background layer (behind content) */
.hero-with-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background-image: url('/_flysystem/fedora/2026-03/horizontal-shot-of-two-persons-in-traditional-peru-2026-01-07-07-37-13-utc-edited.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Hero content: left-aligned, vertically centered */
.hero-with-background .hero-content {
  position: relative;
  max-width: 600px;
}

.hero-with-background .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-with-background .hero-content .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-with-background .hero-content .hero-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.hero-with-background .hero-content .hero-btn:hover {
  opacity: 0.9;
}

/* Quick Links block - solid background so hero image doesn't show through */
.quick-links-featured-block {
  background: #fff;
}