/* Identyczne stylowanie jak Baner CTA (cta-banner) – tło + przycisk */
.cta-banner-wrapper {
  box-sizing: border-box;
  width: 100%;
  padding-top: 0.9375rem;
}

.cta-banner-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.cta-banner {
  box-sizing: border-box;
  width: 100%;
  margin-top: 0;
  position: relative;
  background-color: #23c767;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cta-banner .cta-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
  background-repeat: repeat;
  z-index: 2;
  pointer-events: none;
}

.cta-banner .cta-banner-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 25px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

@media (max-width: 991px) {
  .cta-banner .cta-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 0.9375rem;
  }
}

.cta-text {
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  display: block;
  color: rgb(255, 255, 255);
  font-family: type-36, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.cta-button {
  position: relative;
  z-index: 3;
}

/* CTA Zapisz się – pełna szerokość ekranu, układ pionowy */
.training-cta-block.cta-banner-wrapper {
  padding-top: 0;
  width: 100%;
}

.training-cta-block .cta-banner-container {
  max-width: none;
  width: 100%;
  padding: 0;
}

.training-cta-block .cta-banner {
  width: 100%;
}

.training-cta-block .cta-banner-content {
  flex-direction: column;
  text-align: center;
  gap: 1.25rem;
  padding: 4.375rem 15px;
}

.training-cta-block .cta-text {
  flex: none;
  height: auto;
  line-height: 1.3;
}
