.elementor-3900 .elementor-element.elementor-element-d7184e1{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3900 .elementor-element.elementor-element-d8b73a3.tp-has-beaf > .elementor-widget-container:before{width:100%;height:100%;top:2%;bottom:2%;left:2%;right:2%;}.elementor-3900 .elementor-element.elementor-element-d8b73a3.tp-has-beaf > .elementor-widget-container:after{left:2%;transform:rotate(0deg);}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS *//* === Allgemein: Weiches Scrollverhalten === */
html {
  scroll-behavior: smooth;
}

/* === Kategorie-Boxen === */
.category-box {
  width: 150px;
  height: 150px;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.category-box:hover {
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.category-box h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  margin: 0px 0 0 0;
  height: 44px; /* Exakte Höhe für 2-Zeiler */
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
  overflow: hidden;
}

.category-box:hover h4 {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.category-box i,
.category-box svg {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* === Kategorie-Gruppen-Container === */
.actor-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: none;
}

/* === Portfolio-Box Stil === */
.bw-portfolio-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  border-right: 3px solid rgba(255, 255, 255, 0.05);
}

.bw-portfolio-box h2,
.bw-portfolio-box p {
  color: white;
  font-family: 'Poppins', sans-serif;
}

.bw-portfolio-box h2 {
  font-size: 32px;
  margin-bottom: 18px;
  position: relative;
  line-height: 1.4;
}

.bw-portfolio-box h2::after {
  content: '';
  width: 60px;
  height: 2px;
  background: white;
  display: block;
  margin-top: 12px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.bw-portfolio-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  margin-top: 10px;
}

.bw-portfolio-box .elementor-button {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  margin-top: 24px;
  transition: all 0.3s ease-in-out;
}

.bw-portfolio-box .elementor-button:hover {
  background: white;
  color: black;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

/* === Responsive: Tablets (bis 1024px) === */
@media (max-width: 1024px) {
  .actor-container {
    flex-direction: column;
    padding: 40px 30px;
  }

  .actor-container .actor-profile h2 {
    font-size: 26px;
  }

  .actor-container .actor-profile p {
    font-size: 15px;
  }

  .bw-portfolio-box {
    padding: 30px;
    margin-top: 40px;
  }

  .actor-categories {
    padding: 40px 15px;
    gap: 30px;
  }

  .category-box {
    width: 130px;
    height: auto;
    padding: 18px 12px;
  }
}

/* === Responsive: Smartphones (bis 768px) === */
@media (max-width: 768px) {
  .actor-container {
    padding: 30px 20px;
    text-align: center;
    align-items: center;
  }

  .actor-container .actor-profile h2 {
    font-size: 22px;
  }

  .actor-container .actor-profile p {
    font-size: 14px;
  }

  .actor-container .actor-profile .neon-button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .category-box {
    width: 45vw;
    height: auto;
    padding: 16px 8px;
  }

  .category-box h4 {
    font-size: 15px;
    line-height: 1.3;
    height: auto;
    padding: 5px 0;
  }

  .category-box i,
  .category-box svg {
    font-size: 30px;
  }

  .actor-categories {
    padding: 30px 10px 20px;
    gap: 20px;
  }

  .bw-portfolio-box {
    padding: 20px;
    margin-top: 30px;
  }
}/* End custom CSS */