/*
 * Worxogo Nudge Banner Widget CSS
 *
 * Elementor Nudge Banner Widget Styles
 */

/* ===== NUDGE BANNER SECTION ===== */
.nudge-banner-section {
  width: 100%;
  box-sizing: border-box;
}

.nudge-banner {
  background: linear-gradient(93.4deg, #1e0059 0%, #290074 100%);
  border-radius: 8px;
  padding: 52px;
  display: flex;
  align-items: center;
  gap: 58px;
  overflow: hidden;
  box-sizing: border-box;
}

.nudge-banner__content {
  flex: 1;
  min-width: 368px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.nudge-banner__title {
  color: #ffffff;
  font-family: "Albert Sans", sans-serif;
  font-size: 42px;
  line-height: 110%;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

.nudge-banner__text {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}

.nudge-banner__image {
  border-radius: 8px;
  max-width: 285px !important;
  height: 198px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nudge-banner-section {
    padding: 0px 20px;
  }

  .nudge-banner {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .nudge-banner__content {
    min-width: auto;
  }

  .nudge-banner__image {
    width: 100%;
    max-width: 285px;
  }
}

@media (max-width: 576px) {
  .nudge-banner-section {
    padding: 0 15px 0;
    text-align: center;
  }

  .nudge-banner {
    padding: 30px 15px;
  }

  .nudge-banner__title {
    font-size: 30px;
  }

  .nudge-banner__content {
    gap: 30px;
  }
}
