/* ============================================================
   SECTION HERO  (mobile-first)
============================================================ */
.section-hero {
  padding-top: 20px; /* 60px header + 20px */
  padding-bottom: 0;
  background-color: #efece9;
}

.circuit-hero {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.circuit-hero__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-image {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Sidebar mobile wrap (visibility via .mobile-only class) */
.sidebar-mobile-wrap {
  width: 100%;
  background-color: #efece9;
  padding: 30px 0;
}

/* ============================================================
   HERO  – Desktop
============================================================ */
@media (min-width: 769px) {
  .section-hero {
    padding-top: 40px; /* 100px header + 55px */
    padding-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .circuit-hero {
    flex-direction: column;
    gap: 46px;
  }

  .circuit-hero__left {
    width: 100%;
    gap: 46px;
  }

  .hero-image {
    width: 100%;
    height: 420px;
  }
}
