/* Site overrides: larger logos and alternative hero side cards.
   This file is loaded after assets/css/main.css. */

.logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Default logo size */
.logo-row img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* Bigger logos for partner and funding sections */
.logo-row.big img {
  height: 64px;
  max-width: 260px;
}

.logo-row.xl img {
  height: 78px;
  max-width: 320px;
}

/* Funding logos: try to keep them next to each other, wrap on small screens */
.logo-row.funding {
  justify-content: center;
}

@media (max-width: 860px) {
  .logo-row.funding { justify-content: flex-start; }
  .logo-row.xl img { height: 62px; }
}

/* Links inside the hero side card */
.meta-card .meta-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.meta-card .meta-link {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
}

.meta-card .meta-link:hover {
  background: rgba(255, 255, 255, 0.85);
}

.meta-card .meta-link span {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}
