.aiaw-sponsors-home,
.aiaw-sponsors-home * {
  box-sizing: border-box;
}

.aiaw-sponsors-home {
  --aish-accent: #cecd1b;
  --aish-navy: #0b3779;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  color: var(--aish-navy);
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  border-top: 1px solid rgba(11, 55, 121, 0.08);
  border-bottom: 1px solid rgba(11, 55, 121, 0.10);
  box-shadow: 0 8px 24px rgba(0, 28, 72, 0.06);
}

.aish-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding-left: clamp(18px, 3vw, 44px);
}

.aish-heading {
  display: none;
}

.aish-marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}

.aish-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: aish-marquee 16s linear infinite;
}

.aish-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(34px, 4vw, 72px);
  padding-right: clamp(34px, 4vw, 72px);
}

.aish-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(150px, 13vw, 210px);
  height: 64px;
  padding: 8px 14px;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.aish-logo-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.aish-logo-wrap img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: none;
}

.aish-logo-fallback {
  color: var(--aish-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.aish-card-meta {
  display: none;
}

.aish-action-row {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 clamp(18px, 2.6vw, 38px);
  margin: 0;
  background: #ffffff;
  border-left: 1px solid rgba(11, 55, 121, 0.10);
  box-shadow: -18px 0 28px rgba(255, 255, 255, 0.98);
}

.aish-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--aish-navy);
  border-radius: 8px;
  background: var(--aish-navy);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(11, 55, 121, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.aish-button svg {
  width: 18px;
  height: 18px;
}

.aish-button:hover,
.aish-button:focus-visible {
  transform: translateY(-2px);
  background: #082b5f;
  box-shadow: 0 14px 28px rgba(11, 55, 121, 0.22);
}

.aish-button:focus-visible {
  outline: 3px solid rgba(206, 205, 27, 0.55);
  outline-offset: 3px;
}

@keyframes aish-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 767px) {
  .aish-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 82px;
    padding-left: 12px;
  }

  /* v1.0.12 mobile purity fix: remove the blue-tinted edge/fade from the logo rail. */
  .aiaw-sponsors-home,
  .aish-shell,
  .aish-marquee,
  .aish-track,
  .aish-group,
  .aish-card,
  .aish-logo-wrap {
    background: #ffffff !important;
  }

  .aiaw-sponsors-home {
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
  }

  .aish-marquee {
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .aish-group {
    gap: 24px;
    padding-right: 24px;
  }

  .aish-card {
    width: 128px;
    height: 56px;
    padding: 6px 10px;
  }

  .aish-logo-wrap img {
    max-height: 40px;
  }

  .aish-logo-fallback {
    font-size: 13px;
  }

  .aish-action-row {
    padding: 0 12px;
  }

  .aish-button {
    min-height: 42px;
    padding: 0 13px;
    font-size: 11px;
  }

  .aish-button svg {
    width: 16px;
    height: 16px;
  }

  .aish-track {
    animation-duration: 13s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aish-track {
    animation-duration: 35s;
  }
}
