.section-template--28915065586005__custom_liquid_MN3KyT-padding {
  padding-top: calc(0px * 0.75);
  padding-bottom: calc(0px  * 0.75);
}

@media screen and (min-width: 750px) {
  .section-template--28915065586005__custom_liquid_MN3KyT-padding {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

/* Variantenauswahl Modal - EXAKT wie in c24-tabs-section.liquid */
.c24-variant-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c24-variant-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.c24-variant-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10001;
}

.c24-variant-modal-content h3 {
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
}

.c24-variant-modal-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  color: #333;
}

.c24-variant-modal-select option {
  color: #333;
  background: #fff;
}

.c24-variant-modal-select:hover,
.c24-variant-modal-select:focus {
  border-color: #FFBD59;
  outline: none;
}

.c24-variant-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.c24-variant-modal-cancel,
.c24-variant-modal-add {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1.1rem;
}

.c24-variant-modal-cancel {
  background: #f0f0f0;
  color: #333;
}

.c24-variant-modal-cancel:hover {
  background: #e0e0e0;
}

.c24-variant-modal-add {
  background: #111;
  color: #fff;
}

.c24-variant-modal-add:hover {
  background: #FFBD59;
  color: #111;
}


.newsletter-section {
  position: relative;
  background-image: url('/assets/img/c24-community-highfive-20260802.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 650px;
  width: 100%;
  padding: 0 24px;
  text-align: center;
}

.newsletter-content {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 48px 44px 52px 44px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-content:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 35px 100px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 189, 89, 0.1);
}

.newsletter-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.newsletter-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 400;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.newsletter-email-container {
  flex: 1;
  min-width: 300px;
}

.newsletter-email {
  width: 100%;
  padding: 20px 24px;
  border: 2px solid rgba(232, 232, 232, 0.6);
  border-radius: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline: none;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.newsletter-email:focus {
  border-color: #FFBD59;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 0 0 4px rgba(255, 189, 89, 0.12),
    0 8px 24px rgba(255, 189, 89, 0.15);
  transform: translateY(-2px);
}

.newsletter-email::placeholder {
  color: #999;
  font-weight: 400;
}

.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: #111;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin: 0;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.newsletter-submit:hover {
  background-color: #FFBD59;
  color: #000;
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(255, 189, 89, 0.5);
}

.newsletter-submit:active {
  transform: scale(1.02);
}

.newsletter-submit-icon {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
}

.newsletter-submit:hover .newsletter-submit-icon {
  transform: translateX(4px);
}

.newsletter-disclaimer {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.newsletter-link {
  color: #FFBD59;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.newsletter-link:hover {
  color: #111;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-section {
    min-height: 480px;
    padding: 40px 0;
    background-attachment: scroll;
  }
  
  .newsletter-container {
    padding: 0 20px;
  }
  
  .newsletter-content {
    padding: 40px 32px 44px 32px;
    border-radius: 24px;
  }
  
  .newsletter-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .newsletter-text {
    font-size: 1.2rem;
    margin-bottom: 28px;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    gap: 16px;
  }
  
  .newsletter-email-container {
    min-width: 100%;
  }
  
  .newsletter-email {
    padding: 18px 22px;
    font-size: 1rem;
    border-radius: 16px;
  }
  
  .newsletter-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .newsletter-content {
    padding: 32px 24px 36px 24px;
    border-radius: 20px;
  }
  
  .newsletter-title {
    font-size: 1.7rem;
  }
  
  .newsletter-text {
    font-size: 1.1rem;
  }
  
  .newsletter-disclaimer {
    font-size: 0.9rem;
  }
  
  .newsletter-email {
    padding: 16px 20px;
    border-radius: 14px;
  }
  
  .newsletter-submit {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
  }
}

