/* ==========================================================
   Bellemann - 3er Navigation Styles
   Three-column navigation grid with responsive heading
========================================================== */

.bellemann-3nav {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.bellemann-3nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Item */
.bellemann-3nav__item {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.bellemann-3nav__item:hover {
  transform: translateY(-5px);
}

/* Anchor inside item */
.bellemann-3nav__item a {
  display: block;
  text-decoration: none;
  color: #000;
}
.bellemann-3nav__item a:hover {
  text-decoration: none;
  color: #000;
}

/* Image */
.bellemann-3nav__image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

/* Title */
.bellemann-3nav__title {
  padding: 15px;
  font-weight: 700;
  color: #000;
}

/* Responsive grid */
@media (max-width: 768px) {
  .bellemann-3nav__grid {
    grid-template-columns: 1fr;
  }
}
