.rera-teaser {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-soft: #DBEAFE;
  --ink: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  padding: 48px 0 64px;
}

.rera-teaser * {
  box-sizing: border-box;
}

.rera-teaser .container {
  max-width: 1320px;
}

.rera-teaser-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 28px -10px rgba(15, 23, 42, 0.1);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}

.rera-teaser-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.rera-teaser-icon {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.rera-teaser-icon svg {
  width: 34px;
  height: 34px;
}

.rera-teaser-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.rera-teaser-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.rera-teaser-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.rera-teaser-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 14px;
  word-break: break-word;
}

.rera-teaser-portal-link:hover,
.rera-teaser-portal-link:focus-visible {
  color: var(--blue-dark);
  text-decoration: underline;
}

.rera-teaser-text {
  font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: none;
}

.rera-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 11px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px -6px rgba(37, 99, 235, 0.45);
}

.rera-teaser-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.rera-teaser-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  color: #fff;
}

.rera-teaser-btn:hover svg {
  transform: translateX(2px);
}

@media (max-width: 700px) {
  .rera-teaser-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.pd-property-insights-wrap .rera-teaser {
  padding-top: 0;
}

@media (max-width: 480px) {
  .rera-teaser {
    padding: 36px 0 48px;
  }

  .rera-teaser-card {
    padding: 26px 22px;
    gap: 18px;
  }

  .rera-teaser-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .rera-teaser-icon svg {
    width: 26px;
    height: 26px;
  }

  .rera-teaser-btn {
    width: 100%;
    justify-content: center;
  }
}
