section.featured-video {
  position: relative;
  padding: 0px 25%;
  overflow: hidden;
}

/* Texture effect with white intrusions */
section.featured-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background-size: cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Contenitore principale */
.featured-video .container {
  position: relative;
  z-index: 2;
}

/* Descrizione e testo */
.featured-video-description {
  padding-right: 40px;
  margin-bottom: 40px;
}

.featured-video-title {
  font-family: "IvyPresto Headline", serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 56px; /* 124% */
  letter-spacing: -0.151389px;
  color: #000000;
  margin-bottom: 30px;
}

.featured-video-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #333;
}

/* Pulsante */
.featured-video-cta .featured-video-button {
  background: rgba(255, 255, 255, 0.8);

  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
}

.featured-video-cta .featured-video-button:hover {
  background: rgba(255, 255, 255, 1);
}

.featured-video-button .button-icon {
  margin-left: 8px;
}

/* Video container */
.featured-video-wrapper {
  position: relative;
  overflow: hidden;
}

.video-container {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.video-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-controls button:hover {
  background: rgba(255, 255, 255, 1);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
  .featured-video .row {
    flex-direction: column;
  }

  .featured-video-description {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .featured-video-title {
    font-size: 38px;
    line-height: 48px;
  }
}

.bottom-video {
  padding: 40px 0;
  .tag-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .cta-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
  }
}

@media (max-width: 576px) {
  section.featured-video {
    padding: 80px 0;
    margin: 20px;
  }

  .featured-video-title {
    font-size: 32px;
    line-height: 40px;
  }
}
