.launcher-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}

.launcher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.launcher-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  color: var(--text-1);
  transition: background-color 80ms linear, border-color 80ms linear;
}

.launcher-tile:hover {
  background: var(--hover);
  border-color: var(--border-strong);
}

.launcher-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--text-2);
}

.launcher-tile-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.launcher-tile-label {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--text-2);
}

@media (max-width: 480px) {
  .launcher-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
