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

.impressum-wrapper {
  display: flex;
  justify-content: center;

  max-width: 760px;
  margin: 0 auto;
}

.impressum-card {
  width: 420px;
  max-width: 100%;
  padding: 2rem;
}

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

.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);
  font-weight: 600;
  text-decoration: none;
}

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

/* =========================================================
   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;
  }
}
