/* ---------- Reset & Basics ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #111827;
  background: #f3f4f6; /* helles, sauberes Grau statt Beige */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Container ---------- */

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  font-size: 1.2rem;
}

.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: #374151;
  position: relative;
  padding-bottom: 0.1rem;
}

.main-nav a:hover {
  color: #111827;
}

.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #111827;
}

/* ---------- Landing Hero (grüner Bereich) ---------- */

.landing-hero {
  background: #2f9485; /* türkises Grün wie Bubble */
  color: #fdfaf5;
  padding: 4.5rem 0 4.8rem;
}

.hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.landing-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 1.1rem;
}

.hero-subtitle {
  margin: 0 auto 2.3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 44rem;
}

/* ---------- Buttons im Hero / generell ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border-radius: 0.6rem;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid #111827;
  background: #ffffff; /* weiße Box */
  color: #111827; /* schwarze Schrift */
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.12s ease,
    color 0.12s ease;
}

.hero-buttons {
  display: inline-flex;
  gap: 1rem;
}

.btn-filled {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.btn-filled:hover {
  background: #020617;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.4);
}

.btn-outline:hover {
  background: rgba(17, 24, 39, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.25);
}

/* ---------- Support-Section (Unterstützung finden in Berlin) ---------- */

.support-section {
  background: #ffffff; /* komplett weiß, clean */
  padding: 3.5rem 0 4rem;
}

.support-section h2,
.support-section h1 {
  text-align: center;
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
}

.support-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.3rem;
  font-size: 0.98rem;
  color: #4b5563;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.support-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.support-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.support-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5563;
}

/* ---------- So funktioniert es ---------- */

.steps-section {
  background: #f9fafb; /* ganz leichtes Grau, wirkt ruhig & clean */
  padding: 3.5rem 0 3.8rem;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.steps-section h2 {
  text-align: center;
  font-size: 1.9rem;
  margin: 0 0 2rem;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.step-number {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1.5px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: #ffffff;
}

.step-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.step-content p {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5563;
}

/* ---------- Kennst du ein Angebot, das fehlt? ---------- */

.contribute-section {
  background: #e4f3ef; /* subtilere, helle Grün-Nuance */
  padding: 3.2rem 0 3.4rem;
}

.contribute-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contribute-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.contribute-inner h2 {
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

.contribute-inner p {
  font-size: 0.98rem;
  color: #374151;
  margin: 0 0 1.4rem;
}

/* ---------- Unterstütze dieses Projekt (Startseite) ---------- */

.support-cta-section {
  background: #f9fafb;
  padding: 3.2rem 0 3.4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.support-cta-inner {
  max-width: 780px;
  margin: 0 auto;
}

.support-cta-inner h2 {
  font-size: 1.9rem;
  margin: 0 0 0.9rem;
}

.support-cta-inner p {
  margin: 0 0 0.5rem;
  font-size: 0.96rem;
  color: #374151;
}

.support-cta-note {
  color: #4b5563;
}

.support-cta-actions {
  margin-top: 1.4rem;
}

/* ---------- Spenden-Seite ---------- */

.donate-hero {
  background: #e4f3ef; /* leichtes, freundliches Grün angelehnt an Hero */
  padding: 3.5rem 0 3rem;
}

.donate-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.donate-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin: 0 0 1.2rem;
  color: #111827;
}

.donate-hero p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #1f2933;
}

.donate-hint {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.donate-cta-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Abschnitt: Wie deine Spende hilft (1-2-3) */
.donate-steps {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

/* Zahlungsoptionen */
.donate-section {
  background: #ffffff;
  padding: 3rem 0 3.8rem;
}

.donate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.donate-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.donate-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.donate-card p {
  margin: 0 0 0.6rem;
  font-size: 0.92rem;
  color: #4b5563;
}

.donate-card ul {
  margin: 0.3rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.donate-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: #2563eb;
  text-decoration: none;
}

.donate-link:hover {
  text-decoration: underline;
}

/* Responsive für Spenden-Seite */
@media (max-width: 900px) {
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .donate-hero h1 {
    font-size: 2rem;
  }
}

/* ---------- Angebots-Seite: Hero & Layout ---------- */

.group-hero {
  background: #e4f3ef; /* angelehnt an Spenden-Hero, aber etwas heller */
  padding: 3rem 0 2.5rem;
}

.group-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.group-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  margin: 0 0 1.1rem;
  color: #111827;
}

.group-hero-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1f2933;
}


/* Bereich mit Filtern + Karten */
.group-section {
  background: #f3f4f6;
  padding: 2.5rem 0 3.5rem;
}
/* Ergebnis-Bereich mit Karten */

.group-results {
  background: #e4f3ef;           /* helles Grün, spricht an */
  padding: 2.8rem 0 3.6rem;
}

.group-results h2 {
  font-size: 1.7rem;
  margin: 0 0 1.5rem;
}


/* Filter-Box */
.filters {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.3rem 1.5rem 1.6rem;
  margin-top: 2rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-end;
}

.filter-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.3rem;
}

.filter-field input[type="text"],
.filter-field select {
  max-width: 260px;
}

/* ---------- Themen- / Bezirks- / Typen-Checkliste ---------- */

.topic-checkboxes,
.district-checkboxes,
.type-checkboxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
  margin-top: 0.4rem;
}

