.wbdb-section {
  display: block;
  clear: both;
  width: 100%;
  margin: 35px 0;
}

.wbdb-container {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 16px;
}

.wbdb-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wbdb-promo-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--wbdb-card-bg, #fff1f4);
  color: var(--wbdb-card-text, #273241);
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(47, 55, 71, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.wbdb-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(241, 95, 134, 0.13);
  color: #111827;
  text-decoration: none;
}

.wbdb-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.78) 0 22%, transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.08));
}

.wbdb-promo-copy {
  position: static;
  z-index: 2;
  width: 58%;
  min-height: 210px;
  padding: 42px 0 78px 34px;
}

.wbdb-promo-copy h2 {
  margin: 0 0 16px;
  color: var(--wbdb-card-accent, #f1427c);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.wbdb-promo-copy p {
  min-height: 50px;
  margin: 0;
  color: var(--wbdb-card-text, #273241);
  font-size: 18px;
  line-height: 1.42;
  font-weight: 700;
}

.wbdb-promo-link {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wbdb-card-text, #273241);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.wbdb-promo-link:hover {
  color: var(--wbdb-card-accent, #f1427c);
  text-decoration: none;
}

.wbdb-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 19px;
  line-height: 1;
  transition: transform 0.18s ease;
}

.wbdb-promo-link:hover .wbdb-arrow {
  transform: translateX(3px);
}

.wbdb-promo-link--static {
  cursor: default;
}

.wbdb-promo-media {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 48%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.wbdb-promo-media img {
  display: block;
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.wbdb-benefit-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff6f8, #fff1f4);
  box-shadow: 0 10px 28px rgba(47, 55, 71, 0.04);
}

.wbdb-benefit {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.wbdb-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 73, 126, 0.11);
  color: #f4497e;
}

.wbdb-benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wbdb-benefit-copy {
  display: block;
  min-width: 0;
}

.wbdb-benefit-copy strong,
.wbdb-benefit-copy span {
  display: block;
  overflow-wrap: anywhere;
}

.wbdb-benefit-copy strong {
  margin: 0 0 4px;
  color: #26313f;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.wbdb-benefit-copy span {
  color: #6c7584;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .wbdb-promo-grid {
    gap: 16px;
  }

  .wbdb-promo-copy {
    width: 64%;
    padding-left: 24px;
  }

  .wbdb-promo-copy h2 {
    font-size: 22px;
  }

  .wbdb-benefit-strip {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}

@media (max-width: 991px) {
  .wbdb-section {
    margin: 25px 0;
  }

}

@media (max-width: 767px) {
  .wbdb-section {
    margin: 20px 0;
  }

  .wbdb-promo-grid,
  .wbdb-benefit-strip {
    grid-template-columns: 1fr;
  }

  .wbdb-promo-card {
    min-height: 184px;
  }

  .wbdb-promo-copy {
    width: 62%;
    min-height: 184px;
    padding: 28px 0 66px 22px;
  }

  .wbdb-promo-copy h2 {
    font-size: 21px;
  }

  .wbdb-promo-copy p {
    min-height: 0;
    font-size: 15px;
  }

  .wbdb-promo-link {
    left: 22px;
    bottom: 26px;
  }

  .wbdb-promo-media {
    right: 2px;
    width: 46%;
  }

  .wbdb-promo-media img {
    max-height: 150px;
  }

  .wbdb-benefit-strip {
    padding: 18px;
  }
}

@media (max-width: 479px) {
  .wbdb-section {
    margin: 10px 0;
  }

}
