.ctaBlock {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #000000;
}

.ctaBlock__top {
  padding: 80px 64px 40px;
}

.ctaBlock__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.ctaBlock__column {
  flex: 1 1 0;
  min-width: 0;
}

.ctaBlock__title {
  margin: 0;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
}

.ctaBlock__text {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
}

.ctaBlock__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ctaBlock__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out, color 0.15s ease-out,
    border-color 0.15s ease-out, transform 0.15s ease-out,
    box-shadow 0.15s ease-out;
}

.ctaBlock__button--primary {
  background-color: #1e1e1e;
  color: #ffffff;
  border: none;
}

.ctaBlock__button--secondary {
  background-color: #ffffff;
  color: #000000;
  border: 0.5px solid #909090;
}

.ctaBlock__button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ctaBlock__button--secondary:hover {
  background-color: #f5f5f5;
}

.ctaBlock__image-wrapper {
  width: 100%;
}

.ctaBlock__image {
  display: block;
  width: 100%;
  max-height: 648px;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .ctaBlock__top {
    padding: 64px 32px 32px;
  }

  .ctaBlock__inner {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .ctaBlock__top {
    padding: 48px 20px 24px;
  }

  .ctaBlock__inner {
    flex-direction: column;
    gap: 32px;
  }

  .ctaBlock__title {
    font-size: 32px;
  }

  .ctaBlock__actions {
    flex-wrap: wrap;
  }
}


