.erp-inline-cta-banner {
  position: relative;
  width: 100%;
  margin: 28px 0 34px;
  border-radius: 16px;
  overflow: hidden;
  background: #eef2f7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.erp-inline-cta-banner__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  background: #eef2f7;
}

.erp-inline-cta-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.erp-inline-cta-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 32px;
  box-sizing: border-box;
.erp-inline-cta-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 32px;
  box-sizing: border-box;

  /* CLEAN overlay (no gradient) */
  background: rgba(255, 255, 255, 0.75);
}

.erp-inline-cta-banner__content {
  max-width: 380px;
}

.erp-inline-cta-banner__title {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: #1e293b;
}

.erp-inline-cta-banner__description {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.erp-inline-cta-banner__actions {
  display: flex;
  justify-content: flex-start;
}

.erp-inline-cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  background: #cb4c4e;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.erp-inline-cta-banner__button:hover {
  background: #a83c3e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

@media (max-width: 767px) {
  .erp-inline-cta-banner {
    margin: 24px 0 30px;
    border-radius: 14px;
  }

  .erp-inline-cta-banner__media {
    aspect-ratio: 4 / 5;
  }

  .erp-inline-cta-banner__overlay {
    align-items: flex-end;
    padding: 20px;
    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, 0.08) 0%,
        rgba(248, 250, 252, 0.58) 48%,
        rgba(248, 250, 252, 0.94) 100%
      );
  }

  .erp-inline-cta-banner__content {
    max-width: none;
  }

  .erp-inline-cta-banner__title {
    font-size: 24px;
  }

  .erp-inline-cta-banner__description {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .erp-inline-cta-banner__actions {
    justify-content: center;
  }

  .erp-inline-cta-banner__button {
    width: 100%;
  }
}

.erp-inline-cta-banner {
  position: relative;
  width: 100%;
  margin: 28px 0 34px;
  border-radius: 16px;
  overflow: hidden;
  background: #eef2f7;

  /* NEW */
  border: 1px solid #1e293b;

  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}