/* -------------------------------------------------------
   Seitentitel (h1 sichtbar auf Unterseiten)
------------------------------------------------------- */
.section-title-visible {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  padding: 0 0 .6rem;
  margin: 0 0 1.5rem;
  color: var(--color-text-light);
  font-size: var(--font-size-h2);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.section-title-visible::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: .6rem;
  background: linear-gradient(90deg, var(--color-primary), #00d4aa);
  opacity: .9;
  border-radius: 1px;
}

/* -------------------------------------------------------
   Schriftgrößen Unterseiten
------------------------------------------------------- */
#page-shell.full-height .fh5co-content-inner p,
#page-shell.full-height .fh5co-content-inner li,
#page-shell.full-height .fh5co-content-inner dt,
#page-shell.full-height .fh5co-content-inner dd {
  font-size: var(--font-size-p);
}

#page-shell.full-height .fh5co-content-inner h2 {
  font-size: var(--font-size-h2);
  margin-top: 1.5em;
  margin-bottom: .5em;
}

/* -------------------------------------------------------
   Imprint Grid
------------------------------------------------------- */
.imprint {
  font-size: var(--font-size-p);
  margin-top: 1.5rem;
}

.imprint dt {
  font-weight: 700;
}

.imprint dd {
  margin: 0 0 1rem;
  line-height: var(--line-height-base);
}

/* -------------------------------------------------------
   Layout Unterseiten – Mobile
------------------------------------------------------- */
@media (max-width: 768px) {
  #page-shell.full-height {
    min-height: calc(100vh - 5em);
    display: flex;
    flex-direction: column;
  }

  #page-shell.full-height main#content {
    flex: 1;
  }

  .imprint dt {
    border-bottom: 1px dotted silver;
    padding-bottom: .2rem;
    margin-top: 1rem;
  }

  .imprint dt:first-of-type {
    margin-top: 0;
  }
}

/* -------------------------------------------------------
   Imprint Grid – Desktop
------------------------------------------------------- */
@media (min-width: 769px) {
  .imprint {
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 1.25rem;
    align-items: baseline;
  }

  .imprint dt {
    text-align: right;
    padding-top: .15rem;
    align-self: baseline;
  }

  .imprint dd {
    margin-bottom: .5rem;
  }
}
