/* PAGE */
.impressum-simple-page{
  background:var(--surface-services);
}

/* SECTION */
.impressum-simple-section{
  padding:140px 0 100px;
}

/* TITLE */
.impressum-simple-title{
  font-family:"InterCuostom700", sans-serif;
  font-size:42px;
  line-height:1.1;
  margin-bottom:40px;
  color:#cfc4bc;
  text-align:center;
}

/* CARD */
.impressum-simple-card{
  max-width:900px;
  margin:0 auto; 
  padding:40px 38px;
  border-radius:24px;

  background:
    linear-gradient(180deg, rgba(42,42,42,.95) 0%, rgba(28,28,28,.97) 100%);

  border:1px solid rgba(255,255,255,.08);

  box-shadow:
    0 24px 50px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.04);

  transition:
    box-shadow .25s ease,
    border-color .25s ease;
}

/* TEXT */
.impressum-simple-card p{
  margin:0 0 20px;
  color:var(--text-muted-2);
  font-size:16px;
  line-height:1.7;
  letter-spacing:0.2px;
}

/* HEADINGS */
.impressum-simple-card h3{
  margin:32px 0 12px;
  font-family:"InterCuostom600", sans-serif;
  font-size:20px;
  color:#cfc4bc;
}

/* HOVER */
.impressum-simple-card:hover{
  border-color:rgba(255,255,255,.14);
  box-shadow:
    0 30px 60px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* SPACING */
.impressum-simple-card p:last-child{
  margin-bottom:0;
}

.impressum-simple-card h3:first-of-type{
  margin-top:24px;
}

/* LIGHT MODE */
body.light .impressum-simple-page{
  background:#eef2f5;
}

body.light .impressum-simple-section{
  background:transparent;
}

body.light .impressum-simple-title{
  color:#1f1f1f;
}

body.light .impressum-simple-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(245,245,245,.98) 100%);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:
    0 18px 40px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
}

body.light .impressum-simple-card h3{
  color:#1f1f1f;
}

body.light .impressum-simple-card p{
  color:#4f4f4f;
}

body.light .impressum-simple-card:hover{
  border-color:rgba(0,0,0,.10);
  box-shadow:
    0 22px 48px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.8);
}

/* MOBILE */
@media (max-width: 980px){

  .impressum-simple-section{
    padding:120px 0 70px;
  }

  .impressum-simple-title{
    font-size:30px;
    margin-bottom:26px;
  }

  .impressum-simple-card{
    padding:24px 20px;
    border-radius:18px;
  }

  .impressum-simple-card p{
    font-size:14px;
    line-height:1.65;
  }

  .impressum-simple-card h3{
    font-size:17px;
    margin:26px 0 10px;
  }
}

/* EXTRA SMALL */
@media (max-width: 480px){

  .impressum-simple-title{
    font-size:26px;
    line-height:1.1;
  }

  .impressum-simple-card{
    padding:20px 16px;
  }

  .impressum-simple-card h3{
    font-size:16px;
  }
}