/* ===== Desktop layout ===== */

/* Content netjes centreren */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
}

/* Typografie desktop */
h1 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Kaarten blijven beschikbaar op desktop */
.card {
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  background: #F2C66A;
}

/* Basis tabelstijl (voor later gebruik) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

th,
td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
}

th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Header iets ruimer op desktop */
.site-header {
  padding: 12px 18px;
}

.logo-left {
  height: 44px;
}

.logo-center {
  height: 38px;
}

.header-logo-right {
  height: 38px;
}

/* =========================================================
   Vestigingen: desktop naast elkaar, mobiel onder elkaar
   (mobiel hoeft niets: standaard block flow)
   ========================================================= */

@media (min-width: 900px) {
  .loc-layout {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

  .loc-left {
    flex: 1 1 55%;
    min-width: 320px;
  }

  .loc-right {
    flex: 1 1 45%;
  }

  /* Als loc.html een afbeelding bevat: netjes schalen */
  .loc-right img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}
