.contentBlock {
  overflow: visible;
  position: relative;
  width: 100%;
}

.contentBlock__background {
  inset: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.contentBlock__background-svg {
  display: block;
  height: auto;
  left: 50%;
  max-width: none;
  opacity: 0.98;
  position: absolute;
  top: -84px;
  transform: translateX(-52%);
  width: 1680px;
}

.contentBlock__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  width: 90%;
  z-index: 1;
}

.contentBlock__title {
  color: #ffffff;
  font-family: "Gilda Display", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.2;
  margin: 0;
}

.contentBlock__text {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.contentBlock__text > :first-child {
  margin-top: 0;
}

.contentBlock__text > :last-child {
  margin-bottom: 0;
}

.contentBlock__text h3,
.contentBlock__text h4,
.contentBlock__text h5,
.contentBlock__text h6,
.contentBlock__text strong,
.contentBlock__text b {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
}

.contentBlock__text p,
.contentBlock__text ul,
.contentBlock__text ol {
  margin: 0;
}

.contentBlock__text ul,
.contentBlock__text ol {
  padding-left: 28px;
}

.contentBlock__text li + li {
  margin-top: 4px;
}

.contentBlock__text a {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contentBlock__text a::after {
  background-image: var(--content-block-link-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border-radius: 3px;
  content: "";
  display: inline-block;
  flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.contentBlock__button {
  align-items: center;
  background: #0d0d0d;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  line-height: 1.6;
  padding: 10px 20px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: fit-content;
}

.contentBlock__button:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
  .contentBlock__background-svg {
    top: -64px;
    transform: translateX(-51%);
    width: 1480px;
  }

  .contentBlock__title {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .contentBlock__background-svg {
    top: -46px;
    transform: translateX(-50%);
    width: 1320px;
  }

  .contentBlock__title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .contentBlock__background-svg {
    top: -20px;
    width: 1120px;
  }

  .contentBlock__container {
    gap: 18px;
  }

  .contentBlock__title {
    font-size: 36px;
  }

  .contentBlock__text {
    font-size: 16px;
    gap: 22px;
  }

  .contentBlock__text h3,
  .contentBlock__text h4,
  .contentBlock__text h5,
  .contentBlock__text h6,
  .contentBlock__text strong,
  .contentBlock__text b {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contentBlock__background-svg {
    top: -8px;
    width: 980px;
  }
}
