.partners-feature-section {
  padding-bottom: 0;
}

.partners-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.partner-card {
  position: relative;
  border-radius: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255,138,0,0.44), rgba(255,99,0,0.18)),
    linear-gradient(180deg, rgba(24, 18, 13, 0.96), rgba(18, 15, 12, 0.96));
  border: 1px solid rgba(255,138,0,0.32);
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,138,0,0.48);
  box-shadow: 0 22px 40px rgba(0,0,0,0.34);
}

.partner-card::before,
.partner-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  filter: blur(60px);
  opacity: 0.4;
  animation: partner-bubbles 18s infinite ease-in-out;
  z-index: -1;
}

.partner-card::before {
  top: -80px;
  left: -60px;
}

.partner-card::after {
  bottom: -120px;
  right: -50px;
  animation-delay: -7s;
}

@keyframes partner-bubbles {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.12); }
  100% { transform: translate(0, 0) scale(1); }
}

.partner-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12,15,22,0.95), rgba(12,15,22,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,138,0,0.32), 0 10px 22px rgba(0,0,0,0.16);
}

.partner-card__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}

.partner-card__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.partner-card__subtitle {
  opacity: .82;
  color: rgba(255,255,255,0.82);
}

.partner-card--placeholder {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px dashed rgba(255,255,255,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

