/* ═════════════════════════════════════════════════════════════════════
   Alpenzaun — Impressum (premium Austrian legal page)
   Visual style match: Datenschutz + About (clean card layout, accent #f04e23)
   ═════════════════════════════════════════════════════════════════════ */

.aze-imp-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
.aze-imp-hero {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px 16px;
}
.aze-imp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(240, 78, 35, 0.08);
  color: #f04e23;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.aze-imp-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f04e23;
  box-shadow: 0 0 8px rgba(240, 78, 35, 0.5);
}
.aze-imp-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #0f172a;
}
.aze-imp-title-accent {
  color: #f04e23;
}
.aze-imp-intro {
  font-size: 16px;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 18px;
  line-height: 1.65;
}
.aze-imp-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
.aze-imp-updated svg {
  width: 14px;
  height: 14px;
  color: #f04e23;
}

/* ─── LAYOUT: 2-col grid pre páry kariet ────────────────────────────── */
.aze-imp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 720px) {
  .aze-imp-two-col { grid-template-columns: 1fr; }
}

/* ─── CARD ──────────────────────────────────────────────────────────── */
.aze-imp-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.aze-imp-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.aze-imp-two-col .aze-imp-card { margin-bottom: 0; }

.aze-imp-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.aze-imp-card-head svg {
  width: 20px;
  height: 20px;
  color: #f04e23;
  flex-shrink: 0;
}
.aze-imp-card-head h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.aze-imp-card-body {
  font-size: 14.5px;
  color: #334155;
}
.aze-imp-card-body p {
  margin: 0 0 10px;
}
.aze-imp-card-body p:last-child { margin-bottom: 0; }

.aze-imp-strong {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}

/* ─── CONTACT dl/dt/dd ──────────────────────────────────────────────── */
.aze-imp-contact {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 6px 14px;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed #e5e7eb;
}
.aze-imp-contact dt {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.aze-imp-contact dd {
  font-size: 14px;
  color: #1f2937;
  font-weight: 500;
  margin: 0;
}
.aze-imp-contact dd a {
  color: #f04e23;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: border-color 0.2s;
}
.aze-imp-contact dd a:hover { border-bottom-color: #f04e23; }

/* ─── FIRMA — strukturovaná dl grid ─────────────────────────────────── */
.aze-imp-firma .aze-imp-grid {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 1fr;
  gap: 10px 22px;
  margin: 0;
}
.aze-imp-firma .aze-imp-grid dt {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.aze-imp-firma .aze-imp-grid dd {
  font-size: 14.5px;
  color: #0f172a;
  font-weight: 600;
  margin: 0;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.aze-imp-firma .aze-imp-grid dt:last-of-type,
.aze-imp-firma .aze-imp-grid dd:last-of-type {
  border-bottom: 0;
}
@media (max-width: 640px) {
  .aze-imp-firma .aze-imp-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .aze-imp-firma .aze-imp-grid dt {
    padding: 10px 0 2px;
    border: 0;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .aze-imp-firma .aze-imp-grid dd {
    padding: 0 0 10px;
    font-size: 15px;
  }
}

/* ─── ODR — special highlight ───────────────────────────────────────── */
.aze-imp-odr {
  background: linear-gradient(135deg, rgba(240, 78, 35, 0.04), rgba(245, 158, 11, 0.04));
  border-color: rgba(240, 78, 35, 0.2);
}
.aze-imp-subhead {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 22px 0 10px;
  padding-top: 16px;
  border-top: 1px dashed rgba(240, 78, 35, 0.25);
  letter-spacing: -0.01em;
}
.aze-imp-subhead:first-of-type { margin-top: 18px; }
.aze-imp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f04e23;
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
  border-bottom: 1px dashed rgba(240, 78, 35, 0.4);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.aze-imp-link:hover {
  border-bottom-color: #f04e23;
  background: rgba(240, 78, 35, 0.05);
}
.aze-imp-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
