:root {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --text: #18332e;
  --muted: #5f6b66;
  --line: #e7e0d6;
  --brand: #11634f;
  --brand-dark: #0d4d3e;
  --accent: #b75f3e;
  --soft-green: #eaf4ed;
  --soft-cream: #f5ebdd;
  --soft-peach: #f9e6d8;
  --danger: #b91c1c;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(24, 51, 46, .08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--brand-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: .65rem .9rem;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.skip-target {
  display: block;
  outline: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.improvement-bar {
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
}

.improvement-panel {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: .55rem 0;
}

.improvement-panel summary {
  width: fit-content;
  cursor: pointer;
  color: #9a3412;
  font-weight: 800;
}

.improvement-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: end;
  margin-top: .6rem;
}

.improvement-form label {
  display: grid;
  gap: .3rem;
  margin: 0;
  font-weight: 700;
}

.improvement-form textarea {
  min-height: 72px;
}

.site-header,
.site-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem max(1rem, calc((100% - 1180px) / 2));
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 22px rgba(24, 51, 46, .04);
}

.site-footer {
  display: block;
  border-top: 0;
  border-bottom: 0;
  margin-top: 2.5rem;
  padding: 0;
  background: #edf5ef;
}

.brand {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--brand);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.brand-mark::before {
  background: var(--accent);
}

.brand-mark span {
  margin: 0 3px;
  background: #f4c34f;
}

.brand-mark::after {
  background: var(--brand);
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--brand-dark);
}

.site-nav a,
.site-footer a,
.footer-link {
  text-decoration: none;
}

.site-nav a {
  color: var(--text);
  font-size: .94rem;
  font-weight: 700;
}

.nav-logout-form {
  margin: 0;
}

.nav-logout-form button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  font: inherit;
  font-size: .94rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 22px;
  padding: 0 .4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem .9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: white;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.site-nav .nav-cta {
  color: #fff;
}

.nav-cta {
  min-height: 38px;
  padding: .55rem .85rem;
  border-radius: 10px;
}

.site-nav a[href="/login.php"] {
  min-height: 38px;
  padding: .5rem .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.btn.disabled,
.btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn.danger {
  background: var(--danger);
  color: #fff;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.home-page {
  background: var(--bg);
}

.home-hero {
  min-height: 390px;
  padding: 4.5rem 0 4rem;
  background: linear-gradient(90deg, rgba(251, 250, 246, 1) 0%, rgba(251, 250, 246, .60) 50%, rgba(251, 250, 246, 0) 80%), url("/assets/img/home-hero-dance-hd.webp") right center / min(164vw, 1720px) auto no-repeat;
}

.home-hero-inner {
  position: relative;
  display: grid;
  min-height: 290px;
  align-items: center;
}

.home-hero-copy {
  max-width: 560px;
}

.home-launch-badge {
  position: absolute;
  z-index: 2;
  top: .25rem;
  left: min(47vw, 660px);
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  background: linear-gradient(145deg, #f08a45, #dc5e2d);
  box-shadow: 0 14px 30px rgba(85, 45, 24, .24), inset 0 0 0 2px rgba(255, 255, 255, .24);
  color: #fff;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.home-launch-badge span {
  max-width: 88px;
  margin-bottom: .25rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.08;
}

.home-launch-badge strong {
  font-size: 1.12rem;
  letter-spacing: .01em;
}

.home-launch-badge small {
  max-width: 88px;
  margin-top: .25rem;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.08;
}

@media (max-width: 1100px) {
  .home-launch-badge {
    position: relative;
    top: auto;
    left: auto;
    display: inline-flex;
    width: auto;
    height: auto;
    margin: 0 0 1rem .15rem;
    padding: .55rem .85rem;
    flex-direction: row;
    border-width: 3px;
    border-radius: 999px;
    gap: .35rem;
    transform: rotate(-2deg);
  }

  .home-launch-badge span,
  .home-launch-badge small {
    max-width: none;
    margin: 0;
    white-space: nowrap;
  }
}

.home-hero h1 {
  margin: 0 0 1rem;
  max-width: 540px;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 430px;
  margin: 0 0 1.5rem;
  color: var(--text);
  font-size: 1rem;
}

.home-search {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) minmax(110px, .75fr) minmax(130px, 1fr) auto;
  gap: .55rem;
  align-items: end;
  max-width: 640px;
  padding: .85rem;
  border: 1px solid #ede7dd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 51, 46, .12);
}

.home-search label {
  gap: .2rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.home-search input,
.home-search select {
  min-height: 38px;
  padding: .55rem .65rem;
  border-color: #eee7dd;
  background: #fff;
  font-size: .9rem;
}

.home-search .btn {
  min-height: 38px;
  border-radius: 10px;
}

.home-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2rem;
}

.home-choice {
  display: grid;
  gap: .65rem;
  min-height: 185px;
  min-width: 0;
  justify-items: center;
  align-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(231, 224, 214, .8);
  border-radius: 10px;
  color: var(--text);
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.home-choice:hover,
.home-choice:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 51, 46, .1);
}

.home-choice-green {
  background: var(--soft-green);
}

.home-choice-cream {
  background: var(--soft-cream);
}

.home-choice-peach {
  background: var(--soft-peach);
}

.home-icon {
	width: 95px;
}

.home-choice-icon {
  display: grid;
  width: 160px;
  height: 80px;
  place-items: center;
}

.home-choice h2,
.home-choice p {
  margin: 0;
}

.home-choice h2 {
  font-size: 1.1rem;
}

.home-choice p {
  max-width: 230px;
  color: var(--text);
  font-size: .92rem;
}

.home-card-link,
.home-section-head a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.home-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.home-strip a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.home-section {
  margin-top: 2rem;
}

.home-section-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}

.home-section-head h2 {
  margin: 0;
  font-size: 1.55rem;
}

.home-dancer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.home-dancer-card,
.home-mini-card {
  display: grid;
  gap: .45rem;
  justify-items: center;
  min-width: 0;
  min-height: 140px;
  padding: 1rem .75rem;
  border: 1px solid #e8e1d7;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  text-align: center;
  text-decoration: none;
}

.home-card-peach {
  background: var(--soft-peach);
}

.home-card-green {
  background: var(--soft-green);
}

.home-dancer-card {
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease;
}

.partner-photo-wrap.has-locked-photo::after {
  content: "🔒";
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21,82,67,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  box-shadow: 0 6px 16px rgba(18,60,50,.14);
  pointer-events: none;
}

.home-dancer-card:hover,
.home-dancer-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 51, 46, .1);
}

.home-dancer-card strong {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}

.home-dancer-card span {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: .9rem;
}
.home-dancer-image-wrap { position:relative; width:68px; height:68px; display:grid; place-items:center; }
.home-dancer-photo-lock { position:absolute; z-index:2; right:-4px; bottom:0; width:25px; height:25px; border:1px solid rgba(21,82,67,.12); border-radius:50%; display:grid; place-items:center; color:#245b4e !important; background:rgba(255,255,255,.96); box-shadow:0 5px 13px rgba(18,60,50,.14); font-size:12px !important; line-height:1; pointer-events:none; }

.home-dancer-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.home-dancer-photo {
  width: 62px;
  height: 62px;
  border: 2px solid #edf1ec;
  border-radius: 50%;
  object-fit: cover;
}

.home-event-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.home-event-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
  min-width: 0;
  min-height: 105px;
  padding: .9rem;
  border-radius: 10px;
  background: var(--soft-peach);
  color: var(--text);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.home-event-card:hover,
.home-event-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 51, 46, .1);
}

.home-event-card time {
  display: grid;
  gap: .1rem;
  place-items: center;
  min-height: 66px;
  border-radius: 10px;
  background: #fff;
  color: var(--accent);
  box-shadow: 0 3px 10px rgba(24, 51, 46, .08);
}

.home-event-card time strong {
  font-size: 1.45rem;
  line-height: 1;
}

.home-event-card time span,
.home-event-card div span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
}

.home-event-card div,
.home-event-card strong,
.home-event-card span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Trust-Leiste Startseite */
.home-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 13px 18px;
  background: #fff;
  border: 1px solid #e4e8e3;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 93, 74, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 18px;
  border-right: 1px solid #edf0ec;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.trust-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item div {
  min-width: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
  color: #1f5d4a;
}

.trust-item span {
  display: block;
  font-size: 12px;
  line-height: 1.25;
  color: #6b7c73;
}

/* Mobil: 2er-Blöcke */
@media (max-width: 768px) {
  .home-trust {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
  }

  .trust-item {
    padding: 12px 10px;
    border-right: 0;
    border-bottom: 1px solid #edf0ec;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid #edf0ec;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: 0;
  }
}

/* Sehr kleine Smartphones */
@media (max-width: 420px) {
  .trust-item {
    gap: 8px;
    padding: 10px 8px;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .trust-icon svg {
    width: 21px;
    height: 21px;
  }

  .trust-item strong {
    font-size: 13px;
  }

  .trust-item span {
    font-size: 11px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
}

.footer-grid nav,
.footer-brand {
  display: grid;
  gap: .65rem;
  align-content: start;
}

.footer-grid nav {
  border-left: 1px solid #d9e4dc;
  padding-left: 1.5rem;
}

.footer-grid a,
.footer-link {
  color: var(--text);
  text-align: left;
}

.footer-brand p {
  max-width: 260px;
  margin: .4rem 0 0;
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: .55rem;
}

.footer-social span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--brand-dark);
  border-radius: 50%;
  color: var(--brand-dark);
  font-size: .75rem;
  font-weight: 900;
}

.footer-bottom {
  padding: 1rem;
  background: var(--brand-dark);
  color: #fff;
  text-align: center;
  font-size: .9rem;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 7vw, 4.25rem);
  line-height: 1.02;
}

.hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.actions form {
  margin: 0;
}

.compact-actions {
  gap: .4rem;
  margin-top: 0;
}

.compact-actions .btn {
  min-height: 34px;
  padding: .4rem .6rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}

.section-head h2,
.section-head form {
  margin: 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}

.help-page {
  background: #fbfaf6;
  padding: 1rem 0 2.5rem;
}

.help-hero {
  display: grid;
  gap: 1rem;
}

.help-breadcrumb {
  display: flex;
  gap: .45rem;
  align-items: center;
  color: var(--muted);
  font-size: .85rem;
}

.help-breadcrumb a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.help-breadcrumb a::before {
  content: "< ";
}

.help-breadcrumb span::before {
  content: ">";
  margin-right: .45rem;
}

.help-hero h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.help-hero p {
  margin: -.45rem 0 .25rem;
  color: var(--muted);
  font-weight: 700;
}

.help-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  max-width: 620px;
  border: 1px solid #e8dfd3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(24, 51, 46, .06);
}

.help-search input,
.help-search button {
  border: 0;
  background: transparent;
}

.help-search input {
  min-height: 48px;
  padding: 0 1rem;
}

.help-search button {
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  position: relative;
}

.help-search button::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/assets/img/icon-search.png") center / contain no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}

.help-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.help-tabs button {
  min-height: 36px;
  border: 1px solid #e8dfd3;
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 850;
  padding: .45rem .8rem;
}

.help-tabs button.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.help-list {
  display: grid;
  gap: .65rem;
  margin-top: 1.2rem;
}

.help-item {
  border: 1px solid #e8dfd3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 51, 46, .045);
}

.help-item[hidden] {
  display: none;
}

.help-item summary {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 20px;
  gap: .75rem;
  align-items: center;
  min-height: 58px;
  cursor: pointer;
  list-style: none;
  padding: .75rem 1rem;
}

.help-item summary::-webkit-details-marker {
  display: none;
}

.help-item summary::after {
  content: "⌄";
  color: var(--brand);
  font-weight: 900;
  text-align: right;
}

.help-item[open] summary::after {
  content: "⌃";
}

.help-item summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #eef6f1;
}

.help-item summary img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.help-item summary strong {
  overflow-wrap: anywhere;
}

.help-item p {
  margin: 0;
  border-top: 1px solid #f0e8dd;
  color: var(--text);
  line-height: 1.7;
  padding: 0 1rem 1rem 3.75rem;
}

.help-contact-band {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  border: 1px solid #dcece4;
  border-radius: 12px;
  background: linear-gradient(135deg, #edf8f3, #fff7ec);
  padding: 1.25rem 1.5rem;
}

.help-contact-band strong {
  color: var(--brand-dark);
}

.help-contact-band p {
  margin: .2rem 0 0;
  color: var(--muted);
}

.contact-page {
  background: #fbfaf6;
  padding: 2rem 0 2.5rem;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(360px, 1fr) minmax(280px, .8fr);
  gap: 0;
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding: 1rem 2rem 1rem 0;
}

.contact-info h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
}

