/* NASA Eyes embed tile — view switcher + responsive iframe. */

.eyes-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.eyes-tab {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 140, 200, 0.35);
  background: transparent;
  color: var(--text, #1a2540);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.eyes-tab:hover { border-color: var(--accent, #6a4bff); }

.eyes-tab.active {
  background: var(--accent, #6a4bff);
  border-color: var(--accent, #6a4bff);
  color: #fff;
}

.eyes-wrap {
  position: relative;
  width: 100%;
  height: min(74vh, 760px);
  min-height: 440px;
  border-radius: 14px;
  overflow: hidden;
  background: #05060a;
  border: 1px solid rgba(120, 140, 200, 0.18);
}

.eyes-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eyes-credit,
.eyes-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted, #5b6b8c);
}

.eyes-credit a,
.eyes-note a { color: var(--accent, #6a4bff); }

.eyes-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.eyes-guide-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.eyes-guide-item p {
  margin: 0;
  color: var(--muted, #5b6b8c);
  font-size: 0.92rem;
  line-height: 1.5;
}
