/* === Voltina Content Article === */

.voltina-content-article {
  background-color: #ffffff;
}

/* Heading */
.voltina-article-heading {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Subtiele accentlijn onder heading */
.voltina-article-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 1.25rem;
  background-color: #f08048; /* Voltina pink */
  border-radius: 999px;
}

/* Content */
.voltina-article-content {
  font-family: "Mulish", sans-serif;
  line-height: 1.75;
  color: #000;
}

.voltina-article-content p {
  margin-bottom: 1.25rem;
}

.voltina-article-content p:last-child {
  margin-bottom: 0;
}

/* Image wrapper */
.voltina-article-image {
  border-radius: 1.25rem;
  overflow: hidden;
}

/* Kleine uplift zodat beeld niet “plakt” */
@media (min-width: 768px) {
  .voltina-article-image {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  }
}

/* Achtergrondafbeelding */
.voltina-content-article {
  position: relative;
  overflow: hidden;
}

.voltina-content-article__bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.voltina-content-article__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(var(--bg-blur, 0px));
  transform: scale(1.05); /* voorkomt blur-randen */
  will-change: filter, transform;
}

/* Overlay */
.voltina-content-article__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, var(--overlay-opacity, 0.5));
}
