/* ── Esportia Promotion Card ──────────────────────────────────────────── */
.esportia-promo-card {
  background: #0B1F4D;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(11, 31, 77, 0.12);
  font-family: 'Inter', sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.esportia-promo-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.esportia-promo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.esportia-promo-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
}

.esportia-promo-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 16px;
  flex-grow: 1;
}

.esportia-promo-cta {
  background: #22D3EE;
  color: #0B1F4D;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease;
}

.esportia-promo-cta:hover {
  background: #1BBBD4;
  color: #0B1F4D;
}
