/* =========================================================
   Impressum Page
   ========================================================= */

.impressum-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.impressum-card {
  width: 420px;
  max-width: 100%;

  padding: 2rem;

  background-color: var(--white);
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: var(--radius-xl);
}

.impressum-wrapper {
  max-width: 760px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
}

.impressum-section {
  margin-bottom: 2rem;
}

.impressum-section:last-child {
  margin-bottom: 0;
}

.impressum-section h2 {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.impressum-section p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.8;
}

.impressum-section a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.impressum-section a:hover {
  color: var(--gold);
}

.impressum-section {
  text-align: left;
}

/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] .impressum-wrapper,
html[dir="rtl"] .impressum-card,
html[dir="rtl"] .impressum-section {
  direction: rtl;
  text-align: center;
}

html[dir="rtl"] .impressum-section p {
  text-align: left;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 768px) {
  .impressum-card {
    width: 100%;
    max-width: none;
    padding: 1.5rem;
  }

  .impressum-section h2 {
    font-size: 1.3rem;
  }

  .site-footer-navigation {
    display: none !important;
  }

  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .site-footer-grid {
    gap: 1.5rem;
  }

  .site-footer-section {
    gap: 0.5rem;
  }

  .site-footer-section span {
    font-size: 0.9rem;
  }
}
