/* (Frontend styles unchanged from v2 — glass cards, headings, social icons, responsive grid) */
.webr-role-heading { text-align:center; margin:24px 0 12px; position:relative; }
.webr-role-heading span { display:inline-block; padding:4px 12px; font-weight:700; letter-spacing:.3px; background:rgba(0,0,0,0.35); color:#fff; border-radius:999px; backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); }
body[data-theme="light"] .webr-role-heading span { background:rgba(0,0,0,0.08); color:#000; }
.webr-team { display:grid; gap:16px; }
.webr-card.webr-glass { text-align:center; border-radius:16px; padding:16px; background:rgba(0,0,0,0.55); color:#fff; box-shadow:0 4px 12px rgba(0,0,0,0.4); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); transition:transform .3s ease, box-shadow .3s ease; }
.webr-card.webr-glass:hover { transform:translateY(-4px); box-shadow:0 6px 18px rgba(0,0,0,0.6); }
.webr-card img { width:170px; height:210px; object-fit:cover; border-radius:12px; margin-bottom:10px; box-shadow:0 2px 8px rgba(0,0,0,.3); }
.webr-card h3 { margin:6px 0 8px; font-size:1.2em; font-weight:700; color:#fff; }
.webr-bio { font-size:.95em; line-height:1.5; opacity:.95; }
.webr-social { display:flex; gap:10px; justify-content:center; align-items:center; margin-top:10px; }
.webr-social .webr-ic { width:34px; height:34px; border-radius:999px; display:flex; align-items:center; justify-content:center; color:#fff; background:rgba(255,255,255,0.08); text-decoration:none; transition:all .2s ease; box-shadow:0 1px 3px rgba(0,0,0,.25); }
.webr-social .webr-ic:hover { background:rgba(255,255,255,0.18); transform:translateY(-1px); }
body[data-theme="light"] .webr-card.webr-glass { background:rgba(255,255,255,0.82); color:#111; box-shadow:0 4px 10px rgba(0,0,0,0.2); }
body[data-theme="light"] .webr-card h3 { color:#000; }
body[data-theme="light"] .webr-bio { color:#222; }
body[data-theme="light"] .webr-social .webr-ic { color:#000; background:rgba(0,0,0,0.06); }
body[data-theme="light"] .webr-social .webr-ic:hover { background:rgba(0,0,0,0.14); }
@media (min-width: 700px) { .webr-team { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 980px) { .webr-team { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1280px) { .webr-team { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.webradio-theme-toggle { position:fixed; top:12px; right:16px; z-index:9999; background:var(--toggle-bg,rgba(0,0,0,0.6)); color:var(--toggle-fg,#fff); border:none; border-radius:999px; width:38px; height:38px; cursor:pointer; font-size:18px; display:flex; align-items:center; justify-content:center; box-shadow:0 1px 4px rgba(0,0,0,0.3); transition: all .25s ease; }
.webradio-theme-toggle:hover { transform: scale(1.08); }
/* Glasdesign-Teamübersicht mit zentriertem Grid */
.webr-role-heading {
  text-align: center;
  margin: 24px 0 12px;
  position: relative;
}
.webr-role-heading span {
  display: inline-block;
  padding: 4px 12px;
  font-weight: 700;
  letter-spacing: .3px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body[data-theme="light"] .webr-role-heading span {
  background: rgba(0,0,0,0.08);
  color: #000;
}

/* 🧩 Teamkarten-Grid — jetzt zentriert */
.webr-team {
  display: grid;
  gap: 16px;
  justify-content: center; /* <-- Karten zentrieren */
}

/* Spaltensteuerung per data-columns (Shortcode-Attribut columns="3") */
.webr-team[data-columns="1"] { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.webr-team[data-columns="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.webr-team[data-columns="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.webr-team[data-columns="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.webr-card.webr-glass {
  text-align: center;
  border-radius: 16px;
  padding: 16px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .3s ease, box-shadow .3s ease;
}
.webr-card.webr-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.webr-card img {
  width: 170px;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.webr-card h3 {
  margin: 6px 0 8px;
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
}
.webr-bio {
  font-size: .95em;
  line-height: 1.5;
  opacity: .95;
}
.webr-social {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.webr-social .webr-ic {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.webr-social .webr-ic:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* Light Mode */
body[data-theme="light"] .webr-card.webr-glass {
  background: rgba(255,255,255,0.82);
  color: #111;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
body[data-theme="light"] .webr-card h3 { color: #000; }
body[data-theme="light"] .webr-bio { color: #222; }
body[data-theme="light"] .webr-social .webr-ic {
  color: #000;
  background: rgba(0,0,0,0.06);
}
body[data-theme="light"] .webr-social .webr-ic:hover {
  background: rgba(0,0,0,0.14);
}

/* Responsive Basis-Layout */
@media (min-width: 700px) {
  .webr-team:not([data-columns]) {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (min-width: 980px) {
  .webr-team:not([data-columns]) {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}
@media (min-width: 1280px) {
  .webr-team:not([data-columns]) {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
}

/* Theme Toggle */
.webradio-theme-toggle {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 9999;
  background: var(--toggle-bg, rgba(0,0,0,0.6));
  color: var(--toggle-fg, #fff);
  border: none;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: all .25s ease;
}
.webradio-theme-toggle:hover {
  transform: scale(1.08);
}
