.home-hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: end;
  padding: 96px 0 76px;
  background-image:
    linear-gradient(90deg, rgba(18, 63, 56, 0.94), rgba(18, 63, 56, 0.6) 52%, rgba(196, 39, 47, 0.18)),
    url("../static/assets/hero_homepage.jpg"),
    url("https://images.unsplash.com/photo-1529472119196-cb724127a98e?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mission-panel {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.mission-panel .card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.mission-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--red);
  font-weight: 950;
}

.field-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.field-photo {
  min-height: 520px;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(21, 32, 29, 0.08), rgba(21, 32, 29, 0.28)),
    url("../static/assets/gallery_terepgyakorlat.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.event-notice {
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-weight: 850;
}

@media (max-width: 880px) {
  .home-hero {
    min-height: 720px;
    background-position: 56% center;
  }

  .field-band,
  .mission-panel .card {
    grid-template-columns: 1fr;
  }

  .field-photo {
    min-height: 320px;
  }
}