.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.85rem;
  cursor: pointer;
  user-select: none;
  justify-content: flex-start;
}

.checkbox-pill input[type="checkbox"] {
  accent-color: #059669; /* Grün passend zum Rest */
}

.checkbox-pill:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

@media (max-width: 900px) {
  .topic-checkboxes,
  .district-checkboxes,
  .type-checkboxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.filter-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
  flex-basis: 100%;
}

.filter-actions .btn {
  flex: 1 1 auto;
}

@media (max-width: 900px) {
  .filter-actions {
    flex-direction: column;
  }

  .filter-actions .btn {
    width: 100%;
  }
}

/* Filterboxen (bauen auf deinem .filters-Block auf) */
.filter-field {
  min-width: 220px;
}

.filter-hint {
  font-size: 0.75rem;
  color: #6b7280;
}

.filter-help {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.45rem 0 0;
}

/* Liste der Gruppen-Karten */
.group-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.group-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.25rem 1.35rem 1.4rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.group-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.group-card p {
  margin: 0.12rem 0;
  font-size: 0.9rem;
  color: #374151;
}

.group-card p strong {
  color: #111827;
}

.group-card a {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #2563eb;
}

/* leere-State */
.group-empty {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* responsive */
@media (max-width: 900px) {
  .group-list {
    grid-template-columns: 1fr;
  }
}


/* ---------- Forms & Inputs (Suggestion etc.) ---------- */

main h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.page-intro {
  margin-bottom: 1.25rem;
  color: #4b5563;
  max-width: 640px;
}

form.hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form.hero label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

input[type="text"],
textarea,
select {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  font: inherit;
  margin-top: 0.25rem;
  background: #f9fafb;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------- About / Spenden ---------- */

.info-box {
  margin-top: 1.5rem;
  background: #f1e9dd;
  border-radius: 1.2rem;
  padding: 1.25rem 1.4rem;
  font-size: 0.9rem;
  color: #374151;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #e5e7eb;           /* helles Grau, sauber & nicht zu beige */
  color: #4b5563;
  font-size: 0.85rem;
}

/* oberer Bereich mit den drei Spalten */
.footer-top {
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-column p {
  margin: 0 0 0.6rem;
  line-height: 1.5;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #111827;
}

.footer-support-hint {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Link-Liste im Footer */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  text-decoration: none;
  color: #374151;
}

.footer-links a:hover {
  color: #111827;
  text-decoration: underline;
}

/* unterer Balken mit Copyright */
.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.9rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6b7280;
}

/* responsive: untereinander statt Spalten */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
 } 

/* ---------- Gruppe vorschlagen ---------- */

.suggest-hero {
  background: #e4f3ef;           /* gleiches Grün wie Browse/Spenden-Hero */
  padding: 3.2rem 0 3rem;
}

.suggest-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.suggest-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: #111827;
}

.suggest-hero-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1f2933;
}

/* Bereich mit Formular im grauen Hintergrund wie bei Browse */
.suggest-section {
  background: #f3f4f6;          /* gleich wie Browse-Filterbereich */
  padding: 3rem 0 3.6rem;
}

/* Weiße Karte für das Formular – wie andere Cards */
.suggest-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.8rem 1.9rem 2rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  max-width: 720px;
  margin: 0 auto;
}

.suggest-card h2 {
  font-size: 1.7rem;
  margin: 0 0 0.7rem;
}

