/* components/organisms/promo-banner/promo-banner.css */

.c-promo-banner {
  background: linear-gradient(90deg, #009de8 0%, #6b3fa0 55%, #c0386e 100%);
  border-radius: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 30px auto;
  max-width: 1200px;
  padding: 16px 24px 16px 16px;
  position: relative;
  width: calc(100% - 40px);
}

/* Dotted decorative pattern overlay on the right */
.c-promo-banner::after {
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  border-radius: 50px;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  pointer-events: none;
}

/* White circle on the left */
.c-promo-banner__circle {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 64px;
  justify-content: center;
  width: 64px;
  position: relative;
  z-index: 1;
}

/* Bold text in the middle */
.c-promo-banner__text {
  color: #fff;
  flex: 1;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* CTA Button */
.c-promo-banner__cta {
  background-color: #fff;
  border: none;
  border-radius: 50px;
  color: #c0386e;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 32px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  z-index: 1;
}

.c-promo-banner__cta:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  color: #8b2460;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .c-promo-banner {
    border-radius: 16px;
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
    width: calc(100% - 32px);
  }

  .c-promo-banner::after {
    width: 100%;
    border-radius: 16px;
    opacity: 0.5;
  }

  .c-promo-banner__text {
    font-size: 16px;
  }

  .c-promo-banner__cta {
    padding: 10px 28px;
  }
}
