.elementor-5973 .elementor-element.elementor-element-ca755d0{--display:flex;--border-radius:0px 0px 0px 0px;}.elementor-widget-nested-tabs.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs[data-touch-mode='false'] > .e-n-tabs-heading > .e-n-tab-title[aria-selected="false"]:hover{background:var( --e-global-color-accent );}.elementor-widget-nested-tabs.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected="true"], .elementor-widget-nested-tabs.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs[data-touch-mode='true'] > .e-n-tabs-heading > .e-n-tab-title[aria-selected="false"]:hover{background:var( --e-global-color-accent );}.elementor-widget-nested-tabs.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading > :is( .e-n-tab-title > .e-n-tab-title-text, .e-n-tab-title ){font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-widget-nested-tabs{--n-tabs-title-font-size:var( --e-global-typography-accent-font-size );}.elementor-5973 .elementor-element.elementor-element-43380aa{--display:flex;--border-radius:0px 0px 0px 0px;}.elementor-5973 .elementor-element.elementor-element-84b7103{--display:flex;}.elementor-5973 .elementor-element.elementor-element-c708e5c{--display:flex;}.elementor-5973 .elementor-element.elementor-element-9d68ecd{--n-tabs-direction:column;--n-tabs-heading-direction:row;--n-tabs-heading-width:initial;--n-tabs-title-flex-basis:content;--n-tabs-title-flex-shrink:0;--n-tabs-heading-justify-content:flex-start;--n-tabs-title-width:initial;--n-tabs-title-height:initial;--n-tabs-title-align-items:center;--n-tabs-title-flex-grow:0;--n-tabs-heading-wrap:wrap;--n-tabs-heading-overflow-x:initial;--n-tabs-title-white-space:initial;--n-tabs-title-gap:25px;--n-tabs-gap:20px;--n-tabs-title-border-radius:20px 20px 20px 20px;--n-tabs-title-padding-top:10px;--n-tabs-title-padding-right:10px;--n-tabs-title-padding-bottom:10px;--n-tabs-title-padding-left:10px;--n-tabs-title-color:var( --e-global-color-secondary );--n-tabs-title-color-active:var( --e-global-color-secondary );--n-tabs-title-direction:row;--n-tabs-icon-order:1;--n-tabs-title-justify-content-toggle:initial;--n-tabs-title-align-items-toggle:center;--n-tabs-icon-size:0px;}.elementor-5973 .elementor-element.elementor-element-9d68ecd > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected='false']:not( :hover ){background:#FFFFFF00;background-color:transparent;background-image:linear-gradient(180deg, #FFFFFF00 0%, #FFFFFF 100%);}.elementor-5973 .elementor-element.elementor-element-9d68ecd.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs[data-touch-mode='false'] > .e-n-tabs-heading > .e-n-tab-title[aria-selected="false"]:hover{background:#61CE7000;border-style:solid;border-color:var( --e-global-color-secondary );}.elementor-5973 .elementor-element.elementor-element-9d68ecd.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading > .e-n-tab-title[aria-selected="true"], .elementor-5973 .elementor-element.elementor-element-9d68ecd.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs[data-touch-mode='true'] > .e-n-tabs-heading > .e-n-tab-title[aria-selected="false"]:hover{background:#00000000;border-style:solid;border-color:var( --e-global-color-secondary );}.elementor-5973 .elementor-element.elementor-element-9d68ecd [data-touch-mode="false"] .e-n-tab-title[aria-selected="false"]:hover{--n-tabs-title-color-hover:var( --e-global-color-secondary );}:where( .elementor-5973 .elementor-element.elementor-element-9d68ecd.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content ) > .e-con{--border-radius:0px 0px 0px 0px;}.elementor-5973 .elementor-element.elementor-element-7e619ef{--display:flex;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-nested-tabs{--n-tabs-title-font-size:var( --e-global-typography-accent-font-size );}}@media(max-width:767px){.elementor-widget-nested-tabs{--n-tabs-title-font-size:var( --e-global-typography-accent-font-size );}}/* Start custom CSS for shortcode, class: .elementor-element-adfcaf7 *//* Container für alle Gruppen */
.artists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left; 
}

/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5cab7ab *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  




/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bdde31e *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}



/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}


/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b988ed0 *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-adfcaf7 *//* Container für alle Gruppen */
.artists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left; 
}

/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5cab7ab *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  




/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bdde31e *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}



/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}


/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b988ed0 *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-adfcaf7 *//* Container für alle Gruppen */
.artists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left; 
}

/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5cab7ab *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  




/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bdde31e *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}



/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}


/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b988ed0 *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-adfcaf7 *//* Container für alle Gruppen */
.artists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left; 
}

/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5cab7ab *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  




/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bdde31e *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}



/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}


/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b988ed0 *//* Container für alle Gruppen */
.artists-container {
         display: grid;
     grid-template-columns: repeat(6, 1fr);
    gap: 40px; /* Abstand zwischen Buchstaben-Gruppen */
}

/* Jede Buchstaben-Gruppe */
.artists-group {
    flex: 1;                /* jede Gruppe nimmt gleichmäßig Platz ein */
    min-width: 150px;       /* minimale Breite, damit mehrere Gruppen nebeneinander */
    max-width: 200px;       /* optional, um Spaltenbreite zu begrenzen */
    display: flex;
    flex-direction: column; /* Künstler untereinander */
    text-align: left;
    align-items: stretch;
}


/* Großbuchstabe */
.artist-letter {
    font-family: 'Inter', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    
      /* Strich über die ganze Spalte */
    border-bottom: 2px solid #000;
    width: 100%;   /* wichtig: Strich über gesamte Spaltenbreite */
    box-sizing: border-box; /* damit padding berücksichtigt wird */
}

/* Einzelner Artist */
.artist-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 0;
}

.elementor-widget-container {
    margin-left: 0;
}


/* Optional: responsive Anpassung */
@media (max-width: 1200px) {
    .artists-group { min-width: 120px; }
}
@media (max-width: 768px) {
    .artists-group { min-width: 100%; }
}  


/* ===== Artist Bild Section oberhalb ===== */

.artist-hall-wrapper {
    position: relative;
}

/* echte Section – KEIN Overlay */
.artist-image-section {
    width: 100%;
    margin-bottom: 40px;
}

/* zentriert den Inhalt */
/* Bild-Container */
.artist-image-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;      /* feste Breite */
    height: 150px;     /* feste Höhe */
    margin: 0 auto;    /* zentrieren */
}

/* Bild */
.artist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* proportional skalieren, nicht verzerren */
    border-radius: 0;    
    box-shadow: none;    
    background: none;
    display: block;
}

/* Close Button */
.artist-image-close {
    position: absolute;
    top: -12px;
    right: 0;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .artist-image {
        max-width: 100%;
    }
}/* End custom CSS */