.ipe-ad-title {
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 2px;
}

.sponsor-carousel {
  width: 100%;
}

.sponsor-card {
  position: relative;
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px dashed rgba(255, 255, 255, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
  transition: opacity .22s ease, transform .22s ease;
}

.sponsor-card.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

.sponsor-card > * {
  position: relative;
}

.sponsor-card.vault-tec { border-color: rgba(244, 196, 48, .35); }
.sponsor-card.robco { border-color: rgba(120, 255, 120, .22); }

.sponsor-card.vault-tec::before,
.sponsor-card.robco::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sponsor-card.vault-tec::before {
  background:
    radial-gradient(circle at 25% 20%, rgba(244, 196, 48, .22), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(10, 111, 176, .22), transparent 60%);
}

.sponsor-card.robco::before {
  background:
    radial-gradient(circle at 25% 25%, rgba(120, 255, 120, .20), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(10, 60, 35, .28), transparent 60%),
    linear-gradient(90deg, rgba(10, 45, 30, .26), rgba(30, 120, 70, .18));
}

.sponsor-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .92);
  flex: 0 0 auto;
}

.sponsor-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.sponsor-logo svg {
  display: block;
  width: 30px;
  height: 30px;
}

.sponsor-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.sponsor-name {
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sponsor-line {
  font-size: 12px;
  color: rgba(255, 255, 255, .60);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sponsor-cta {
  display: none;
}

.sponsor-dots {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  padding-left: 6px;
}

.sponsor-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .10);
  cursor: pointer;
}

.sponsor-dot.active {
  background: rgba(255, 255, 255, .55);
}
