/* Win-Win — full-bleed photo card with right-aligned text */
.win-win-section {
  background: #0b0b0d;
  padding: 64px 40px;
}

.win-win-container {
  max-width: 1307px;
  margin: 0 auto;
}

.win-win-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 900px;
  padding: 48px;
  box-sizing: border-box;
  border-radius: 24px;
  overflow: hidden;
}

.win-win-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.win-win-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    260deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 35%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0) 85%
  );
}

.win-win-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.win-win-badge {
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  height: 48px;
  background: rgba(23, 102, 255, 0.2);
  border: 1px solid #ffffff;
  border-radius: 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #edf3ff;
}

.win-win-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 58px;
  color: #e3ecff;
  margin: 0;
}

.win-win-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #e3ecff;
  margin: 0;
}

.win-win-example {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  color: #b7d0ff;
  margin: 0;
}

.win-win-example strong {
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .win-win-section {
    padding: 56px 20px;
  }

  .win-win-card {
    min-height: 560px;
    padding: 24px;
    align-items: flex-end;
  }

  .win-win-badge {
    font-size: 18px;
    height: 40px;
    padding: 0 18px;
  }

  .win-win-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .win-win-text {
    font-size: 18px;
    line-height: 26px;
  }

  .win-win-example {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .win-win-card {
    min-height: 480px;
  }

  .win-win-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .win-win-example {
    font-size: 22px;
    line-height: 30px;
  }
}
