.launch-preview {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 17px;
  padding: 14px;
  border: 1px solid #2b6d6a;
  border-radius: 14px;
  background: linear-gradient(135deg, #092521, #091528);
  box-shadow: inset 0 0 38px #4edcff0c;
}
.launch-preview img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #45cdbc66;
  border-radius: 12px;
  box-shadow: 0 0 24px #55ef9d20;
}
.launch-preview h3 { margin: 8px 0 2px; font-size: 22px; }
.launch-preview code { color: var(--cyan); }
.launch-preview p { max-width: 760px; color: #85a6a9; }
.launch-preview nav { display: flex; flex-wrap: wrap; gap: 7px; }
.launch-preview a {
  padding: 5px 8px;
  border: 1px solid #28525a;
  border-radius: 7px;
  color: var(--cyan);
  text-decoration: none;
  font-size: 9px;
}
.launch-preview small { display: block; margin-top: 10px; color: var(--green); }
@media (max-width: 600px) {
  .launch-preview { grid-template-columns: 1fr; }
  .launch-preview img { width: min(100%, 260px); justify-self: center; }
}