.suggest-card .page-intro {
  margin-bottom: 1.4rem;
}

/* kleine Hinweise unter dem Formular */
.form-hint-email,
.form-note {
  font-size: 0.82rem;
  color: #6b7280;
  margin-top: 0.3rem;
}

.form-note {
  margin-top: 0.9rem;
}

/* Button unten im Formular leicht absetzen */
.suggest-card .btn {
  margin-top: 0.9rem;
}

/* auf kleinen Screens: Card voll breit, Abstände halten */
@media (max-width: 900px) {
  .suggest-card {
    padding: 1.5rem 1.3rem 1.8rem;
  }
}
/* ---------- Über-uns-Seite ---------- */

.about-hero {
  background: #e4f3ef;  /* gleiches Grün wie Spenden/Browse/Suggest */
  padding: 3.2rem 0 3rem;
}

.about-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: #111827;
}

.about-hero-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1f2933;
}

/* Abschnitt mit den drei Info-Karten */
.about-section {
  background: #ffffff;
  padding: 3rem 0 3.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.4rem 1.6rem 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.about-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.about-card p {
  margin: 0;
  font-size: 0.94rem;
  color: #4b5563;
}

/* Abschnitt: Wer steckt dahinter / Kontakt */
.about-meta {
  background: #f9fafb;
  padding: 3rem 0 3.4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.about-meta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  gap: 2.5rem;
}

.about-meta h2 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
}

.about-meta p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: #374151;
}

.about-contact a {
  color: #2563eb;
  text-decoration: none;
}

.about-contact a:hover {
  text-decoration: underline;
}

/* responsive Layout-Anpassungen */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-meta-inner {
    grid-template-columns: 1fr;
  }
}
/* ---------- Impressum / Rechtliches ---------- */

.legal-hero {
  background: #e4f3ef;  /* gleiches Grün wie bei den anderen Unterseiten */
  padding: 3.2rem 0 3rem;
}

.legal-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.legal-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: #111827;
}

.legal-hero-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1f2933;
}

.legal-section {
  background: #ffffff;
  padding: 3rem 0 3.6rem;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
}

.legal-inner h2:first-of-type {
  margin-top: 0;
}

.legal-inner p {
  font-size: 0.94rem;
  color: #374151;
  margin: 0 0 0.7rem;
}

.legal-inner a {
  color: #2563eb;
  text-decoration: none;
}

.legal-inner a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .legal-hero {
    padding: 2.8rem 0 2.5rem;
  }

  .legal-hero h1 {
    font-size: 2rem;
  }
}
/* ---------- Datenschutzerklärung ---------- */

.privacy-hero {
  background: #e4f3ef;  /* gleiches Grün wie Impressum/Spenden/Browse */
  padding: 3.2rem 0 3rem;
}

.privacy-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.privacy-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: #111827;
}

.privacy-hero-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1f2933;
}

.privacy-section {
  background: #ffffff;
  padding: 3rem 0 3.6rem;
}

.privacy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-inner h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
}

.privacy-inner h2:first-of-type {
  margin-top: 0;
}

.privacy-inner p {
  font-size: 0.94rem;
  color: #374151;
  margin: 0 0 0.7rem;
}

.privacy-inner ul {
  margin: 0.3rem 0 0.8rem 1.2rem;
  font-size: 0.94rem;
  color: #374151;
}

.privacy-inner a {
  color: #2563eb;
  text-decoration: none;
}

.privacy-inner a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .privacy-hero {
    padding: 2.8rem 0 2.5rem;
  }

  .privacy-hero h1 {
    font-size: 2rem;
  }
}
/* ---------- Mobile-Optimierungen ---------- */
@media (max-width: 768px) {
  /* Header: Logo oben, Navigation darunter, alles entspannter */
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .brand {
    text-align: center;
  }

  .main-nav {
    justify-content: center;
    text-align: center;
    gap: 0.5rem 1.2rem;
  }

  /* Startseiten-Kacheln: untereinander statt nebeneinander */
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 1.2rem 1.1rem 1.3rem;
  }

  /* Hero-Bereich etwas luftiger & bessere Schriftgrößen auf Handy */
  .landing-hero {
    padding: 3rem 0 3.2rem;
  }

  .landing-hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    padding: 0 0.75rem;
  }
}

