/* /css/impressum.css */

:root{
  --tw-bg: #f5f6f8;
  --tw-surface: #ffffff;
  --tw-border: rgba(15, 23, 42, 0.10);
  --tw-text: #0f172a;
  --tw-muted: rgba(15, 23, 42, 0.70);
  --tw-soft: rgba(15, 23, 42, 0.05);

  --tw-radius: 14px;
  --tw-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

*{ box-sizing: border-box; }





body{
  margin:0;
  color: var(--tw-text);
  background: #ffffff; /* komplett weiß */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.tw-page{ min-height: 60vh; }

.tw-container{
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.tw-hero{
  background: #f2f3f6;   /* hellgrauer Bereich für Überschrift */
  border-bottom: 1px solid #e5e7eb;
}

.tw-hero .tw-container{
  padding: 34px 0 22px;
}

.tw-hero__title{
  margin: 0 0 6px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
}

.tw-hero__subtitle{
  margin: 0;
  color: var(--tw-muted);
  font-size: 14px;
}

.tw-content{
  padding: 26px 0 46px;
}

.tw-grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
}

.tw-stack{
  display: grid;
  gap: 18px;
}

/* Card */
.tw-card{
  background: var(--tw-surface);
  border: 1px solid var(--tw-border);
  border-radius: var(--tw-radius);
  box-shadow: var(--tw-shadow);
  overflow: hidden;
}

.tw-card__head{
  padding: 12px 14px;
  background: #f2f3f6;
  border-bottom: 1px solid var(--tw-border);
  font-weight: 700;
  font-size: 14px;
}

.tw-card__head--icon{
  display: flex;
  align-items: center;
  gap: 10px;
}

.tw-card__body{
  padding: 14px;
}

.tw-card--anbieter .tw-card__body{
  padding: 16px;
}

.tw-strong{ font-weight: 800; }
.tw-muted{ color: var(--tw-muted); }
.tw-text{
  margin: 8px 0 0;
  color: var(--tw-muted);
  line-height: 1.55;
  font-size: 14px;
}

.tw-h3{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.tw-sep{
  border: 0;
  height: 1px;
  background: var(--tw-border);
  margin: 14px 0;
}

/* Contact rows */
.tw-contact{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.tw-contact__row{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--tw-text);
  padding: 10px 10px;
  border-radius: 10px;
  background: var(--tw-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.tw-contact__row:hover{
  border-color: rgba(15, 23, 42, 0.14);
}

/* small icons */
.tw-ic{
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: 0 0 22px;
}

.tw-ic--circle{
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.tw-ic--shield{
  border-radius: 7px;
  background: rgba(120, 53, 15, 0.12);
}

/* Key/Value rows */
.tw-kv{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.tw-kv:last-child{ border-bottom: 0; }

.tw-kv__label{
  color: var(--tw-muted);
  font-size: 13px;
}

.tw-kv__value{
  font-weight: 650;
  font-size: 13px;
}

/* Button */
.tw-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;

  padding: 11px 14px;
  border-radius: 10px;

  border: 2px solid rgba(185, 28, 28, 0.65);
  color: #000000;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;

  background: #fff;
}

.tw-btn:hover{
  border-color: #b91c1c;
}

.tw-ic-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.tw-ic {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #7A2E2E; /* TownWork Rot */
}

/* Responsive */
@media (max-width: 920px){
  .tw-grid{
    grid-template-columns: 1fr;
  }
}