/* Feature logos " sleek line marks + wordmark text (name stays HTML) */
.feat-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.feat-logo__mark {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  color: var(--cyan, #22d3ee);
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--cyan, #22d3ee) 16%, transparent),
      color-mix(in srgb, #0b1220 70%, transparent)
    );
  border: 1px solid color-mix(in srgb, var(--cyan, #22d3ee) 35%, rgba(148, 163, 184, 0.2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.25);
}
.feat-logo__mark svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}
.feat-logo__name {
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
  font-weight: 750;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #f1f5f9;
  line-height: 1.2;
}
.feat-logo__sub {
  display: block;
  margin-top: 0.12rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted, #94a3b8);
}
.feat-logo--lg .feat-logo__mark {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.9rem;
}
.feat-logo--lg .feat-logo__mark svg {
  width: 1.65rem;
  height: 1.65rem;
}
.feat-logo--lg .feat-logo__name {
  font-size: 1.2rem;
}
.feat-logo--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}
a.feat-logo:hover .feat-logo__mark,
button.feat-logo:hover .feat-logo__mark {
  border-color: color-mix(in srgb, var(--cyan-bright, #67e8f9) 55%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 24px rgba(34, 211, 238, 0.2);
}


.feat-logo__mark--brand {
  padding: 0;
  overflow: hidden;
  background: #020617;
  border: 1px solid color-mix(in srgb, var(--cyan, #22d3ee) 40%, transparent);
}
.feat-logo__mark--brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.feat-logo--lg .feat-logo__mark--brand {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.9rem;
}
