/* Lädeli Page Styles
--------------------------------------------- */
.laedeli-page {
  /* Match base padding from global styles/other pages */
  padding-bottom: 4rem;
}

.laedeli-hero {
  /* Reuse about-hero styling */
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.laedeli-info {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.laedeli-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .laedeli-info__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.laedeli-phone {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Opening Hours Table */
.laedeli-hours {
  background-color: var(--surface-color, #f4f0ec);
  padding: 1.5rem;
  border-radius: var(--border-radius, 8px);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 0.5rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table th {
  font-weight: 600;
  width: 40%;
}

/* Map Container */
.map-container,
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius, 8px);
  overflow: hidden;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  display: block;
}

.map-link {
  margin-top: 0.75rem;
  text-align: right;
  display: block;
}

/* Gallery Grid */
.laedeli-gallery {
  margin-top: 3rem;
}

.laedeli-gallery h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius, 8px);
  display: block;
}
