.single-mtv-teams hgroup {
  gap: 0.5rem;
  display: grid;
}
.single-mtv-teams hgroup p,
.single-mtv-teams hgroup h1,
.single-mtv-teams hgroup h2,
.single-mtv-teams hgroup h3,
.single-mtv-teams hgroup h4,
.single-mtv-teams hgroup h5,
.single-mtv-teams hgroup h6 {
  margin: 0;
}
.single-mtv-teams hgroup p {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  color: var(--mtv-brand-primary);
}
.single-mtv-teams hgroup h1,
.single-mtv-teams hgroup h2,
.single-mtv-teams hgroup h3,
.single-mtv-teams hgroup h4,
.single-mtv-teams hgroup h5,
.single-mtv-teams hgroup h6 {
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--mtv-text-primary);
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.mtv-badge {
  gap: 0.3rem;
  color: #ffffff;
  font-weight: 600;
  align-items: center;
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mtv-button {
  cursor: pointer;
  font-weight: 700;
  min-height: 2.75rem;
  align-items: center;
  display: inline-flex;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.6875rem 1rem;
  justify-content: center;
  border: 1px solid var(--mtv-color-border-strong);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.mtv-button.mtv-button-primary {
  color: var(--mtv-color-white);
  background-color: var(--mtv-color-primary);
  border-color: var(--mtv-color-primary-dark);
}
.mtv-button.mtv-button-primary-outline {
  color: var(--mtv-color-primary-dark);
  background-color: var(--mtv-color-surface);
  border-color: var(--mtv-color-primary-dark);
}

body.single-mtv-teams {
  color: var(--mtv-text-primary);
  transition: all 0.3s ease-in-out;
  background-color: var(--mtv-bg-secondary);
}
body.single-mtv-teams .ast-container {
  display: grid;
}
body.single-mtv-teams header:not(#masthead),
body.single-mtv-teams section {
  padding: 6rem 1rem;
}
body.single-mtv-teams header:not(#masthead) > .container,
body.single-mtv-teams section > .container {
  margin: 0 auto;
  max-width: 71.25rem;
}
body.single-mtv-teams header.mtv-header-team {
  --hero-color: #FFFFFF;
  background-color: #43A047;
}
body.single-mtv-teams header.mtv-header-team .container {
  display: grid;
  grid-template-rows: auto;
  align-items: first baseline;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: ". image" "breadcrumbs image" "heading image" "badges image" ". image";
}
body.single-mtv-teams header.mtv-header-team .container #breadcrumbs {
  --breadcrumb-color: var(--hero-color);
  grid-area: breadcrumbs;
}
body.single-mtv-teams header.mtv-header-team .container h1 {
  grid-area: heading;
  color: var(--hero-color);
}
body.single-mtv-teams header.mtv-header-team .container ul {
  margin: 0;
  padding: 0;
  grid-area: badges;
}
body.single-mtv-teams header.mtv-header-team .container .mtv-team-portrait {
  grid-area: image;
  color: var(--hero-color);
}
body.single-mtv-teams .text-align-center {
  text-align: center;
}
body.single-mtv-teams section#trainingszeiten {
  background-color: #2E7D32;
}
body.single-mtv-teams section.mtv-section-profile {
  transition: all 0.3s ease-in-out;
  background-color: var(--mtv-bg-secondary);
}
body.single-mtv-teams section.mtv-section-profile > .container {
  gap: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.single-mtv-teams section.mtv-section-profile > .container hgroup {
  grid-column: 1/-1;
}
body.single-mtv-teams section.mtv-section-profile > .container article {
  --box-shadow: rgba(0, 0, 0, 0.08);
  display: grid;
  padding: 1.5rem;
  border-radius: 12px;
  gap: var(--space-sm);
  align-content: flex-start;
  transition: all 0.3s ease-in-out;
  background-color: var(--mtv-bg-primary);
  box-shadow: 0 4px 12px var(--box-shadow);
  border: 0.0625rem solid var(--mtv-border-light);
}
@supports (background-color: light-dark(#FFFFFF, #000000)) {
  body.single-mtv-teams section.mtv-section-profile > .container article {
    --box-shadow: light-dark(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
  }
}
body.single-mtv-teams section.mtv-section-profile > .container article h3 {
  margin: 0;
  font-size: var(--font-size-lg);
  color: var(--mtv-text-primary);
}
body.single-mtv-teams section.mtv-section-profile > .container article dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.single-mtv-teams section.mtv-section-profile > .container article dl dt,
body.single-mtv-teams section.mtv-section-profile > .container article dl dd {
  margin: 0;
  padding: var(--space-xs) 0;
  color: var(--mtv-text-primary);
  font-size: var(--font-size-sm);
  transition: all 0.3s ease-in-out;
  line-height: var(--line-height-normal);
  border-bottom: 1px solid var(--mtv-border-light);
}
body.single-mtv-teams section.mtv-section-profile > .container article dl dt:last-of-type,
body.single-mtv-teams section.mtv-section-profile > .container article dl dd:last-of-type {
  border-bottom: 0;
}
body.single-mtv-teams section.mtv-section-profile > .container article dl dt {
  font-weight: bold;
}
body.single-mtv-teams section.mtv-section-profile > .container article dl dd {
  text-align: right;
}
body.single-mtv-teams section.mtv-section-profile > .container article address {
  margin: 0;
}
body.single-mtv-teams section.mtv-section-profile > .container article address,
body.single-mtv-teams section.mtv-section-profile > .container article address a {
  font-size: var(--font-size-sm);
  color: var(--mtv-text-secondary);
  line-height: var(--line-height-normal);
  transition: all 0.3s ease-in-out;
}
body.single-mtv-teams section.mtv-section-profile > .container article address a {
  text-decoration-line: underline;
  -moz-text-decoration-line: underline;
  text-decoration-color: currentColor;
  -moz-text-decoration-color: currentColor;
  -webkit-text-decoration-color: currentColor;
}
body.single-mtv-teams section.mtv-section-profile > .container article address a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
  -moz-text-decoration-color: rgba(255, 255, 255, 0);
  -webkit-text-decoration-color: rgba(255, 255, 255, 0);
}
body.single-mtv-teams section.mtv-section-about-us {
  transition: all 0.3s ease-in-out;
  background-color: var(--mtv-bg-primary);
}
body.single-mtv-teams section.mtv-section-about-us .container > p {
  color: var(--mtv-text-primary);
  transition: all 0.3s ease-in-out;
}
body.single-mtv-teams section.mtv-section-the-team .container {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
body.single-mtv-teams section.mtv-section-the-team .container > hgroup {
  grid-column: 1/-1;
}
body.single-mtv-teams section.mtv-section-interested {
  background-color: var(--mtv-bg-primary);
}
body.single-mtv-teams section.mtv-section-interested > .container {
  gap: 1rem;
  display: grid;
  padding: 2rem;
  align-items: center;
  border-radius: 16px;
  border: 0.125rem solid var(--mtv-brand-primary);
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas: "heading contact teams" "info contact teams";
}
body.single-mtv-teams section.mtv-section-interested > .container h2 {
  margin: 0;
  grid-area: heading;
  color: var(--mtv-text-primary);
}
body.single-mtv-teams section.mtv-section-interested > .container p {
  margin: 0;
  grid-area: info;
  color: var(--mtv-text-primary);
}
body.single-mtv-teams section.mtv-section-interested > .container .mtv-button-primary {
  grid-area: contact;
}
body.single-mtv-teams section.mtv-section-interested > .container .mtv-button-primary-outline {
  grid-area: teams;
}
body.single-mtv-teams .quick-links {
  gap: 1.25rem;
  display: flex;
  justify-content: space-between;
}
body.single-mtv-teams .quick-links > a {
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: auto;
  flex: 1 1 25%;
  color: #FFFFFF;
  display: flex;
  padding: 1.25rem;
  align-items: center;
  border-radius: 12px;
  justify-content: center;
  background-color: #43A047;
  transition: all 0.3s ease-in-out;
}
body.single-mtv-teams .quick-links > a:hover, body.single-mtv-teams .quick-links > a:focus, body.single-mtv-teams .quick-links > a:focus-visible {
  color: #FFFFFF;
  background-color: #2E7D32;
}
body.single-mtv-teams .quick-links > a:active {
  color: #333333;
  background-color: #AED581;
}
body.single-mtv-teams .quick-links > a > span {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}
body.single-mtv-teams .quick-links > a svg {
  height: auto;
  aspect-ratio: 1;
  fill: currentColor;
  width: min(3rem, 80%);
  transition: all 0.3s ease-in-out;
}

/*# sourceMappingURL=single-mtv-teams.css.map */
