/* EasyDecide 首页 · 随手办入口广告位 */
.ed-ssb-ad {
  padding: 28px 0 40px;
  background:
    radial-gradient(520px 180px at 12% 0%, rgba(59, 130, 246, 0.14), transparent 55%),
    radial-gradient(480px 200px at 88% 100%, rgba(198, 240, 74, 0.18), transparent 50%),
    linear-gradient(180deg, #f4faf6 0%, #eef6ff 100%);
}

.ed-ssb-ad__card {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 22px;
  text-decoration: none;
  color: #fff;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #1d4ed8 0%, #2563eb 42%, #0f766e 100%);
  box-shadow: 0 16px 40px rgba(29, 78, 216, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ed-ssb-ad__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(29, 78, 216, 0.28);
}

.ed-ssb-ad__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.ed-ssb-ad__badge img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #fff;
}

.ed-ssb-ad__body h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 3.2vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.ed-ssb-ad__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 40em;
  font-weight: 550;
}

.ed-ssb-ad__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f2f22;
  background: #c6f04a;
  box-shadow: 0 8px 20px rgba(15, 47, 34, 0.18);
}

@media (min-width: 800px) {
  .ed-ssb-ad__card {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 28px 28px;
    column-gap: 24px;
  }
  .ed-ssb-ad__badge {
    grid-column: 1;
  }
  .ed-ssb-ad__body {
    grid-column: 1;
  }
  .ed-ssb-ad__cta {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    min-width: 148px;
  }
}
