/* == default Farben == */
:root {
  --cassiopeia-color-primary: #0272ba;
  --cassiopeia-color-text: #ffffff;
 /* --cassiopeia-color-hover: #174F4B;
  --cassiopeia-color-link: #1C5E5A; */
}
/* == Ende default Farben == */
.card-header {
  /*text-transform: uppercase;*/
  text-align: center;
  letter-spacing: 1.5px;;
}

.banner-custom img{
  /*height: 5vw;*/
  object-fit: contain;
  width: max-content;
  margin: 0 1em 0;
}
.banneritem{
  margin-top: 2px;
  margin-bottom: 2px;
}
/*BEGIN Aritkel */

.blog-item {
 display: block;   
}
figure.teaser-image-left {
    float: left;
    width:clamp(100px, 15vw, 200px);
    margin: 0 0.5em 0.5em 0;
}
figure.teaser-image-left img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ende Artikel */
/* BEGIN Einstellungen für die Satzung */
.vereinssatzug ol{
    list-style-type: none;
    counter-reset: main-counter;
    padding-left: 2em;
}
.vereinssatzug ol > li {
    counter-increment: main-counter;
    position: relative;
    margin-bottom: 0.5em;
    padding-left: 2em;
}
.vereinssatzug ol>li::before {
    content: "(" counter(main-counter) ")";
    position: absolute;
    left: 0;
    font-weight: bold;
}
.vereinssatzug ol ol{
    list-style-type: none;
    list-style: none;
    counter-reset: subnumber-counter;
    padding-left: 2em;
}
.vereinssatzug ol ol>li {
    counter-increment: subnumber-counter;
    position: relative;
    margin-bottom: 0.5em;
    padding-left: 2em;
}
.vereinssatzug ol ol>li ::marker{
  content: none;
}
.vereinssatzug ol ol>li::before {
    content: counter(subnumber-counter, lower-alpha) ")";
    position: absolute;
    left: 0;
    font-weight: normal;
}

/* ENDE Satzung*/
 /* BEGIN modifikation der Card */
.card {
  border: none;
  box-shadow: none;
}
.card-header {
  background-color: transparent;
  border-bottom: none;
}
.card-header::before,
.card-header::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 1%;
  background-color: var(--cassiopeia-color-primary);
  margin: 0 1rem;
  vertical-align: middle;
}
.card-header{
  text-align: center ;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
 /* ENDE modifikation der Card */
 /* BEGIN Modifikation Nav-Bar */
 .container-header .container-nav{
  padding-bottom: 0;
  padding-top: 0;
 }
 /* ENDE Modifikation Nav-Bar */
/* BEGIN modifikation Footer */
.container-footer .grid-child{
  padding-top: 0;
  padding-bottom: 0;
}
/*Ende modifikation Footer */


/* BEGIN Formatierung für inlinecontact */
.inlinecontact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15em,1fr));
  gap: 20px;
  margin: 20px 0;
}
.contact-card {
  border: 1px solid #ccc;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.contact-card img {
  width: 13em;
  height: 13em;
  object-fit: cover;
  border-radius: 34%;
  box-shadow: 0px 1px 1px 5px rgba(0,0,0,0.1);
  margin-bottom: 0.5em;
}
.contact-info h3 {
  margin: 0;
  font-size: 1.2em;
}
.contact-info p {
  margin: 3px 0;
}
/* ENDE Inlinecontact*/
/* BEGIN Format Banner-Box */

.banner_logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;

}
#site-header.banner_logo img {
  height:auto ;
  width: clamp(60px, 20vw, 240px);
}
#site-header.shrink.banner_logo  img{
  width: clamp(30px, 5vw, 100px);
}
#site-header.banner_logo h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-shadow: 5px 5px 4px #024faa;
}
#site-header.shrink.banner_logo h1 {
  font-size: clamp(1rem, 2vw, 2rem);
}
#site-header {
  transform: scale(1);
  transform-origin: top left;
  transition: all 1s ease;
}
#site-header.shrink {
  transform: scale(0.8);

}

/* === ENDE Format Banner-Box === */
/* BEGIN Format JEM === */
/* Wettkampfmannschaft I*/
div#jem .cat6 .eventcontentinner a{
  color: #fffffff6;   /* weiße Schrift */
}
/* Masters */
div#jem .cat8 .eventcontentinner a{
  color: #fffffff6;   /* weiße Schrift */
}

/* == ENDE Format JEM == */
/* == BEGIN Login-form == */
.mod-login{
  max-width: 400px;
  padding: 20px;
  /*border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}
/* == ENDE Login-form == */
/* === Header-Bereich === 
.site-header{
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: scale(1);
  transform-origin: top left;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

/* === Shrink-Zustand === 
.site-eader.shrink {
  transform: scale(0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

/* === Logo-Bild === 
#site-header img {
  width: clamp(60px, 20vw, 240px);
  height: auto;
  transition: width 0.5s ease;
  transform-origin: top left;
}

/* === Vereinsname === 
#site-header h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-shadow: 5px 5px 4px #024faa;
  transition: font-size 0.5s ease;
  transform-origin: top left;
}

/* === Shrink-Zustand für Text === 
#site-header.shrink h1 {
  font-size: clamp(1rem, 2vw, 2rem);
} 
*/
/* ENDE Format Banner-Box */