.contact-info p {
  margin: 0;
}

.contact-info-list {
  display: grid;
  gap: 1.35rem;
  margin: 1rem 0 0;
}

.contact-info-list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
}

.contact-info-list dt,
.contact-info-list dd {
  margin: 0;
}

.contact-info-list img,
.contact-benefits img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.contact-info-list strong,
.contact-social strong {
  display: block;
  color: var(--brand-dark);
  font-weight: 900;
}

.contact-info-list span {
  display: block;
  margin-top: .2rem;
  color: var(--text);
  font-size: .92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-social {
  display: grid;
  gap: .65rem;
  margin-top: .5rem;
}

.contact-social div {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.contact-social span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--brand);
  border-radius: 50%;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
}

.contact-card {
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-self: center;
  border: 1px solid #e9e2d8;
  border-radius: 14px;
  background: #fff;
  padding: 1.45rem;
  box-shadow: 0 18px 46px rgba(24, 51, 46, .12);
}

.contact-card h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.contact-card .btn {
  justify-content: center;
}

.contact-image {
  overflow: hidden;
  border-radius: 0 12px 12px 0;
  min-height: 520px;
}

.contact-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  border: 1px solid #dcece4;
  border-radius: 12px;
  background: linear-gradient(135deg, #edf8f3, #fffdf8);
  padding: 1.25rem;
}

.contact-benefits div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0rem 1.8rem;
  align-items: start;
}

.contact-benefits img {
  grid-row: span 2;
}

.contact-benefits strong {
  color: var(--brand-dark);
}

.contact-benefits span {
  color: var(--muted);
  font-size: .92rem;
}

.legal-page {
  background: #fbfaf6;
  padding: 2rem 0 2.75rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: 3rem;
  align-items: start;
}

.legal-content {
  display: grid;
  gap: 1.35rem;
  max-width: 720px;
}

.legal-content-wide {
  max-width: 820px;
}

.legal-content h1 {
  margin: 0 0 .25rem;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.legal-content section {
  display: grid;
  gap: .35rem;
}

.legal-content h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: .98rem;
}

.legal-content p {
  margin: 0;
  color: #3d514d;
  line-height: 1.65;
}

.legal-content a {
  color: var(--brand);
  font-weight: 800;
}

.legal-updated {
  margin-top: -.8rem;
  color: var(--muted);
  font-size: .94rem;
}

