/* Öffnungszeiten – Admin und Homepage */
.opening-hours-section{
  background:linear-gradient(135deg,#f8fbff,#ffffff);
  padding-top:30px;
}
.opening-hours-box{
  background:#fff;
  border:1px solid #d8e5f5;
  border-radius:24px;
  padding:28px;
  box-shadow:0 16px 38px rgba(0,74,173,.08);
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:26px;
  align-items:start;
}
.opening-hours-eyebrow{
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#004aad;
  font-weight:900;
  font-size:13px;
  margin:0 0 8px;
}
.opening-hours-head h2{
  margin:0 0 8px;
  color:#0e3158;
}
.opening-hours-grid{
  display:grid;
  gap:8px;
}
.opening-hours-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  border-bottom:1px solid #edf3fb;
  padding:8px 0;
}
.opening-hours-row span{
  color:#607085;
  font-weight:800;
}
.opening-hours-row strong{
  color:#13213a;
  text-align:right;
}
.opening-hours-contact{
  grid-column:1 / -1;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:2px;
}
.opening-hours-contact a{
  background:#e9f2ff;
  color:#004aad;
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  text-decoration:none;
}
.opening-hours-note{
  grid-column:1 / -1;
  background:#f8fbff;
  border:1px solid #d8e5f5;
  border-radius:16px;
  padding:12px 14px;
  color:#42566c;
  margin:4px 0 0;
}
.oh-admin-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.oh-check{
  display:flex !important;
  align-items:center;
  gap:8px;
  background:#f8fbff;
  border:1px solid #d8e5f5;
  border-radius:14px;
  padding:10px 12px;
  font-weight:800;
}
.oh-check input{
  width:auto !important;
}
@media(max-width:900px){
  .opening-hours-box{grid-template-columns:1fr}
  .oh-admin-grid{grid-template-columns:1fr}
  .opening-hours-row{align-items:flex-start}
}
