.ctaBlock {
  background: #021b22;
  overflow: hidden;
  position: relative;
}

.ctaBlock__media {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.ctaBlock__bg {
  display: block;
  height: 100%;
  left: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.ctaBlock__overlay {
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  position: absolute;
}

.ctaBlock__container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 112px 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

.ctaBlock__content {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  width: 100%;
}

.ctaBlock__title {
  font-family: "Gilda Display", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: 1.2;
  margin: 0;
  max-width: 100%;
}

.ctaBlock__logo {
  display: block;
  height: auto;
  margin: -8px 0 0;
  max-width: min(100%, 320px);
}

.ctaBlock__text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}

.ctaBlock__text p {
  margin: 0;
}

.ctaBlock__text p + p {
  margin-top: 0.6em;
}

.ctaBlock__text a {
  color: #ffffff;
  text-decoration: underline;
}

.ctaBlock__text strong,
.ctaBlock__text b {
  font-weight: 700;
}

.ctaBlock__actions {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.ctaBlock__button {
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  justify-content: center;
  line-height: 1.6;
  min-height: 48px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ctaBlock__button--primary {
  background: #00ccff;
  border: 1px solid #00ccff;
  color: #ffffff;
}

.ctaBlock__button--primary:hover {
  background: #00728e;
  border: 1px solid #00728e;
}

.ctaBlock__button--secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.ctaBlock__button--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1440px) {
  .ctaBlock__container {
    width: 90%;
  }
}

@media (max-width: 992px) {
  .ctaBlock__container {
    padding: 88px 0;
  }

  .ctaBlock__title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .ctaBlock__container {
    padding: 72px 0;
  }

  .ctaBlock__title {
    font-size: 38px;
  }

  .ctaBlock__text {
    font-size: 18px;
  }

  .ctaBlock__actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .ctaBlock__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ctaBlock__container {
    padding: 64px 0;
  }

  .ctaBlock__title {
    font-size: 32px;
  }

  .ctaBlock__text {
    font-size: 16px;
  }
}
