{# ============================== #}
{#            CARD BASE           #}
{# ============================== #}

.c-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
  padding-bottom: 25px;

}

.flexi-card-outer {
  height: 100%;
}

.c-card img {
  display: block;
  margin: auto;
}

.c-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.c-card-content blockquote {
  margin: 0 0 25px 0;
  padding-left: 0;
  border-left: 0;
}


.c-card img{


}

{# ============================== #}
{#        TEAM CARD LAYOUT        #}
{# ============================== #}

.c-card-mod {
  position: relative;
  z-index: 1;
}

.c-card-mod .c-social-team-con {
  position: absolute;
  bottom: 25px;
  display: inline-flex;
}

.c-card-mod .c-social-team-con a {
  padding-left: 0;
  padding-right: 10px;
}

{# ============================== #}
{#            BUTTONS             #}
{# ============================== #}

.c-card-btn-con {
  padding-top: 30px;
  margin-top: auto;
}

.load-more-row {
  margin-top: 25px;
}

.load-more-btn {
  cursor: pointer;
}

{# ============================== #}
{#         FILTER + SEARCH        #}
{# ============================== #}

.filter-row {
  display: flex;
  flex-wrap: nowrap;
  flex-flow: nowrap !important;
  margin-bottom: 15px;
}

.search-bar {
  margin-left: 15px;
  width: 360px;
}

{# ============================== #}
{#        MOBILE RESPONSIVE       #}
{# ============================== #}

@media (max-width: 575px) {
  .filter-row {
    flex-direction: column;
    flex-flow: wrap !important;
    width: 100%;
    padding-right: 15px;
  }

  .filter-container {
    width: auto !important;
    flex-direction: column;
  }

  .filter-container .select-container {
    width: 100%;
  }

  .search-bar {
    width: auto;
    margin-bottom: 10px;
  }
}
.testimonial-card::before {
  /* Der content muss leer sein, damit das Element erzeugt wird */
  content: '';

  /* Positionierung bleibt gleich */
  position: absolute;
  top: 15px;
  left: 15px;

  /* --- NEU: SVG als Hintergrundbild --- */
  /* WICHTIG: Ersetzen Sie die URL durch den Link zu Ihrer SVG-Datei! */
  background-image: url('https://akarion.com/hubfs/Website/website-assets/quote.svg');
  
  /* Stellt sicher, dass das Bild nicht wiederholt wird */
  background-repeat: no-repeat;
  
  /* Passt die Grösse des Bildes an das Element an */
  background-size: contain; 
  
  /* Geben Sie dem Element eine feste Grösse für das Icon */
  width: 60px;
  height: 60px;

  /* Die alten Font-Eigenschaften (font-family, color, etc.) werden nicht mehr benötigt */
  z-index: 1;
}


.aka-c-card .c-card {
padding-top: 25px !important;
}

.aka-c-card .c-card-content{
padding-top: 15px !important;
}