.legal-note {
  display: grid;
  gap: .85rem;
  border: 1px solid #dbe9e2;
  border-radius: 8px;
  background: linear-gradient(135deg, #f2faf6, #e8f3ed);
  padding: 1.5rem;
  color: #3d514d;
}

.legal-note img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.legal-note h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.legal-note p {
  margin: 0;
  line-height: 1.6;
}

.legal-note-warm {
  border-color: #f0ded1;
  background: linear-gradient(135deg, #fff8ee, #f8e8dc);
}

.privacy-rights {
  border-color: #dbe9e2;
  background: linear-gradient(135deg, #f2faf6, #e7f2ec);
}

.legal-note ul {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-note li {
  position: relative;
  padding-left: 1.45rem;
  color: #3d514d;
  line-height: 1.5;
}

.legal-note li::before {
  position: absolute;
  top: .12rem;
  left: 0;
  color: #c96a45;
  content: "✓";
  font-weight: 900;
}

.privacy-rights li::before {
  color: var(--brand);
  content: "•";
  font-size: 1.35rem;
  line-height: 1;
}

.rules-layout {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.rules-content {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.rules-content h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.rules-content > p {
  margin: -.35rem 0 .25rem;
  color: #3d514d;
}

.rules-list {
  display: grid;
  overflow: hidden;
  border: 1px solid #eadfd4;
  border-radius: 8px;
  background: #fff;
}

.rule-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: .9rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #f0e7dd;
}

.rule-item:last-child {
  border-bottom: 0;
}

.rule-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.rule-item h2 {
  margin: 0 0 .2rem;
  color: var(--brand-dark);
  font-size: 1rem;
}

.rule-item p {
  margin: 0;
  color: #3d514d;
  line-height: 1.5;
}

.rules-note {
  display: grid;
  gap: 1rem;
  justify-items: start;
  border: 1px solid #f0ded1;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8ee, #f8e8dc);
  padding: 1.8rem;
  color: #3d514d;
}

.rules-note h2 {
  margin: 0;
  color: #ad5838;
  font-size: 1.35rem;
  line-height: 1.25;
}

.rules-note p {
  margin: 0;
  line-height: 1.65;
}

.rules-note img {
  justify-self: center;
  width: min(170px, 80%);
  margin-top: .75rem;
}

.about-page {
  background: #fbfaf6;
  padding-bottom: 2.75rem;
}

.about-hero {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 1) 0%, rgba(251, 250, 246, .92) 38%, rgba(251, 250, 246, .28) 60%, rgba(251, 250, 246, 0) 100%),
    url("/assets/img/about-hero-dance.jpg") right center / cover no-repeat;
}

.about-hero-inner {
  display: grid;
  gap: 2.2rem;
  align-content: center;
  min-height: 360px;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.about-hero-copy {
  display: grid;
  gap: .8rem;
  max-width: 560px;
}

.about-hero-copy h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.about-hero-copy p {
  margin: 0;
  color: #3d514d;
  line-height: 1.65;
}

.about-hero-copy p:first-of-type {
  color: var(--brand-dark);
  font-weight: 800;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 1;
}

.about-value-grid article {
  display: grid;
  gap: .8rem;
  border: 1px solid #dbe9e2;
  border-radius: 8px;
  background: linear-gradient(135deg, #f2faf6, #e8f3ed);
  padding: 1.35rem;
  min-height: 190px;
}

.about-value-grid img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.about-value-grid h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.about-value-grid p {
  margin: 0;
  color: #3d514d;
  line-height: 1.55;
}

.about-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

.about-team {
  display: grid;
  gap: 1rem;
}

.about-team h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.35rem;
}

.about-team > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-team article {
  display: grid;
  justify-items: center;
  gap: .4rem;
  text-align: center;
}

.about-team img {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(24, 51, 46, .12);
}

.about-team strong {
  color: var(--brand-dark);
}

.about-team span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.35;
}

.about-growth {
  display: grid;
  gap: .9rem;
  border: 1px solid #f0ded1;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8ee, #f8e8dc);
  padding: 1.6rem;
}

.about-growth img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-growth h2 {
  margin: 0;
  color: #ad5838;
  font-size: 1.15rem;
}

.about-growth p {
  margin: 0;
  color: #3d514d;
  line-height: 1.6;
}

.about-growth .btn {
  justify-self: start;
  margin-top: .3rem;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}

.stat-card {
  display: grid;
  gap: .2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: .85rem;
  box-shadow: var(--shadow);
}

.stat-card strong {
  font-size: 1.6rem;
  line-height: 1;
}

.stat-card .stat-text {
  font-size: 1rem;
  line-height: 1.2;
}

.stat-card span {
  color: var(--muted);
  font-size: .9rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.muted {
  color: var(--muted);
  min-height: 50px;
}

.stack {
  display: grid;
  gap: 1rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 1rem;
  align-items: start;
}

.meta-list {
  display: grid;
  gap: .5rem;
  margin: 0;
}

.meta-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: .75rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: #e6f3f1;
  color: var(--brand-dark);
  font-size: .9rem;
  font-weight: 700;
}

.activity-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  margin-top: .35rem;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: #f0ece4;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.activity-online {
  background: #e4f5e8;
  color: #1f7a3a;
}

.match-box {
  display: grid;
  gap: .15rem;
  padding: .65rem .75rem;
  border: 1px solid #d7e8e4;
  border-radius: var(--radius);
  background: #f3faf8;
}

.match-box strong {
  color: var(--brand-dark);
}

.match-box span {
  color: var(--muted);
  font-size: .9rem;
}

.ad-slot {
  display: grid;
  gap: .5rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  background: #fffaf4;
}

.ad-slot span {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-slot h2,
.ad-slot p {
  margin: 0;
}
.ad-slot { max-width:1180px; margin:24px auto 0; align-items:center; overflow:hidden; }
.ad-slot.has-image { grid-template-columns:minmax(0,220px) minmax(0,1fr); }
.ad-slot-image { width:100%; aspect-ratio:16/9; border-radius:10px; display:block; object-fit:cover; background:#edf2ef; }
.ad-slot-content { display:grid; justify-items:start; gap:8px; }
.ad-slot-content > span { letter-spacing:.04em; }
.ad-slot-content .btn { margin-top:3px; }
.ad-slot.is-text-ad { padding:.72rem .9rem; border-style:solid; border-color:#d9e4df; background:#fbfcfb; box-shadow:0 5px 16px rgba(31,65,55,.045); }
.ad-slot.is-text-ad .ad-slot-content { grid-template-columns:auto minmax(120px,1fr) auto; align-items:center; width:100%; column-gap:12px; }
.ad-slot.is-text-ad .ad-slot-content > span { color:#a95f2f; font-size:.68rem; white-space:nowrap; }
.ad-slot.is-text-ad .ad-slot-copy { display:grid; min-width:0; gap:2px; }
.ad-slot.is-text-ad h2 { font-size:1rem; }
.ad-slot.is-text-ad p { color:var(--muted); font-size:.8rem; }
.ad-slot.is-text-ad .btn { min-height:34px; margin:0; padding:.4rem .7rem; font-size:.76rem; white-space:nowrap; }
.ad-slot-travel { background:#f1f7f6; }
.ad-slot-shoes { background:#fff8ef; }
@media (max-width:620px) {
  .ad-slot.has-image { grid-template-columns:1fr; }
  .ad-slot-image { height:auto; aspect-ratio:16/9; }
  .ad-slot.is-text-ad .ad-slot-content { grid-template-columns:1fr; justify-items:start; }
  .ad-slot.is-text-ad .ad-slot-content > span { white-space:normal; }
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #e6f3f1;
  color: var(--brand-dark);
  font-weight: 800;
  flex: 0 0 auto;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-lg {
  width: 112px;
  height: 112px;
  font-size: 2rem;
}

.profile-photo-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.profile-photo-row label {
  flex: 1;
}

.profile-photo-delete {
  margin-top: .65rem;
}

.profile-card-head {
  display: flex;
  gap: .85rem;
  align-items: center;
}

.contact-person-head {
  display: flex;
  gap: .9rem;
  align-items: center;
}

.contact-person-head h3 {
  margin: .35rem 0 .15rem;
}

.contact-person-head p {
  margin: 0;
}

.progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee7dd;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.check-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .9rem;
  font-weight: 700;
}

.check-grid .ok {
  background: #e6f3f1;
  color: var(--brand-dark);
}

.check-grid .missing {
  background: #f8ead8;
  color: var(--accent);
}

.ok,
.missing {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .88rem;
  font-weight: 800;
}

.ok {
  background: #e6f3f1;
  color: var(--brand-dark);
}

.missing {
  background: #f8ead8;
  color: var(--accent);
}

.reply-list {
  display: grid;
  gap: .65rem;
  border-left: 3px solid var(--line);
  padding-left: .85rem;
}

.reply-list h4 {
  margin: 0;
}

.reply {
  display: grid;
  gap: .2rem;
}

.reply p {
  margin: 0;
}

/* Kontakte im Stil eines E-Mail-Clients */
.contacts-mail-page {
  max-width: 1380px;
}

.contacts-mail-hero {
  padding-bottom: 1rem;
}

.contacts-mail-hero h1 {
  margin-bottom: .25rem;
}

.contacts-mail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, .85fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid #dce5e1;
  border-radius: 14px;
  background: #eef4f1;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(24, 51, 46, .09);
}

.contacts-mail-column {
  min-width: 0;
}

.contacts-mail-folder-head {
  min-height: 48px;
  border-bottom: 1px solid #d9e3df;
  padding: 0 .25rem .7rem;
}

.contacts-mail-folder-head h2 {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.contacts-mail-folder-head h2 > span {
  color: var(--brand);
}

.contacts-mail-folder-head small {
  min-width: 25px;
  border-radius: 999px;
  background: #dcebe5;
  padding: .15rem .45rem;
  color: var(--brand-dark);
  font-size: .72rem;
  text-align: center;
}

.contacts-mail-message {
  position: relative;
  gap: .85rem;
  border: 1px solid #dce4e0;
  border-radius: 10px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(24, 51, 46, .05);
}

.contacts-mail-message.is-unread {
  border-left: 5px solid var(--brand);
  background: #fbfefd;
}

.contacts-mail-message.is-unread::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.contacts-mail-original {
  border-top: 1px solid #e7ece9;
  border-bottom: 1px solid #e7ece9;
  padding: .9rem .15rem;
}

.contacts-mail-original p {
  margin: 0 0 .55rem;
  line-height: 1.65;
}

.contacts-mail-original time {
  color: var(--muted);
  font-size: .78rem;
}

.contacts-mail-message .reply-list {
  border: 0;
  padding: .25rem 0;
}

.contacts-mail-message .reply {
  width: min(88%, 620px);
  border-radius: 4px 12px 12px 12px;
  background: #edf3f0;
  padding: .75rem .85rem;
}

.contacts-mail-message .reply.is-own {
  margin-left: auto;
  border-radius: 12px 4px 12px 12px;
  background: #dff0e9;
}

.contacts-mail-composer {
  max-width: none;
  border-top: 1px solid #e2e9e5;
  padding-top: .8rem;
}

.contacts-mail-composer textarea {
  min-height: 90px;
  background: #fbfdfc;
}

.contacts-mail-message > .actions {
  padding-top: .25rem;
  border-top: 1px solid #edf0ee;
}

@media (max-width: 980px) {
  .contacts-mail-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contacts-mail-shell {
    margin-right: -.4rem;
    margin-left: -.4rem;
    border-radius: 10px;
    padding: .65rem;
  }

  .contacts-mail-folder-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contacts-mail-folder-head form,
  .contacts-mail-folder-head .btn {
    width: 100%;
  }

  .contacts-mail-message .reply {
    width: 94%;
  }
}

/* Outlook-artige Master-Detail-Ansicht für Kontakte */
.contacts-mail-page,.outlook-shell,.outlook-sidebar,.outlook-reading-pane { min-width:0; max-width:100%; }
.contacts-retention-notice { margin-bottom:14px; }
.outlook-shell { width:100%; height:min(74vh,760px); min-height:560px; border:1px solid #d6dfdb; border-radius:12px; display:grid; grid-template-columns:370px minmax(0,1fr); overflow:hidden; background:#fff; box-shadow:0 16px 42px rgba(24,51,46,.1); }
.outlook-sidebar { min-width:0; border-right:1px solid #dce4e0; display:grid; grid-template-rows:auto auto minmax(0,1fr); background:#f7faf8; }
.outlook-sidebar-head { min-height:54px; padding:10px 14px; display:flex; align-items:center; justify-content:space-between; background:#fff; }.outlook-sidebar-head strong { color:#173f37; font-size:17px; }.outlook-sidebar-head form { margin:0; }.outlook-sidebar-head button { width:34px; height:34px; border:1px solid #cbdad4; border-radius:6px; background:#fff; color:#0b654f; cursor:pointer; font-weight:900; }
.outlook-folders { padding:6px 9px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:4px; border-top:1px solid #edf1ef; border-bottom:1px solid #dce4e0; background:#fff; }.outlook-folders a { min-width:0; padding:8px 6px; border-radius:6px; display:flex; align-items:center; justify-content:center; gap:5px; color:#45635b; font-size:11px; font-weight:750; text-decoration:none; white-space:nowrap; }.outlook-folders a[aria-current="page"] { background:#e0eee9; color:#0b654f; }.outlook-folders span { font-size:10px; }
.outlook-thread-list { overflow-y:auto; }.outlook-empty-list { padding:20px; color:#75837e; font-size:13px; text-align:center; }
.outlook-thread { position:relative; min-height:78px; padding:11px 13px; border-bottom:1px solid #e3e9e6; display:grid; grid-template-columns:42px minmax(0,1fr) auto; gap:10px; align-items:center; color:#263f39; text-decoration:none; }.outlook-thread:hover { background:#edf5f2; }.outlook-thread.is-selected { background:#dcece6; box-shadow:inset 4px 0 #0b654f; }.outlook-thread.is-unread { background:#f3faf7; }.outlook-thread.is-unread strong { font-weight:900; }.outlook-thread > i { width:8px; height:8px; border-radius:50%; background:#0b654f; }
.outlook-avatar { width:42px; height:42px; overflow:hidden; border-radius:50%; display:grid; place-items:center; background:#d9eae4; color:#0b654f; font-weight:900; }.outlook-avatar.is-large { width:48px; height:48px; flex:0 0 48px; }.outlook-avatar img { width:100%; height:100%; object-fit:cover; }
.outlook-thread-copy { min-width:0; display:grid; gap:5px; }.outlook-thread-copy > span { min-width:0; display:flex; align-items:center; justify-content:space-between; gap:8px; }.outlook-thread-copy strong { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:13px; }.outlook-thread-copy time { flex:0 0 auto; color:#75837e; font-size:9px; }.outlook-thread-copy small { overflow:hidden; color:#65766f; font-size:11px; text-overflow:ellipsis; white-space:nowrap; }
.outlook-reading-pane { min-width:0; display:grid; grid-template-rows:auto minmax(0,1fr) auto; background:#fff; }.outlook-reading-head { min-width:0; min-height:76px; padding:13px 18px; border-bottom:1px solid #dce4e0; display:flex; align-items:center; justify-content:space-between; gap:16px; }.outlook-reading-person { min-width:0; display:flex; align-items:center; gap:11px; }.outlook-reading-person > div { min-width:0; }.outlook-reading-person h2 { margin:0 0 3px; color:#173f37; font-size:18px; }.outlook-reading-person p { max-width:650px; margin:0; overflow:hidden; color:#6d7d77; font-size:11px; text-overflow:ellipsis; white-space:nowrap; }.outlook-reading-actions { flex:0 0 auto; display:flex; align-items:center; gap:7px; }.outlook-reading-actions form { margin:0; }.outlook-reading-actions .btn { min-height:38px; padding:8px 11px; font-size:11px; }.outlook-block-button { border-color:#e3a493; color:#b94d36; }
.outlook-conversation { min-width:0; padding:20px; overflow-x:hidden; overflow-y:auto; display:flex; flex-direction:column; gap:12px; background:#f5f7f6; }.outlook-message { box-sizing:border-box; max-width:100%; width:min(78%,680px); padding:11px 14px; overflow-wrap:anywhere; border:1px solid #dce5e1; border-radius:5px 13px 13px 13px; background:#fff; box-shadow:0 3px 9px rgba(24,51,46,.04); }.outlook-message.is-own { align-self:flex-end; border-color:#c5ddd4; border-radius:13px 5px 13px 13px; background:#e4f2ed; }.outlook-message > div { min-width:0; display:flex; justify-content:space-between; gap:14px; }.outlook-message strong { min-width:0; color:#244a41; font-size:11px; overflow-wrap:anywhere; }.outlook-message time { flex:0 0 auto; color:#7b8984; font-size:9px; }.outlook-message p { margin:7px 0 0; line-height:1.55; font-size:13px; overflow-wrap:anywhere; }
.outlook-compose-area { padding:11px 14px; border-top:1px solid #dce4e0; background:#fff; }.outlook-composer { display:grid; grid-template-columns:minmax(140px,190px) minmax(0,1fr) auto; gap:8px; align-items:end; }.outlook-composer.without-templates { grid-template-columns:minmax(0,1fr) auto; }.outlook-composer textarea { min-height:72px; max-height:180px; resize:vertical; transition:min-height .15s ease; }.outlook-composer textarea:focus { min-height:105px; }.outlook-composer select,.outlook-composer textarea { font-size:12px; }.outlook-composer .btn { min-width:100px; min-height:42px; }
.outlook-message-actions { margin-top:7px; display:flex; justify-content:flex-end; gap:5px; }.outlook-message-actions form { margin:0; }.outlook-message-actions button { padding:3px 7px; border:0; background:transparent; color:#61746d; cursor:pointer; font-size:10px; }.outlook-message-actions button:hover { color:#0b654f; text-decoration:underline; }
.outlook-no-selection { margin:auto; padding:30px; color:#75837e; text-align:center; }.outlook-no-selection > span { font-size:42px; }.outlook-no-selection h2 { color:#31584e; }
.partner-contact-request-form textarea { min-height:82px; transition:min-height .15s ease; }.partner-contact-request-form textarea:focus { min-height:120px; }
@media (max-width:900px) { .outlook-shell { height:auto; min-height:0; grid-template-columns:1fr; overflow:visible; }.outlook-sidebar { max-height:430px; border-right:0; border-bottom:1px solid #dce4e0; }.outlook-thread-list { max-height:330px; }.outlook-reading-pane { min-height:580px; }.outlook-composer { grid-template-columns:1fr auto; }.outlook-composer select { grid-column:1/-1; } }
@media (max-width:560px) { .outlook-shell { margin:0; overflow:hidden; border-radius:8px; }.outlook-thread { min-height:70px; }.outlook-reading-head { align-items:stretch; flex-direction:column; padding:13px 10px; }.outlook-reading-actions { display:grid; grid-template-columns:1fr 1fr; }.outlook-reading-actions form { min-width:0; }.outlook-reading-actions .btn { box-sizing:border-box; width:100%; }.outlook-reading-person p { white-space:normal; overflow-wrap:anywhere; }.outlook-conversation { padding:12px 9px; }.outlook-message { width:100%; }.outlook-composer,.outlook-composer.without-templates { min-width:0; grid-template-columns:minmax(0,1fr); }.outlook-composer select,.outlook-composer textarea,.outlook-composer .btn { box-sizing:border-box; min-width:0; width:100%; }.outlook-message-actions { flex-wrap:wrap; }.contacts-retention-notice { font-size:12px; } }

.report-box {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.report-box summary {
  cursor: pointer;
  font-weight: 700;
}

.partner-detail-page {
  background: #fbfaf6;
  padding: 1.25rem 0 0;
}

.partner-detail-top {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.partner-detail-top .partner-back-link {
  display: none;
}

.partner-back-link,
.partner-top-actions a,
.link-button {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.link-button {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.partner-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: end;
  width: 100%;
}

.partner-share-pill {
  display: inline-flex;
  min-width: 180px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid #e5ded4;
  border-radius: 999px;
  background: #fff;

  box-shadow: 0 10px 26px rgba(24, 51, 46, .12);
  font-size: 0.7em;
}

.partner-share-pill.is-whatsapp {
  background: #edf8f2;
  border-color: #d8eadf;
}

.partner-share-pill svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.partner-share-pill .partner-share-arrow {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.partner-share-pill:hover,
.partner-share-pill:focus-visible {
  border-color: #cfdcd5;
  background: #f8fbf8;
  box-shadow: 0 14px 30px rgba(24, 51, 46, .15);
  transform: translateY(-1px);
}

.partner-detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.partner-profile-side {
  display: grid;
  gap: 1.2rem;
}

.partner-photo-wrap {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.partner-photo-wrap.has-locked-photo::after {
  top: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  font-size: 19px;
}

.partner-profile-photo {
  width: 100%;
  height: 100%;
  border: 9px solid #fff;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(24, 51, 46, .14);
  object-fit: cover;
}

.partner-profile-photo.is-placeholder {
  padding: 3rem;
  background: #edf5ef;
  object-fit: contain;
}

.partner-online-dot {
  position: absolute;
  right: 12%;
  bottom: 8%;
  width: 34px;
  height: 34px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #31a77a;
}

.partner-thumb-row {
  display: flex;
  gap: .55rem;
  justify-content: center;
}

.partner-thumb-row span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #e7f0eb;
  color: var(--brand-dark);
  font-weight: 900;
}

.partner-thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-side-card,
.partner-quote-card,
.partner-main-card,
.partner-like-banner {
  border: 1px solid #e9e2d8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 51, 46, .08);
}

.partner-side-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #e9f5ee, #f7fbf7);
}

.partner-name-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
}

.partner-name-row img,
.partner-location-list img,
.partner-attribute-grid img,
.partner-looking-list img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.partner-name-row h1 {
  margin: 0;
  font-size: 1.75rem;
  overflow-wrap: anywhere;
}

.partner-name-row p {
  margin: .15rem 0 0;
  color: var(--muted);
}

.partner-location-list,
.partner-detail-grid {
  display: grid;
  gap: .8rem;
  margin: 0;
}

.partner-location-list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: .65rem;
  align-items: center;
}

.partner-location-list dt,
.partner-detail-grid dt {
  color: var(--muted);
  font-weight: 800;
}

.partner-location-list dd,
.partner-detail-grid dd {
  margin: 0;
}

.partner-wide-btn {
  width: 100%;
}

.partner-quote-card {
  padding: 1.4rem;
  background: linear-gradient(135deg, #fffaf1, #f7fbf7);
}

.partner-quote-card strong {
  display: block;
  color: var(--brand);
  font-size: 2.4rem;
  line-height: 1;
}

.partner-profile-main {
  display: grid;
  gap: 1.2rem;
}







.partner-main-card {
  overflow: hidden;
  border-radius: 16px;
}

.partner-card-section,
.partner-split-section {
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #eee8df;
}

.partner-card-section:last-child {
  border-bottom: 0;
}

.partner-bio {
  max-width: 760px;
  margin-top: 0;
  font-size: 1.05rem;
}

.partner-attribute-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.4rem;
}

.partner-attribute-grid span {
  display: flex;
  gap: .65rem;
  align-items: center;
  min-height: 62px;
  padding: .8rem;
  border-radius: 10px;
  background: #f8f6f2;
  font-weight: 800;
}

.partner-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.partner-section-subhead {
  margin: 1.5rem 0 .7rem;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.partner-chip-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  background: #e5f3eb;
  color: var(--brand-dark);
  padding: .45rem .9rem;
  font-weight: 800;
}

.partner-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.partner-split-section > div + div {
  border-left: 1px solid #eee8df;
  padding-left: 2rem;
}

.partner-level-bars {
  display: flex;
  gap: .35rem;
  margin-top: 1rem;
}

.partner-level-bars span {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: #e2e1df;
}

.partner-level-bars span.active {
  background: #2ba575;
}

.partner-looking-list {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-search-text {
  max-width: 680px;
  margin: 0 0 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.partner-search-grid {
  margin-top: 1rem;
}

.partner-looking-list-compact {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.partner-looking-list-compact li {
  min-height: 44px;
  border: 1px solid #eee8df;
  border-radius: 10px;
  background: #fbfaf6;
  padding: .65rem .75rem;
}

.partner-looking-list li {
  display: flex;
  gap: .65rem;
  align-items: center;
  overflow-wrap: anywhere;
}

.partner-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
}

.partner-detail-grid div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: .75rem;
}

.partner-event-list {
  display: grid;
  gap: .75rem;
}

.partner-event-list a {
  display: grid;
  gap: .2rem;
  padding: .8rem;
  border-radius: 10px;
  background: #f8f6f2;
  color: var(--text);
  text-decoration: none;
}

.partner-event-list span {
  color: var(--muted);
}

.partner-like-banner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  background: linear-gradient(90deg, #fff0e7, #fee2d4);
}

.partner-like-banner span {
  display: block;
  color: var(--accent);
}

.event-detail-page {
  background: #fbfaf6;
  padding: 1rem 0 2rem;
}

.event-detail-top {
  margin-bottom: 1rem;
}

.event-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .95fr);
  gap: 1.4rem;
  align-items: start;
}

.event-media-panel,
.event-summary-info-card,
.event-price-card,
.event-panel {
  border: 1px solid #e9e2d8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 51, 46, .08);
}

.event-media-panel {
  overflow: hidden;
}

.event-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.event-summary-card {
  display: grid;
  gap: .9rem;
  align-content: start;
}

.event-summary-info-card {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
}

.event-summary-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.event-summary-card h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 1vw, 2.5rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.event-summary-card p {
  margin: 0;
}

.event-summary-style {
  color: var(--text);
  font-weight: 700;
}

.event-icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #edc9bd;
  border-radius: 50%;
  background: #fff8f4;
  cursor: pointer;
}

.event-icon-button img,
.event-icon-button svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.event-icon-button svg {
  fill: transparent;
  stroke: #cf6049;
  stroke-width: 1.8;
  transition: fill .16s ease, stroke .16s ease, transform .16s ease;
}

.event-icon-button:hover svg {
  transform: scale(1.08);
}

.event-icon-button.is-favorite {
  border-color: #dc4d50;
  background: #fff0f0;
}

.event-icon-button.is-favorite svg {
  fill: #dc3545;
  stroke: #dc3545;
}

.event-summary-list,
.event-info-list,
.event-mini-list {
  display: grid;
  gap: .85rem;
  margin: 0;
}

.event-summary-list div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  border-top: 1px solid #eee7dd;
  padding-top: .85rem;
}

.event-summary-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.event-summary-list img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.event-summary-list dt,
.event-info-list dt,
.event-mini-list dt {
  color: var(--muted);
  font-weight: 800;
}

.event-summary-list dd,
.event-info-list dd,
.event-mini-list dd {
  display: grid;
  gap: .18rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.event-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.event-chip-list span {
  border-radius: 8px;
  background: #f5efe5;
  padding: .42rem .7rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.event-price {
  color: var(--brand-dark);
  font-weight: 900;
}

.event-price-card {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(100deg, #fff8f3, #fff);
  padding: 1rem 1.25rem;
}

.event-price-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #fde6dc;
}

.event-price-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.event-price-card strong {
  color: #bd5a42;
  font-size: 1.55rem;
  font-weight: 900;
}

.event-primary-btn {
  width: 100%;
  justify-content: center;
}

.event-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.event-action-button {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid #e9e2d8;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 900;
  padding-inline: .65rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(24, 51, 46, .08);
  font-size: clamp(13px, 1vw, 15px);
}

.event-action-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.event-action-button.is-wide {
  grid-column: 1 / -1;
}

.event-action-button:hover {
  border-color: rgba(13, 107, 82, .35);
  transform: translateY(-1px);
}

.event-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.event-panel {
  padding: 1.35rem;
}

.event-panel h2 {
  margin-top: 0;
}

.event-about-panel {
  min-height: 190px;
}

.event-organizer-row {
  display: grid;
  
  gap: .9rem;
  align-items: center;
}



.event-organizer-row div {
  display: grid;
  gap: .25rem;
}

.event-info-list div,
.event-mini-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: .85rem;
}

.event-map-image {
  display: block;
  width: 100%;
  aspect-ratio: 2.4;
  border-radius: 10px;
  background: #e7f0eb;
  object-fit: cover;
}

.event-related-panel {
  grid-column: 1 / -1;
}

.event-related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .8rem;
}

.event-related-list a {
  display: grid;
  gap: .25rem;
  border-radius: 10px;
  background: #f8f6f2;
  color: var(--text);
  padding: .85rem;
  text-decoration: none;
}

.event-related-list span {
  color: var(--muted);
}

.event-check-list {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding-left: 1rem;
}

.schools-page {
  background: #fbfaf6;
  padding: 1.25rem 0 2rem;
}

.schools-hero {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.schools-hero h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.schools-hero p {
  margin: .45rem 0 0;
  color: var(--muted);
}

.schools-search-panel {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) 130px minmax(210px, 1.2fr) auto auto;
  gap: 1rem;
  align-items: end;
  border: 1px solid #efe5d6;
  border-radius: 12px;
  background: #f6eee2;
  padding: 1.2rem;
}

.schools-search-panel label {
  display: grid;
  gap: .35rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.schools-dance-filter {
  display: grid;
  gap: .45rem;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.schools-dance-filter legend,
.events-dance-filter legend {
  color: var(--brand-dark);
  font-weight: 800;
}

.events-dance-filter {
  display: grid;
  gap: .45rem;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.multi-select {
  position: relative;
}

.multi-select summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 0 .9rem;
}

.multi-select summary::-webkit-details-marker {
  display: none;
}

.multi-select summary::after {
  color: var(--brand);
  content: "⌄";
  font-weight: 900;
}

.multi-select[open] summary::after {
  content: "⌃";
}

.multi-select-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  gap: .55rem;
  max-height: 260px;
  overflow: auto;
  border: 1px solid #ded6ca;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 18px 36px rgba(24, 51, 46, .14);
  padding: .75rem;
}

.schools-search-panel .multi-select-panel .check-line,
.events-search-panel .multi-select-panel .check-line,
.partner-search-panel .multi-select-panel .check-line {
  display: flex;
  flex-direction: row;
  gap: .65rem;
  align-items: center;
  justify-content: flex-start;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 800;
}

.schools-search-panel .multi-select-panel .check-line input,
.events-search-panel .multi-select-panel .check-line input,
.partner-search-panel .multi-select-panel .check-line input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
}

.schools-search-panel .multi-select-panel .check-line span,
.events-search-panel .multi-select-panel .check-line span,
.partner-search-panel .multi-select-panel .check-line span {
  min-width: 0;
}

.schools-search-panel .btn {
  min-height: 46px;
  justify-content: center;
}

.schools-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.4rem;
}

.schools-toolbar p {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 800;
  text-align: center;
}

.schools-toolbar form {
  justify-self: end;
}

.schools-toolbar label {
  display: flex;
  gap: .6rem;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.schools-view-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.schools-view-toggle span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid #e9e2d8;
  border-radius: 8px;
  background: #fff;
  padding: .45rem .75rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.schools-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.school-empty-state {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid #e5d8c8;
  border-radius: 12px;
  background: linear-gradient(135deg, #fffaf3, #edf7f1);
  padding: 1.3rem;
}

.school-empty-state img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.school-empty-state h2 {
  margin: 0 0 .25rem;
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.school-empty-state p {
  margin: 0;
  color: #53645f;
  line-height: 1.55;
}

.school-empty-state .actions {
  justify-content: flex-end;
}

.school-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #e9e2d8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 51, 46, .08);
}

.school-card-media {
  position: relative;
  min-height: 190px;
}

.school-card-media > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6363;
  object-fit: cover;
}

.school-card-media > span {
  position: absolute;
  left: 1rem;
  bottom: -24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #ead8c0;
  border-radius: 10px;
  background: #fff7ea;
  box-shadow: 0 10px 28px rgba(24, 51, 46, .12);
}

.school-card-media > span img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.school-card-body {
  display: grid;
  gap: .75rem;
  padding: 2rem 1rem 1rem;
}

.school-card-kicker {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 900;
}

.school-card h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.school-card p {
  margin: 0;
}

.school-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.school-chip-list span {
  border-radius: 999px;
  background: #edf5ef;
  color: var(--brand-dark);
  padding: .35rem .65rem;
  font-size: .86rem;
  font-weight: 800;
}

.school-feature-list {
  display: grid;
  gap: .5rem;
  margin: 0;
}

.school-feature-list div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: .45rem;
  align-items: center;
}

.school-feature-list dt,
.school-feature-list dd {
  margin: 0;
}

.school-feature-list img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.school-card-btn {
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
}

.schools-submit-band {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  border: 1px solid #efe5d6;
  border-radius: 12px;
  background: #f6eee2;
  padding: 1.1rem 1.3rem;
}

.schools-submit-band > div {
  display: flex;
  gap: .9rem;
  align-items: center;
}

.schools-submit-band img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.schools-submit-band h2,
.schools-submit-band p {
  margin: 0;
}

.partner-search-page {
  background: #fbfaf6;
  padding: 1.25rem 0 2rem;
}

.partner-search-hero {
  border: 1px solid #e9e2d8;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: #fff;
  padding: 1.35rem 1.6rem 0;
}

.partner-search-hero h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.partner-search-hero p {
  margin: .45rem 0 0;
  color: var(--muted);
}

.partner-search-panel {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) minmax(220px, 1.2fr) minmax(170px, 1fr);
  gap: 1rem;
  align-items: end;
  border: 1px solid #e9e2d8;
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #fff;
  padding: 1.2rem 1.6rem 1.6rem;
  box-shadow: 0 16px 42px rgba(24, 51, 46, .08);
}

.partner-search-panel > * {
  min-width: 0;
  position: relative;
}

.partner-search-panel label,
.partner-more-filters label,
.partner-age-row label {
  display: grid;
  gap: .35rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.partner-dance-filter {
  display: grid;
  gap: .35rem;
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.partner-dance-filter legend {
  color: var(--brand-dark);
  font-weight: 800;
}

.partner-role-control {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e4ddd2;
  border-radius: 8px;
  padding: 0;
  position: relative;
}

.partner-role-control legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.partner-role-control label {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-right: 1px solid #e4ddd2;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 900;
  cursor: pointer;
}

.partner-role-control label:last-child {
  border-right: 0;
}

.partner-role-control input {
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.partner-role-control input:checked + span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--brand);
  color: #fff;
}

.partner-age-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.range-pair {
  --range-min: 0%;
  --range-max: 100%;
  display: grid;
  gap: .55rem;
}

.range-pair-head {
  align-items: baseline;
  color: var(--brand-dark);
  display: flex;
  font-weight: 800;
  gap: .75rem;
  justify-content: space-between;
}

.range-pair-head strong {
  color: var(--brand);
  font-size: .95rem;
}

.range-pair-control {
  cursor: pointer;
  height: 34px;
  position: relative;
  touch-action: none;
}

.range-pair-control::before,
.range-pair-control::after {
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 14px;
}

.range-pair-control::before {
  background: #d9e3de;
}

.range-pair-control::after {
  background: var(--brand);
  left: var(--range-min);
  right: calc(100% - var(--range-max));
}

.range-pair-thumb {
  background: #5f6270;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(20, 47, 43, .28);
  cursor: pointer;
  height: 22px;
  padding: 0;
  position: absolute;
  top: 6px;
  transform: translateX(-50%);
  touch-action: none;
  width: 22px;
  z-index: 2;
}

.partner-more-filters {
  align-self: end;
  grid-column: 1 / -1;
}

.partner-more-filters summary {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--brand);
  cursor: pointer;
  font-weight: 900;
}

.partner-more-filters > div {
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(260px, 1fr) minmax(320px, 1.5fr);
  gap: 1.6rem 2.2rem;
  grid-column: 1 / -1;
  margin-top: 1.35rem;
  align-items: end;
}

.partner-school-filter {
  grid-column: span 1;
}

.partner-search-submit {
  min-height: 52px;
  justify-content: center;
}

.partner-results-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
}

.partner-results-sort label {
  display: flex;
  gap: .7rem;
  align-items: center;
  color: var(--brand-dark);
  font-weight: 800;
}

.partner-results-sort select {
  min-width: 230px;
}

.partner-results-head > div {
  display: flex;
  gap: .7rem;
  align-items: center;
  color: var(--brand-dark);
}

.partner-results-head img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.partner-results-head a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1rem;
}

.partner-result-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid #e9e2d8;
  border-radius: 12px;
  background: #fff;
  padding: .9rem;
  box-shadow: 0 16px 42px rgba(24, 51, 46, .08);
}

.partner-result-image {
  position: relative;
  display: block;
  min-height: 188px;
  overflow: hidden;
  border-radius: 8px;
  background: #edf5ef;
}
.partner-result-image-lock { position:absolute; z-index:3; right:9px; bottom:9px; left:9px; min-height:34px; padding:5px 8px; border:1px solid rgba(21,82,67,.13); border-radius:9px; display:flex; align-items:center; justify-content:center; gap:6px; color:#245b4e; background:rgba(255,255,255,.94); box-shadow:0 5px 14px rgba(18,60,50,.13); backdrop-filter:blur(4px); }
.partner-result-image-lock i { width:23px; height:23px; flex:0 0 23px; border-radius:50%; display:grid; place-items:center; background:#edf7f3; font-style:normal; font-size:12px; }
.partner-result-image-lock small { overflow:hidden; font-size:10px; font-weight:800; line-height:1.15; text-align:center; text-overflow:ellipsis; white-space:nowrap; }

.partner-result-photo {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
}

.partner-result-photo.is-placeholder {
  padding: 1rem;
  object-fit: contain;
}

.partner-result-body {
  display: grid;
  gap: .6rem;
}

.partner-result-body h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.partner-result-body p {
  margin: 0;
  color: var(--text);
}

.partner-result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.partner-result-chips span {
  border-radius: 999px;
  background: #fde6d8;
  color: #a3543d;
  padding: .35rem .6rem;
  font-size: .85rem;
  font-weight: 900;
}

.partner-result-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  align-self: end;
}

.partner-result-actions .btn {
  min-height: 42px;
  justify-content: center;
  padding-inline: .6rem;
}

.events-page {
  background: #fbfaf6;
  padding-bottom: 2rem;
}

.events-hero-strip {
  min-height: 20px;
  /*background: url("/assets/img/events-list-hero.jpg") center / cover no-repeat;*/
}

.event-kind-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
}

.event-kind-tabs a {
  display: grid;
  gap: .2rem;
  border: 1px solid #dfdfd8;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-dark);
  padding: .9rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(24, 51, 46, .06);
}

.event-kind-tabs a.active {
  border-color: var(--brand);
  background: #e9f4f0;
  box-shadow: 0 0 0 1px var(--brand) inset;
}

.event-kind-tabs strong { font-size: 1.05rem; }
.event-kind-tabs span { color: var(--muted); font-size: .88rem; }

.event-kind-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin: 0;
  border: 0;
  padding: 0;
}

.event-kind-selector legend {
  grid-column: 1 / -1;
  margin-bottom: .5rem;
  color: var(--brand-dark);
  font-weight: 900;
}

.event-kind-option {
  display: block;
  position: relative;
  cursor: pointer;
}

.event-kind-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.event-kind-option span {
  display: grid;
  gap: .3rem;
  min-height: 100%;
  border: 1px solid #d7dfdb;
  border-radius: 10px;
  background: #fff;
  padding: .85rem 1rem;
}

.event-kind-option strong { color: var(--brand-dark); }
.event-kind-option small { color: var(--muted); line-height: 1.4; }
.event-kind-option input:checked + span {
  border-color: var(--brand);
  background: #e9f4f0;
  box-shadow: 0 0 0 1px var(--brand) inset;
}

.event-kind-option input:focus-visible + span {
  outline: 3px solid rgba(7, 94, 76, .2);
  outline-offset: 2px;
}

.event-kind-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: #e6f3ef;
  color: #176b58;
  padding: .28rem .58rem;
  font-size: .75rem;
  font-weight: 900;
}

.event-kind-badge.is-workshop {
  background: #fff0df;
  color: #a65a20;
}

.events-search-wrap {
  margin-top: -58px;
}

.events-search-panel {
  display: grid;
  grid-template-columns: minmax(170px, 1.2fr) 120px 150px 150px minmax(190px, 1fr) 140px auto;
  gap: .9rem;
  align-items: end;
  border: 1px solid #e9e2d8;
  border-radius: 14px;
  background: #fff;
  padding: 1.1rem;
  box-shadow: 0 18px 45px rgba(24, 51, 46, .14);
}

.events-search-panel label {
  display: grid;
  gap: .35rem;
  color: var(--brand-dark);
  font-weight: 800;
}

.events-search-panel .btn {
  min-height: 48px;
  justify-content: center;
}

@media (min-width: 721px) and (max-width: 1135px) {
  .events-search-panel {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .events-search-panel > :nth-child(1) {
    grid-column: span 3;
  }

  .events-search-panel > :nth-child(2) {
    grid-column: span 2;
  }

  .events-search-panel > :nth-child(3) {
    grid-column: span 3;
  }

  .events-search-panel > :nth-child(4) {
    grid-column: span 4;
  }

  .events-search-panel > :nth-child(5) {
    grid-column: span 5;
  }

  .events-search-panel > :nth-child(6) {
    grid-column: span 3;
  }

  .events-search-panel > :nth-child(7) {
    grid-column: span 4;
  }
}

@media (max-width: 720px) {
  .event-kind-tabs,
  .event-kind-selector { grid-template-columns: 1fr; }
}

@media (min-width: 721px) and (max-width: 880px) {
  .schools-search-panel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .schools-search-panel > :nth-child(1) {
    grid-column: span 2;
  }

  .schools-search-panel > :nth-child(2) {
    grid-column: span 1;
  }

  .schools-search-panel > :nth-child(3) {
    grid-column: span 3;
  }

  .schools-search-panel > :nth-child(4),
  .schools-search-panel > :nth-child(5) {
    grid-column: span 3;
  }
}

.events-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: 2.2rem;
  padding: .7rem 0;
}

.events-trust-row div {
  display: grid;
  grid-template-columns: 40px minmax(130px, 1fr);
  gap: .75rem;
  align-items: center;
  min-width: 0;
}

.events-trust-row img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.events-trust-row strong,
.events-trust-row span {
  display: block;
}

.events-trust-row strong {
  color: var(--brand-dark);
  font-size: .95rem;
  line-height: 1.15;
  white-space: nowrap;
}

.events-trust-row span {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.25;
  white-space: nowrap;
}

.events-list-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
}

.events-list-head h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.45rem;
}

.events-list-head form {
  justify-self: end;
}

.events-list-head label {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.events-date-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.events-date-tabs a {
  border: 1px solid #e9e2d8;
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  padding: .45rem .7rem;
  font-weight: 800;
  text-decoration: none;
}

.events-date-tabs a.active {
  border-color: var(--brand);
  background: #e6f3f1;
  color: var(--brand);
}

.events-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.event-empty-state {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid #e5d8c8;
  border-radius: 12px;
  background: linear-gradient(135deg, #fffaf3, #edf7f1);
  padding: 1.3rem;
}

.event-empty-state img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  visibility: hidden;
}

.event-empty-state h2 {
  margin: 0 0 .25rem;
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.event-empty-state p {
  margin: 0;
  color: #53645f;
  line-height: 1.55;
}

.event-empty-state .actions {
  justify-content: flex-end;
}

.event-list-card {
  overflow: hidden;
  border: 1px solid #e9e2d8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 51, 46, .08);
}

.event-list-image {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
}

.event-list-image img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.event-list-image time {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: grid;
  width: 64px;
  height: 74px;
  place-items: center;
  border-radius: 10px;
  background: #c85f3b;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.event-list-image time strong {
  font-size: 2rem;
}

.event-list-body {
  display: grid;
  gap: .8rem;
  padding: 1rem;
}

.event-list-body h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.event-list-body p {
  margin: 0;
}

.event-list-meta {
  display: flex;
  gap: .45rem;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.event-list-meta img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.event-list-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.event-list-chips span {
  border-radius: 999px;
  background: #fde6d8;
  color: #a3543d;
  padding: .35rem .6rem;
  font-size: .85rem;
  font-weight: 900;
}

.event-list-footer {
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}

.event-list-footer div {
  display: grid;
  gap: .15rem;
}

.event-list-footer small {
  color: var(--muted);
  font-weight: 700;
}

.event-list-footer span {
  color: #a3543d;
  font-weight: 900;
}

.events-submit-band {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
  border: 1px solid #f0d5c7;
  border-radius: 14px;
  background: #fde9df;
  padding: 1.2rem 1.4rem;
}

.events-submit-band > div {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.events-submit-band img {
  width: 92px;
  height: 70px;
  object-fit: contain;
}

.events-submit-band h2,
.events-submit-band p {
  margin: 0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tabs a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  padding: .45rem .75rem;
  text-decoration: none;
}

.tabs a.active {
  border-color: var(--brand);
  background: #e6f3f1;
  color: var(--brand-dark);
  font-weight: 800;
}

.report-head {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.list-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}

.list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.wide-form {
  max-width: 820px;
}

.registration-form {
  gap: 1.1rem;
}

.registration-choice {
  display: grid;
  gap: .8rem;
  border: 0;
  margin: 0;
  padding: 0;
}

.registration-choice legend {
  margin-bottom: .35rem;
  color: var(--brand-dark);
  font-weight: 900;
}

.registration-choice label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  border: 1px solid #e9e2d8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: .85rem;
}

.registration-choice input {
  margin-top: .25rem;
}

.registration-choice span {
  display: grid;
  gap: .15rem;
}

.registration-choice small {
  color: var(--muted);
  font-weight: 600;
}

.registration-section {
  display: grid;
  gap: 1rem;
  border: 1px solid #e9e2d8;
  border-radius: 12px;
  background: #fbfaf6;
  padding: 1rem;
}

.registration-section[hidden] {
  display: none;
}

.registration-section h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.35rem;
}

.registration-consents {
  display: grid;
  gap: .85rem;
  border-top: 1px solid #e5ded4;
  padding-top: 1.2rem;
}

.registration-consents h2,
.registration-consents p {
  margin: 0;
}

.registration-consents h2 {
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.registration-consent-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  border: 1px solid #e5ded4;
  border-radius: 10px;
  background: #fff;
  padding: .9rem 1rem;
  cursor: pointer;
}

.registration-consent-check.is-newsletter {
  border-color: #cfe2da;
  background: #f1f8f5;
}

.registration-consent-check input {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--brand);
}

.registration-consent-check span {
  line-height: 1.55;
}

.registration-submit {
  width: min(100%, 260px);
  min-height: 48px;
  font-size: 1rem;
}

.profile-tournament-section {
  border: 1px solid #d8e5df;
  border-radius: 10px;
  background: #f4f9f7;
  padding: .9rem 1rem;
}

.profile-tournament-section summary {
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 900;
}

.profile-tournament-section > p {
  margin: .75rem 0;
  color: var(--muted);
  font-size: .9rem;
}

.partner-tournament-filter {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  min-width: 0;
  margin: 0;
  border: 1px solid #d8e5df;
  border-radius: 9px;
  background: #f4f9f7;
  padding: .85rem;
}

.partner-tournament-filter legend {
  color: var(--brand-dark);
  font-weight: 900;
  padding: 0 .3rem;
}

.partner-tournament-filter label {
  display: grid;
  gap: .35rem;
}

.partner-tournament-chips span {
  border-color: #d7b27d;
  background: #fff7eb;
  color: #86571f;
}

@media (max-width: 620px) {
  .partner-tournament-filter {
    grid-template-columns: 1fr;
  }
}

.profile-form-section {
  display: grid;
  gap: 1rem;
  border: 1px solid #e9e2d8;
  border-radius: 12px;
  background: #fffdf8;
  padding: 1.2rem;
}

.profile-form-section:nth-of-type(even) {
  background: #f7fbf8;
}

.profile-form-section-head {
  display: grid;
  gap: .2rem;
  border-bottom: 1px solid #eee8df;
  padding-bottom: .85rem;
}

.profile-form-section-head h2 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.profile-form-section-head p {
  margin: 0;
  color: var(--muted);
}

.profile-subsection {
  display: grid;
  gap: .75rem;
  border: 1px dashed #d8cfc2;
  border-radius: 10px;
  margin: 0;
  padding: 1rem;
}

.profile-subsection legend {
  color: var(--brand-dark);
  font-weight: 900;
  padding: 0 .35rem;
}

.form-row,
.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: end;
}

.event-location-row {
  align-items: start;
}

.check-line {
  display: flex;
  gap: .65rem;
  align-items: center;
  font-weight: 600;
}

.check-line input {
  width: auto;
  min-height: auto;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .65rem;
  margin-top: .75rem;
}

.dance-level-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: .75rem;
}

.dance-level-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.image-cropper {
  display: grid;
  gap: 12px;
  max-width: 460px;
}

.image-cropper[hidden] {
  display: none;
}

.image-cropper canvas {
  aspect-ratio: 1;
  background: #eef5f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: move;
  max-width: 100%;
  touch-action: none;
  user-select: none;
  width: 100%;
}

.event-image-cropper {
  max-width: 720px;
}

.event-image-cropper canvas {
  aspect-ratio: 16 / 9;
}

.school-image-edit {
  display: grid;
  gap: .9rem;
  border: 1px solid #e9e2d8;
  border-radius: 12px;
  background: #fbfaf6;
  padding: 1rem;
}

.school-image-edit > div:first-child {
  display: grid;
  gap: .55rem;
}

.school-image-edit img {
  display: block;
  width: min(100%, 520px);
  aspect-ratio: 1.6363;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
}

.school-image-cropper {
  max-width: 720px;
}

.school-image-cropper canvas {
  aspect-ratio: 1.6363 / 1;
}

.is-derived-field {
  background: #f1f5f2;
  cursor: not-allowed;
}

.mt {
  margin-top: 1rem;
}

.centered-text {
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.school-detail-page {
  background: #fbfaf6;
  padding: 1rem 0 2rem;
}

.school-detail-top {
  margin-bottom: 1rem;
}

.school-back-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.school-detail-hero,
.school-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .85fr);
  gap: 1.4rem;
  align-items: start;
}

.school-detail-grid {
  margin-top: 1.4rem;
}

.school-detail-media,
.school-summary-card,
.school-panel {
  border: 1px solid #e9e2d8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 51, 46, .08);
}

.school-detail-media {
  position: relative;
  overflow: hidden;
}

.school-detail-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.6363;
  object-fit: cover;
}

.school-image-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  background: rgba(17, 99, 79, .92);
  color: #fff;
  padding: .42rem .7rem;
  font-size: .85rem;
  font-weight: 800;
}

.school-image-badge img,
.school-contact-list img,
.school-feature-icons img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.school-summary-card,
.school-panel {
  padding: 1.45rem;
}

.school-summary-head {
  display: flex;
  gap: 1rem;
  align-items: start;
  justify-content: space-between;
}

.school-summary-head h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.school-summary-head p {
  margin: .5rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.school-heart-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #edc9bd;
  border-radius: 50%;
  background: #fff3ef;
  cursor: pointer;
}

.school-heart-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.school-contact-list {
  display: grid;
  gap: .9rem;
  margin: 1.25rem 0;
}

.school-contact-list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
}

.school-contact-list dt,
.school-contact-list dd {
  margin: 0;
}

.school-contact-list dd {
  overflow-wrap: anywhere;
}

.school-hours-box {
  margin: .25rem 0 1rem;
  border-radius: 12px;
  background: #f7efe3;
  padding: 1rem;
}

.school-hours-box h2 {
  margin: 0 0 .6rem;
  color: var(--brand-dark);
  font-size: 1rem;
}

.school-hours-box p {
  margin: 0;
  color: var(--text);
}





.school-wide-btn {
  grid-column: 1 / -1;
}

.school-panel h2,
.school-panel h3 {
  margin-top: 0;
  color: var(--brand-dark);
}

.school-panel p {
  overflow-wrap: anywhere;
}

.school-about-panel {
  background: linear-gradient(135deg, #fff, #f7efe3);
}

.school-feature-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.3rem;
}

.school-feature-icons span {
  display: grid;
  gap: .45rem;
  justify-items: center;
  color: var(--brand-dark);
  font-size: .85rem;
  font-weight: 800;
  text-align: center;
}

.school-detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.school-detail-chip-list span {
  border-radius: 10px;
  background: #eef6f1;
  color: var(--brand-dark);
  padding: .55rem .8rem;
  font-weight: 850;
}

.school-detail-chip-list.soft span {
  background: #f5efe5;
}

.school-panel-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.school-panel-head h2 {
  margin: 0;
}

.school-event-list {
  display: grid;
  overflow: hidden;
  border: 1px solid #eee6dc;
  border-radius: 12px;
}

.school-event-row {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: .9rem;
  border-bottom: 1px solid #eee6dc;
  color: var(--text);
  text-decoration: none;
}

.school-event-row:last-child {
  border-bottom: 0;
}

.school-event-row:hover {
  background: #f7fbf7;
}

.school-event-date {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: 8px;
  background: #dfeee7;
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
}

.school-event-row small {
  display: block;
  margin-top: .15rem;
  color: var(--muted);
}

.school-event-row em {
  border-radius: 999px;
  background: #f5efe5;
  padding: .35rem .65rem;
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}


label {
  display: grid;
  gap: .35rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: .7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

input[type="range"] {
  min-height: 34px;
  padding-inline: 0;
  accent-color: var(--brand);
}

.range-value {
  display: inline-flex;
  min-width: 2.2rem;
  justify-content: center;
  border-radius: 999px;
  background: #eef6f1;
  color: var(--brand-dark);
  padding: .1rem .45rem;
  font-weight: 900;
}

.notice {
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(720px, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: .25rem 0 0;
  color: var(--muted);
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .75rem;
}

.template-html-preview {
  width: 100%;
  min-height: 320px;
  max-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.error {
  border-color: var(--danger);
  color: var(--danger);
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    padding: 1rem;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 1rem;
    left: 1rem;
    z-index: 45;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: 0 18px 42px rgba(24, 51, 46, .16);
    padding: .75rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    border-radius: 8px;
    padding: .65rem .75rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #f3f7f4;
  }

  .home-hero {
    min-height: auto;
    padding: 2rem 0 1.25rem;
    background:
      linear-gradient(180deg, rgba(251, 250, 246, .92) 0%, rgba(251, 250, 246, .82) 36%, rgba(251, 250, 246, .52) 58%, rgba(251, 250, 246, 1) 100%),
      url("/assets/img/home-hero-dance-hd.webp") 68% top / cover no-repeat;
  }

  .home-hero-inner {
    min-height: 420px;
    align-items: end;
  }

  .home-search,
  .home-choice-grid,
  .home-event-grid,
  .contact-hero,
  .contact-benefits,
  .legal-layout,
  .about-value-grid,
  .about-lower,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-dancer-grid,
  .partner-card-grid,
  .about-team > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-choice-grid {
    margin-top: 1rem;
  }

  .about-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(251, 250, 246, .72) 0%, rgba(251, 250, 246, .96) 52%, rgba(251, 250, 246, 1) 100%),
      url("/assets/img/about-hero-dance.jpg") center top / cover no-repeat;
  }

  .about-hero-inner {
    min-height: 420px;
    align-content: end;
  }

  .about-value-grid {
    margin-top: 1rem;
  }

  .home-event-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .footer-grid nav {
    border-left: 0;
    border-top: 1px solid #d9e4dc;
    padding: 1rem 0 0;
  }

  .contact-info {
    padding: 0;
  }

  .contact-card {
    order: 2;
  }

  .contact-image {
    order: 3;
    min-height: 280px;
    border-radius: 12px;
  }

  .contact-benefits div {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .partner-detail-top,
  .partner-like-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-top-actions,
  .partner-share-pill {
    width: 100%;
	gap: 0.5rem;
  }

  .partner-share-pill {
    min-width: 0;
    min-height: 37px;
    /*font-size: 1.05rem;*/
	width: 30%;
	gap: 0.1rem;
  }

  .partner-detail-layout,
  .partner-attribute-grid,
  .partner-split-section,
  .partner-detail-grid,
  .event-hero-layout,
  .event-detail-grid,
  .school-detail-hero,
  .school-detail-grid,
  .schools-search-panel,
  .schools-toolbar,
  .schools-card-grid,
  .partner-search-panel,
  .partner-result-card,
  .partner-more-filters > div,
  .events-search-panel,
  .events-trust-row,
  .events-list-head,
  .events-card-grid {
    grid-template-columns: 1fr;
  }

  .schools-hero,
  .schools-submit-band,
  .school-empty-state,
  .event-empty-state,
  .partner-results-head,
  .events-submit-band,
  .event-list-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .school-empty-state {
    grid-template-columns: 1fr;
  }

  .event-empty-state {
    grid-template-columns: 1fr;
  }

  .school-empty-state .actions,
  .event-empty-state .actions {
    justify-content: flex-start;
  }

  .schools-toolbar form {
    justify-self: stretch;
  }

  .schools-toolbar label {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-age-row,
  .partner-result-actions {
    grid-template-columns: 1fr;
  }

  .partner-result-card {
    gap: .75rem;
    padding: .7rem;
  }

  .partner-result-image,
  .partner-result-photo {
    min-height: 132px;
  }

  .partner-result-body h2 {
    font-size: 1.05rem;
  }

  .partner-role-control {
    grid-template-columns: 1fr;
  }

  .partner-role-control label {
    border-right: 0;
    border-bottom: 1px solid #e4ddd2;
  }

  .partner-role-control label:last-child {
    border-bottom: 0;
  }

  .partner-school-filter {
    grid-column: auto;
  }

  .partner-results-sort,
  .partner-results-sort label,
  .partner-results-sort select {
    width: 100%;
  }

  .partner-results-sort label {
    align-items: flex-start;
    flex-direction: column;
  }

  .events-search-wrap {
    margin-top: -42px;
  }

  .events-list-head form {
    justify-self: stretch;
  }

  .school-feature-icons,
  .school-event-row {
    grid-template-columns: 1fr;
  }

  .school-wide-btn {
    grid-column: auto;
  }

  .school-event-date {
    width: 66px;
  }

  .events-list-head label {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-split-section > div + div {
    border-left: 0;
    border-top: 1px solid #eee8df;
    padding-left: 0;
    padding-top: 1.25rem;
  }

  .partner-card-section,
  .partner-split-section {
    padding: 1.25rem;
  }

  .partner-detail-grid div {
    /*grid-template-columns: 1fr;*/
  }

  .event-summary-card h1 {
    font-size: 2rem;
  }

  .event-info-list div,
  .event-mini-list div {
    /*grid-template-columns: 1fr;*/
  }

  .meta-list div {
    grid-template-columns: 1fr;
  }

  .profile-photo-row,
  .profile-card-head,
  .list-item,
  .report-head,
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .improvement-form {
    grid-template-columns: 1fr;
  }
  
  .trust-item img {
  width: 40px;
}
}
/* Favorites dashboard */
.favorites-summary { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin:8px 0 44px; }
.favorites-summary-card { min-height:112px; padding:22px; border-radius:14px; display:flex; align-items:center; gap:16px; color:#153d36; text-decoration:none; }
.favorites-summary-card.is-profile { background:linear-gradient(110deg,#e7f5f1,#f4faf8); }
.favorites-summary-card.is-school { background:linear-gradient(110deg,#fbf1df,#fdf8ef); }
.favorites-summary-card.is-event { background:linear-gradient(110deg,#fce9e2,#fff4f0); }
.favorites-summary-icon,.favorites-section h2 span { width:50px; height:50px; border-radius:50%; display:grid; place-items:center; font-size:28px; background:#d8eee7; }
.favorites-summary-card.is-school .favorites-summary-icon,.favorites-section.is-school h2 span { background:#f8ead3; color:#b8782e; }
.favorites-summary-card.is-event .favorites-summary-icon,.favorites-section.is-event h2 span { background:#f9ddd3; color:#d9523b; }
.favorites-summary-card small,.favorites-summary-card strong { display:block; }
.favorites-summary-card small { font-size:14px; margin-bottom:2px; }
.favorites-summary-card strong { font-size:25px; }
.favorites-summary-card b { margin-left:auto; font-size:25px; font-weight:400; }
.favorites-section { margin:0 0 44px; }
.favorites-section h2 { display:flex; align-items:center; gap:10px; margin:0 0 18px; color:#0d493f; font-size:24px; }
.favorites-section h2 span { width:42px; height:42px; font-size:22px; }
.favorites-list { display:grid; gap:16px; }
.favorite-row { position:relative; min-height:126px; padding:24px 26px 24px 34px; border:1px solid #dddeda; border-radius:12px; background:#fff; box-shadow:0 8px 22px rgba(26,48,42,.09); display:flex; align-items:center; justify-content:space-between; gap:24px; overflow:hidden; }
.favorite-row::before { content:""; position:absolute; inset:0 auto 0 0; width:7px; background:#9ed8ca; }
.favorites-section.is-school .favorite-row::before { background:#efd19d; }
.favorites-section.is-event .favorite-row::before { background:#f2a08d; }
.favorite-profile-main,.favorite-school-main,.favorite-event-main { min-width:0; display:flex; align-items:center; gap:24px; }
.favorite-profile-photo { width:86px; height:86px; flex:0 0 86px; border-radius:50%; overflow:hidden; background:#dceee8; display:grid; place-items:center; color:#146250; font-size:30px; }
.favorite-profile-photo img { width:100%; height:100%; object-fit:cover; }
.favorite-copy h3 { margin:0 0 7px; font-size:20px; color:#103f37; }
.favorite-copy p { margin:4px 0; color:#64736f; }
.favorite-location { font-size:14px; }
.favorite-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:16px; }
.favorite-tags span,.favorite-place-badge { display:inline-flex; padding:5px 10px; border-radius:999px; background:#e4f3ed; color:#15614f; font-size:12px; font-weight:700; }
.favorite-object-icon { width:76px; height:76px; border-radius:50%; display:grid; place-items:center; flex:0 0 76px; background:#fbf1e2; color:#bd7e32; font-size:38px; }
.favorite-place-badge { background:#f7f0df; color:#354d47; padding:4px 8px; margin-bottom:8px; }
.favorite-date { width:86px; flex:0 0 86px; overflow:hidden; border:1px solid #efd8d0; border-radius:9px; text-align:center; background:#fff5f1; }
.favorite-date span { display:block; padding:10px; background:#d95137; color:#fff; font-size:21px; }
.favorite-date strong,.favorite-date small { display:block; padding-top:8px; }
.favorite-date small { padding:2px 0 9px; }
.favorite-tags.is-event span { background:#fde7df; color:#c84932; }
.favorite-actions { display:flex; align-items:center; justify-content:flex-end; gap:12px; flex-wrap:wrap; }
.favorite-actions form { margin:0; }
.favorite-btn { min-height:43px; padding:10px 17px; border:1px solid transparent; border-radius:7px; display:inline-flex; align-items:center; justify-content:center; gap:6px; font:inherit; font-weight:700; text-decoration:none; cursor:pointer; background:#fff; white-space:nowrap; }
.favorite-btn.is-profile { background:#075c49; color:#fff; }
.favorite-btn.is-school { background:linear-gradient(100deg,#b4772b,#d69a48); color:#fff; }
.favorite-btn.is-event-solid { background:#d65439; color:#fff; }
.favorite-btn.is-event,.favorite-btn.is-remove { border-color:#dc947d; color:#cf573d; }
.favorites-empty { padding:24px; border:1px dashed #cdd9d5; border-radius:12px; color:#667872; }

/* Stadtseiten und SEO-Tanzorte */
.city-breadcrumb { padding-top:24px; display:flex; flex-wrap:wrap; gap:8px; align-items:center; color:#6d7e78; font-size:14px; }
.city-breadcrumb a { color:#17614f; text-decoration:none; }
.city-hero { margin-top:24px; padding:42px; border:1px solid #dce7e2; border-radius:18px; background:linear-gradient(135deg,#eef8f4 0%,#fffaf4 100%); box-shadow:0 12px 32px rgba(24,58,49,.07); }
.city-hero h1 { margin:5px 0 12px; color:#123f36; font-size:clamp(34px,5vw,56px); line-height:1.05; }
.city-hero > p:not(.city-kicker) { max-width:760px; margin:0; color:#526a63; font-size:18px; line-height:1.65; }
.city-kicker { margin:0; color:#a66c2c; font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.city-actions { margin-top:24px; display:flex; flex-wrap:wrap; gap:10px; }
.city-stats { margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.city-stats div { padding:20px; border:1px solid #dfe7e3; border-radius:13px; display:grid; gap:3px; background:#fff; box-shadow:0 7px 20px rgba(26,52,45,.06); }
.city-stats strong { color:#11614f; font-size:30px; }
.city-stats span { color:#667872; }
.city-section { margin-top:48px; }
.city-section-heading { margin-bottom:18px; display:flex; align-items:end; justify-content:space-between; gap:20px; }
.city-section-heading h2,.city-other-places h2 { margin:5px 0 0; color:#153f36; }
.city-section-heading > a { color:#12614e; font-weight:750; }
.city-style-links { display:flex; flex-wrap:wrap; gap:9px; }
.city-style-links a { padding:9px 14px; border:1px solid #cfe0da; border-radius:999px; color:#17614f; background:#fff; font-weight:700; text-decoration:none; }
.city-style-links a:hover,.city-style-links a:focus-visible { border-color:#17614f; background:#e9f5f0; }
.city-style-links .is-all { color:#fff; background:#17614f; }
.city-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; }
.city-result-card { min-width:0; padding:19px; border:1px solid #dde5e1; border-radius:13px; display:flex; flex-direction:column; gap:6px; color:#294a42; background:#fff; box-shadow:0 7px 20px rgba(24,50,43,.06); text-decoration:none; transition:transform .18s ease,box-shadow .18s ease; }
.city-result-card:hover { transform:translateY(-2px); box-shadow:0 11px 26px rgba(24,50,43,.11); }
.city-result-card strong { color:#153f36; font-size:17px; }
.city-result-card span,.city-result-card small { color:#6c7b76; }
.city-result-icon { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; color:#17614f!important; background:#e3f2ec; font-size:24px; }
.city-result-card-image { padding:0 0 17px; overflow:hidden; }
.city-result-card-image img { width:100%; aspect-ratio:16/9; display:block; object-fit:cover; background:#edf3f0; }
.city-result-card-image strong,.city-result-card-image span,.city-result-card-image small { margin-right:17px; margin-left:17px; }
.city-empty { padding:24px; border:1px dashed #cddbd6; border-radius:12px; color:#667872; background:#fbfdfc; }
.city-other-places { margin-bottom:58px; padding:28px; border-radius:14px; background:#f3f8f6; }
.city-other-places .city-style-links { margin-top:18px; }
.city-directory-hero { margin-bottom:26px; }
.city-directory { margin-bottom:60px; display:grid; gap:11px; }
.city-directory-card { padding:19px 21px; border:1px solid #dce5e1; border-radius:12px; display:grid; grid-template-columns:minmax(220px,1fr) minmax(280px,auto) auto; align-items:center; gap:20px; color:#294a42; background:#fff; box-shadow:0 5px 16px rgba(24,50,43,.06); text-decoration:none; }
.city-directory-card > span:first-child { display:grid; gap:3px; }
.city-directory-card strong { color:#153f36; font-size:18px; }
.city-directory-card small,.city-directory-counts { color:#6b7d77; }
.city-directory-card > span:last-child { color:#17614f; font-size:22px; }
.city-not-found { margin-top:50px; }
.home-city-links { margin-top:42px; padding:28px; border:1px solid #dce7e2; border-radius:16px; display:grid; grid-template-columns:minmax(250px,.8fr) minmax(320px,1.2fr); align-items:center; gap:28px; background:#f5faf8; }
.home-city-links h2 { margin:5px 0 8px; color:#153f36; }
.home-city-links p:last-child { margin:0; color:#667872; }

@media (max-width: 800px) {
  .city-hero { padding:28px 22px; }
  .city-stats { grid-template-columns:1fr; }
  .city-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .city-directory-card { grid-template-columns:1fr auto; }
  .city-directory-counts { grid-column:1/-1; }
  .home-city-links { grid-template-columns:1fr; }
}

@media (max-width: 520px) {
  .city-actions .btn { width:100%; }
  .city-section-heading { align-items:start; flex-direction:column; }
  .city-card-grid { grid-template-columns:1fr; }
  .city-directory-card { grid-template-columns:1fr auto; gap:8px 14px; }
}

/* SEO-Landingpages */
.seo-landing-page { padding-bottom:60px; }
.seo-landing-hero { margin-top:22px; padding:38px; border:1px solid #dce7e2; border-radius:18px; display:grid; grid-template-columns:minmax(0,1fr) 280px; gap:38px; align-items:center; background:linear-gradient(135deg,#eef8f4,#fff9f2); box-shadow:0 12px 32px rgba(24,58,49,.07); }
.seo-landing-hero h1 { margin:6px 0 13px; color:#123f36; font-size:clamp(34px,5vw,54px); line-height:1.08; }
.seo-landing-hero > div > p:not(.city-kicker) { max-width:750px; color:#526a63; font-size:18px; line-height:1.65; }
.seo-landing-hero aside { padding:22px; border-radius:13px; display:grid; gap:10px; color:#426057; background:#fff; box-shadow:0 7px 20px rgba(26,52,45,.07); }
.seo-landing-hero aside strong { margin-bottom:3px; color:#12614e; font-size:18px; }
.seo-landing-hero aside span::before { content:'✓'; margin-right:8px; color:#aa6f2d; font-weight:800; }
.seo-landing-section { margin-top:48px; }
.seo-copy-grid { margin-top:48px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; }
.seo-copy-grid article { padding:24px; border:1px solid #dfe7e3; border-radius:13px; background:#fff; box-shadow:0 6px 18px rgba(24,50,43,.055); }
.seo-copy-grid h2 { margin:0 0 10px; color:#153f36; font-size:20px; }
.seo-copy-grid p { margin:0; color:#61736d; line-height:1.65; }
.seo-faq-section { margin-top:52px; }
.seo-faq-section h2 { margin:5px 0 17px; color:#153f36; }
.seo-faq-list { display:grid; gap:9px; }
.seo-faq-list details { border:1px solid #dae4df; border-radius:10px; background:#fff; }
.seo-faq-list summary { padding:16px 18px; color:#1a4c41; font-weight:750; cursor:pointer; }
.seo-faq-list p { margin:0; padding:0 18px 17px; color:#61736d; line-height:1.6; }
.seo-related-links { margin-top:50px; padding:26px; border-radius:14px; display:flex; flex-wrap:wrap; align-items:center; gap:10px; background:#eef6f3; }
.seo-related-links h2 { width:100%; margin:0 0 6px; color:#153f36; }
.seo-related-links a { padding:8px 12px; border:1px solid #cbded7; border-radius:999px; color:#17614f; background:#fff; font-weight:700; text-decoration:none; }
.seo-main-copy { margin-top:52px; margin-bottom:55px; padding:30px; border:1px solid #dce7e2; border-radius:16px; background:#f7fbf9; }
.seo-main-copy > div:first-child { max-width:850px; }
.seo-main-copy h2 { margin:5px 0 10px; color:#153f36; }
.seo-main-copy p { color:#61736d; line-height:1.65; }
.seo-main-copy-grid { margin-top:22px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.seo-main-copy-grid article { padding:19px; border-radius:11px; background:#fff; }
.seo-main-copy-grid h3 { margin:0 0 8px; color:#1b4e43; }
.seo-main-copy-grid a { color:#17614f; font-weight:750; }
.events-seo-intro { padding-top:0px; padding-bottom:45px; }
.events-seo-intro h1 { margin:5px 0 9px; color:#153f36; }
.events-seo-intro > p:last-child { max-width:800px; color:#61736d; font-size:17px; line-height:1.4; }

@media (max-width: 800px) {
  .seo-landing-hero { grid-template-columns:1fr; padding:28px 22px; }
  .seo-landing-hero aside { grid-template-columns:1fr 1fr; }
  .seo-landing-hero aside strong { grid-column:1/-1; }
  .seo-copy-grid,.seo-main-copy-grid { grid-template-columns:1fr; }
}

@media (max-width: 520px) {
  .seo-landing-hero aside { grid-template-columns:1fr; }
  .seo-landing-hero aside strong { grid-column:auto; }
  .seo-main-copy { padding:22px; }
}
@media (max-width: 850px) {
  .favorites-summary { grid-template-columns:1fr; gap:12px; margin-bottom:32px; }
  .favorites-summary-card { min-height:84px; padding:15px 18px; }
  .favorite-row { align-items:flex-start; flex-direction:column; padding:22px 20px 22px 27px; }
  .favorite-actions { width:100%; justify-content:flex-start; }
}
@media (max-width: 520px) {
  .favorite-profile-main,.favorite-school-main,.favorite-event-main { align-items:flex-start; gap:14px; }
  .favorite-profile-photo { width:66px; height:66px; flex-basis:66px; }
  .favorite-object-icon { width:60px; height:60px; flex-basis:60px; }
  .favorite-date { width:70px; flex-basis:70px; }
  .favorite-btn { width:100%; }
  .favorite-actions form { width:100%; }
}

/* Vorschau für nicht angemeldete Besucher */
.guest-inline-lock { color:#9a572a !important; font-size:12px !important; font-weight:750; }
.guest-unlock-panel { position:relative; overflow:hidden; min-height:430px; padding:38px; border:1px solid #d8e7e1; border-radius:17px; text-align:center; background:linear-gradient(150deg,#f1faf6 0%,#fff 55%,#fff6ec 100%); }
.guest-unlock-panel::before { content:""; position:absolute; width:220px; height:220px; right:-95px; top:-100px; border-radius:50%; background:rgba(222,125,51,.1); }
.guest-unlock-panel > * { position:relative; z-index:1; }
.guest-unlock-icon { width:58px; height:58px; margin:0 auto 12px; border-radius:17px; display:grid; place-items:center; background:#fff; box-shadow:0 9px 25px rgba(22,70,57,.12); font-size:25px; }
.guest-unlock-panel h2 { margin:5px 0 10px; color:#123f35; font-size:clamp(25px,3vw,34px); }
.guest-unlock-panel > p:not(.city-kicker) { max-width:650px; margin-right:auto; margin-left:auto; color:#5d716b; line-height:1.6; }
.guest-profile-dance-summary { line-height:1.9 !important; }
.guest-dance-highlight { margin:0 2px; padding:3px 8px; border-radius:999px; display:inline-block; color:#9c4f35; background:#fde4d6; font-weight:850; line-height:1.35; }
.guest-public-profile-data { margin:-8px 0 32px; padding:24px; border:1px solid #dce7e2; border-radius:13px; text-align:left; background:rgba(255,255,255,.9); box-shadow:0 8px 22px rgba(25,65,54,.06); }
.guest-public-profile-data .city-kicker { margin-bottom:8px; }
.guest-public-search-text { margin:0; color:#294d44; font-size:16px; line-height:1.65; }
.guest-public-profile-data dl { margin:18px 0 0; display:flex; flex-wrap:wrap; gap:10px; }
.guest-public-profile-data dl > div { min-width:135px; padding:11px 14px; border-radius:9px; background:#edf7f3; }
.guest-public-profile-data dt { color:#6c7d77; font-size:11px; font-weight:700; text-transform:uppercase; }
.guest-public-profile-data dd { margin:3px 0 0; color:#174b3f; font-weight:800; }
.guest-faux-content { max-width:610px; margin:24px auto; padding:22px; border:1px solid #e2e9e6; border-radius:13px; display:grid; gap:11px; background:rgba(255,255,255,.82); filter:blur(1.8px); }
.guest-faux-content span { height:13px; border-radius:999px; display:block; background:linear-gradient(90deg,#c8d9d3,#edf2f0); }
.guest-faux-content span:nth-child(2) { width:84%; }.guest-faux-content span:nth-child(3) { width:67%; }.guest-faux-content span:nth-child(4) { width:76%; }
.guest-faux-content.is-compact { margin:15px 0 10px; padding:14px; gap:8px; }
.guest-faux-content.is-compact span { height:10px; }
.guest-unlock-benefits { max-width:640px; margin:0 auto 24px; padding:0; display:flex; justify-content:center; flex-wrap:wrap; gap:8px; list-style:none; }
.guest-unlock-benefits li { padding:7px 11px; border-radius:999px; color:#276151; background:#e3f2ec; font-size:12px; font-weight:700; }
.guest-unlock-benefits li::before { content:"✓ "; }
.guest-unlock-actions { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:10px; }
.guest-event-cta { margin-top:14px; padding:20px; border:1px solid #dce8e3; border-radius:14px; text-align:center; background:linear-gradient(140deg,#edf8f4,#fff8ef); }
.guest-event-cta > span { width:42px; height:42px; margin:0 auto 8px; border-radius:50%; display:grid; place-items:center; background:#fff; }
.guest-event-cta strong { display:block; color:#15483d; font-size:16px; }
.guest-event-cta p { margin:6px 0 14px; color:#647770; font-size:12px; line-height:1.45; }
.guest-event-cta > a:last-child { display:block; margin-top:10px; color:#28685a; font-size:12px; font-weight:750; }
.guest-panel-note { margin-top:13px !important; padding:10px 12px; border-radius:8px; color:#80522e !important; background:#fff7ed; font-size:12px; font-weight:750; }
.guest-info-locked { border-color:#eddbc9 !important; background:#fff9f1; }
.guest-info-locked dt,.guest-info-locked dd { color:#845632 !important; }
.guest-home-conversion { margin-top:35px; margin-bottom:35px; padding:27px 30px; border:1px solid #d8e5e0; border-radius:17px; display:flex; align-items:center; justify-content:space-between; gap:28px; background:linear-gradient(135deg,#edf8f4,#fff8ef); box-shadow:0 10px 28px rgba(20,62,51,.07); }
.guest-home-conversion > div:first-child { display:flex; align-items:flex-start; gap:16px; }
.guest-home-conversion > div:first-child > span { width:48px; height:48px; flex:0 0 48px; border-radius:14px; display:grid; place-items:center; background:#fff; box-shadow:0 6px 16px rgba(20,62,51,.1); font-size:21px; }
.guest-home-conversion h2 { margin:3px 0 6px; color:#123f35; font-size:24px; }
.guest-home-conversion p:not(.city-kicker) { max-width:690px; margin:0; color:#63766f; line-height:1.5; }
@media (max-width:760px) { .guest-unlock-panel { min-height:0; padding:27px 20px; }.guest-public-profile-data { padding:19px; }.guest-home-conversion { align-items:stretch; flex-direction:column; padding:23px; }.guest-home-conversion .guest-unlock-actions { justify-content:flex-start; } }
@media (max-width:480px) { .guest-unlock-actions { align-items:stretch; flex-direction:column; }.guest-unlock-actions .btn { width:100%; }.guest-home-conversion > div:first-child { flex-direction:column; }.guest-unlock-panel h2 { font-size:24px; }.guest-unlock-benefits { align-items:stretch; flex-direction:column; }.guest-unlock-benefits li { border-radius:9px; } }

/* Interne Nutzer-Moderation */
.admin-moderation-page { padding-bottom:64px; }
.admin-moderation-hero { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; }
.admin-moderation-hero h1 { margin:5px 0 7px; }
.admin-moderation-hero p:last-child { margin:0; color:#64756f; }
.admin-moderation-stats { margin:22px 0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:13px; }
.admin-moderation-stats article { min-height:108px; padding:20px; border:1px solid #dbe6e2; border-radius:13px; display:flex; flex-direction:column; justify-content:center; background:#fff; box-shadow:0 6px 18px rgba(25,57,48,.06); }
.admin-moderation-stats strong { color:#0e5d4c; font-size:25px; line-height:1.1; }
.admin-moderation-stats span { margin-top:5px; color:#687a74; font-size:13px; }
.admin-moderation-stats .is-status-blocked { border-color:#f0cbc3; background:#fff6f3; }
.admin-moderation-stats .is-status-blocked strong { color:#bb4936; }
.admin-moderation-private { border-color:#cfe3dc; background:#eff8f4; }
.admin-moderation-report-context { margin-top:20px; border-left:5px solid #d27a43; }
.admin-moderation-report-context h2 { margin:7px 0 0; color:#18483e; }
.admin-moderation-report-context > p { margin-bottom:0; color:#526a62; line-height:1.6; }
.admin-moderation-actions-grid { margin-top:20px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; align-items:start; }
.admin-moderation-form { min-width:0; }
.admin-moderation-form textarea { resize:vertical; }
.admin-moderation-form-head { margin:-4px 0 8px; display:flex; align-items:center; gap:13px; }
.admin-moderation-form-head > span { width:44px; height:44px; flex:0 0 44px; border-radius:12px; display:grid; place-items:center; color:#0b624f; background:#e3f2ec; font-size:22px; font-weight:900; }
.admin-moderation-form-head.is-warning > span { color:#a6502f; background:#ffeadf; }
.admin-moderation-form-head h2 { margin:0 0 3px; color:#153f36; font-size:20px; }
.admin-moderation-form-head p { margin:0; color:#71817c; font-size:12px; }
.admin-moderation-warning-btn,.admin-report-warning-btn { border-color:#c76b3c!important; color:#fff!important; background:#c76b3c!important; }
.admin-moderation-status-action { margin-top:18px; display:grid; grid-template-columns:minmax(230px,.7fr) minmax(320px,1.3fr); gap:26px; align-items:start; }
.admin-moderation-status-action h2 { margin:0 0 6px; color:#153f36; }
.admin-moderation-status-action > div p { margin:0; color:#687a74; }
.admin-moderation-block-btn { border-color:#c84e3a!important; background:#c84e3a!important; }
.admin-moderation-history { margin-top:42px; }
.admin-moderation-section-head { margin-bottom:15px; display:flex; align-items:end; justify-content:space-between; gap:20px; }
.admin-moderation-section-head h2 { margin:4px 0 0; color:#153f36; }
.admin-moderation-section-head > span { color:#71817c; }
.admin-moderation-entry { position:relative; margin-bottom:13px; overflow:hidden; }
.admin-moderation-entry::before { content:""; position:absolute; inset:0 auto 0 0; width:5px; background:#9acfc0; }
.admin-moderation-entry.is-warning::before { background:#da7944; }
.admin-moderation-entry.is-block::before { background:#ca4d3b; }
.admin-moderation-entry.is-unblock::before { background:#54a88b; }
.admin-moderation-entry-head { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.admin-moderation-entry-head h3 { margin:6px 0 0; color:#173f37; }
.admin-moderation-entry-head time { color:#788781; font-size:12px; white-space:nowrap; }
.admin-moderation-type { padding:4px 8px; border-radius:999px; color:#17604f; background:#e6f3ee; font-size:11px; font-weight:800; }
.admin-moderation-entry.is-warning .admin-moderation-type { color:#a55131; background:#ffebe1; }
.admin-moderation-entry.is-block .admin-moderation-type { color:#b23d2f; background:#ffe8e3; }
.admin-moderation-entry > p { color:#455f57; line-height:1.65; }
.admin-moderation-entry-meta { padding-top:12px; border-top:1px solid #e5ebe8; display:flex; flex-wrap:wrap; gap:8px 18px; color:#71817c; font-size:12px; }
.admin-moderation-entry-meta a { color:#17604f; font-weight:700; }
.admin-moderation-entry form { margin-top:14px; }
.admin-moderation-empty { text-align:center; color:#667872; }
.admin-user-moderation-summary { color:#a05a35; font-size:12px; font-weight:750; }
.admin-user-moderation-link { border-color:#c8ded6!important; background:#eef7f3!important; }

@media (max-width:900px) {
  .admin-moderation-stats { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .admin-moderation-actions-grid,.admin-moderation-status-action { grid-template-columns:1fr; }
}
@media (max-width:620px) {
  .admin-moderation-hero,.admin-moderation-section-head,.admin-moderation-entry-head { align-items:flex-start; flex-direction:column; }
  .admin-moderation-hero .actions,.admin-moderation-hero .btn { width:100%; }
  .admin-moderation-stats { grid-template-columns:1fr 1fr; }
  .admin-moderation-stats article { min-height:90px; padding:15px; }
  .admin-moderation-entry-head time { white-space:normal; }
}
@media (max-width:420px) {
  .admin-moderation-stats { grid-template-columns:1fr; }
}
