    /* =============================
   AV INFO SECTION
============================= */
.av_info_module_container {
  max-width: 1400px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
}

.av_info_module_content {
  display: flex;
  align-items: flex-start; /* Geändert von center zu flex-start */
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 30px;
}

.av_info_module_content p { 
  text-align: left;
  font-size: 1.0em;
  color: #05164d;
 }

.av_info_module_image-col {
  flex: 1 1 27%;
  min-width: 250px;
  text-align: center;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: sticky; /* Neu: Bild fixieren */
  top: 20px; /* Abstand vom oberen Rand */
  align-self: flex-start; /* Neu: Verhindert Höhenanpassung */
  margin-top: -20px;
}

.av_info_module_image-col img {
   /* max-width: 83%;
  height: auto;
  display: block;
  margin: 0 auto;
  */
  transition: transform 0.3s ease;
}

.av_info_module_text-col {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.av_info_module_info-box {
  background-color: #F6F9FC;
  border-radius: var(--border-radius-md);
  color: var(--primary-blue);
  line-height: 1.7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-blue);
  border-top: solid #f3f3f3 1px;
  border-bottom: solid #f3f3f3 1px;
  border-right: solid #f3f3f3 1px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.av_info_module_info-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/* Header Stil für ausklappbare Boxen */
.av_info_module_info-box_header {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #F6F9FC;
}

.av_info_module_info-box_headline {
  margin: 0 !important;
  font-weight: 700;
  font-size: 1.1em;
  flex: 1;
}

.av_info_module_info-box_toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.av_info_module_info-box_toggle::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Inhalt Stil */
.av_info_module_info-box_content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f6f9fc;
  border-top: 1px solid #e0e8f0;
}

.av_info_module_info-box_subline {
  margin: 0 !important;
  padding: 15px 0;
  color: #444;
  font-size: 1em;
  line-height: 1.7;
}

/* Aktive Box Stil */
.av_info_module_info-box.active {
  border-left: 4px solid var(--secondary-yellow);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.av_info_module_info-box.active .av_info_module_info-box_content {
  max-height: 500px;
  padding: 0 30px;
}

.av_info_module_info-box.active .av_info_module_info-box_toggle::after {
  transform: rotate(225deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .av_info_module_content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .av_info_module_image-col {
    flex-basis: auto;
    width: 60%;
    max-width: 250px;
    margin-bottom: 20px;
    position: relative; /* Auf kleineren Bildschirmen normale Positionierung */
    top: 0;
    margin: auto;
  }
  .av_info_module_text-col {
    flex-basis: auto;
    width: 100%;
  }

.av_info_module_image-col img {
  max-width: 100%;
  margin-bottom: 40px;
}
}

@media (max-width: 480px) {
  .av_info_module_info-box {
    font-size: 0.9em;
  }
  .av_info_module_info-box_header {
    padding: 12px 15px;
  }
  .av_info_module_info-box_content {
    padding: 0 15px;
  }
  .av_info_module_image-col {
    width: 70%;
  }
  .av_info_module_info-box.active .av_info_module_info-box_content {
    padding: 0 15px;
  }
}



.av_info_image-container {
  position: relative;
  width: 430px;
  height: 438px;
  overflow: hidden;  /* Verhindert Überlauf */
}

.av_info_image-large {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90%;
    width: auto;
    object-fit: contain;
}

.av_info_image-small {
    position: absolute;
    top: -10px;
    right: -38px;
    height: 54%;
    width: auto;
    object-fit: contain;
    margin: 0px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

@media (max-width: 1278px) { 
.av_info_image-small {
   display: none;
}
}

@media (max-width: 768px) { 
 .av_info_image-large {
   display: none;
}

.av_info_image-small {
   display: none;
}

.av_info_image-container {
   display: none;
}

.av_info_module_container {
  margin: 0px auto 50px;
}
}