/*
Primärfarbe:   var(--primary)
Sekundärfarbe: var(--secondary)
*/

html * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Headlines */
h1, .h1 {
  font-size: 2.5rem;
  font-weight: 500;
}
h2, .h2 {
  font-size: 2.25rem;
  font-weight: 300;
}
h3, .h3 {
  font-size: 1.75rem;
  font-weight: 500;
}
h4, .h4 {
  font-size: 1.5rem;
  font-weight: 500;
}
h5, .h5 {
  font-size: 1.5rem;
  font-weight: 300;
}
h6, .h6 {
  font-size: 1.3rem;
  font-weight: 500;
}
/* End H */



/* Animation Sticky Navbar */
.navbar-collapse,
.navbar .navbar-brand,
.navbar .navbar-brand img {
  transition: all .25s ease-out;
}
/* End ASN */

/* Remove Active Marker on Navbar Home Link */
#mainnavigation .nav-item:first-child .nav-link.active .nav-link-text {
  border-bottom-color: transparent;
}
/* End RAM */

/* Navbar Big Logo */
.navbar-brand-image {
  transform: scale(1.6);
}
.navbar-transition .navbar-brand-image {
  transform: scale(1.25);
}
/* End NBL */



/* Breadcrumbs Hide First */
.breadcrumb-section ol.breadcrumb li.breadcrumb-item:first-child {
  display: none;
}
.breadcrumb-section ol.breadcrumb li.breadcrumb-item:nth-child(2) {
  padding-left:0;
}
.breadcrumb-section ol.breadcrumb li.breadcrumb-item:nth-child(2):before {
  display:none;
}
/* End BHF */



/* Side Navigation Styles */
.section {
  overflow: visible;
}
.subcontent-wrap .frame-type-menu_section {
  position: sticky;
  top: 4rem;
}
.navbar-mainnavigation.navbar-fixed-top {
  overflow-y: unset;
}
/* End SNS */



/* Links in Footer */
.footer-section-content {
  --frame-link-color: var(--secondary);
  --frame-link-hover-color: color-mix(in oklch, var(--frame-link-color), 20% #000);
}
/* End LiF */

/* Copyright */
.footer-section-meta .frame {
  --frame-spacing: .5rem;
  --frame-color: var(--gray);
}
/* End C */

/* Sticky Footer */
html, body, .body-bg {
  height: 100%;
}
.body-bg {
  display: flex;
  flex-direction: column;
}
#page-footer {
  margin-top: auto;
}
/* End SF */



/* Card Image Height */
.card-img-top {
  aspect-ratio: 2;
}
.card-img-top picture, .card-img-top img {
  height: 100%;
  object-fit: cover;
}
/* End CIH */

/* INDEX OVERRIDE "Vereine" (c3467) Card Image Height */
#c3467 .card-img-top {
  aspect-ratio: 1;
  padding: 2rem;
  border-bottom: solid 1px #ddd;
}
.card-img-top img {
  overflow: visible;
}
/* End OVERRIDE CIH */



/* Menu External Link Icon */
.navbar-nav .dropdown-menu .dropdown-item[href^="https://"]::after {
  font-family: "FontAwesome";
  content: "\f08e"; 
  margin-left: auto;
}
/* End MELI */