.hero-image-section {
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
}

.hero-image-section .container {
  min-height: 80vh;
  position: relative;
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* 🔥 ФОН */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image img {
  object-fit: cover;
  object-position: center;
}

/* затемнення */
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.18) 35%,
    rgba(0, 0, 0, 0.22) 100%
  );
}

/* 🔥 КОНТЕНТ */
.hero-image__content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* 👇 ВИСОТА ТЕПЕР ВІД КОНТЕНТУ */
  padding: 120px 24px;
}

/* текст */
.hero-image__text-shadow {
  max-width: 1100px;
  width: 100%;
  color: #fff;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.55);
}

.hero__top-subtitle {
  margin-bottom: 14px;
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-image__title {
  font-weight: 500;
}

.hero-image__text {
  margin-top: 18px;
  font-size: clamp(18px, 1.8vw, 34px);
}

@media (max-width: 1024px) {
  .hero-image-section .container {
    min-height: 40vh;
  }
}

/* section--divider */
.section--divider {
  padding: 75px 0;
  border-bottom: 1px solid;
  border-bottom-color: var(--colorBorder);
}

.section--divider .container {
  max-width: 1000px;
}

.article-box {
  background-color: transparent !important;
}
.article-box * {
  color: var(--text-color-black) !important;
}
