/* ============================================
   SECTION: HERO / IMAGES BLOCK
   ============================================ */
.hero-section {
  padding-top: 72px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  overflow: hidden;
}

/* Account for WordPress admin bar when logged in */
.admin-bar .hero-section {
  padding-top: 104px;
  /* 72px header + 32px admin bar */
}

@media screen and (max-width: 782px) {
  .admin-bar .hero-section {
    padding-top: 118px;
    /* 72px header + 46px admin bar on mobile */
  }
}

.hero-images-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-images-grid .hero-img {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.hero-images-grid .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-images-grid .hero-img:hover img {
  transform: scale(1.05);
}

.hero-images-grid .hero-img:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.hero-title-block {
  text-align: center;
  padding: var(--section-padding);
}

.hero-logo {
  display: block;
  margin: 0 auto 1.25rem auto;
  text-align: center;
}

.hero-logo__img {
  display: block;
  max-width: min(1000px, 100%);
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto 0.25rem auto;
}

.hero-logo__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(1000px, 100%);
  height: 400px;
  max-width: 100%;
  border: 2px dashed var(--gray-400);
  color: var(--gray-400);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gray-50);
  margin: 0 auto 0.25rem auto;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: 0.85rem;
  /* 13.6px — converted from 13.5px to match rem convention */
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  max-width: min(800px, 100%);
  text-align: center;
}

.hero-title-block h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.hero-title-block h1 span {
  background: linear-gradient(135deg, var(--green-900), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-block .hero-date {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.5vw, 1.625rem);
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 auto 1rem auto;
  text-align: center;
}

.hero-title-block p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo .section-desc {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}