.remote-hero {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.remote-hero__lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.remote-hero__header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.remote-hero__header img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 24px -18px rgba(0, 0, 0, 0.8);
}

.remote-hero__header h1 {
  margin: 0;
}

.remote-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.remote-hero__beta {
  font-size: 0.8em;
  font-weight: 500;
  color: var(--color-accent);
  white-space: nowrap;
}

.remote-gallery {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.remote-screenshot {
  margin: 0;
}

.remote-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.remote-screenshot__caption {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.remote-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.page-footer {
  margin-top: 2rem;
  padding: 1.5rem 0 2.5rem;
  color: var(--color-text-muted);
}

.page-footer__inner {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.page-footer__inner a {
  color: var(--color-primary);
  text-decoration: none;
}

.page-footer__inner a:hover {
  text-decoration: underline;
}

.card a {
  color: var(--color-accent-2);
  text-decoration: underline;
}

.card a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

@media (max-width: 1150px) {
  .remote-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .remote-gallery {
    grid-template-columns: 1fr;
  }
}
