/* MyHub - Launchpad page */

.launchpad {
  padding: 24px;
}

.launchpad__section-title {
  font-size: var(--fs-l);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  padding-left: 4px;
}

.launchpad__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  max-width: 1100px;
}

.tile {
  background: var(--surface);
  border-radius: var(--radius-m);
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 160px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
  text-decoration: none;
  color: var(--text);
}
.tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.tile:active {
  transform: translateY(0);
}

.tile__title {
  font-size: var(--fs-l);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
.tile__subtitle {
  font-size: var(--fs-m);
  color: var(--text-muted);
  margin-top: -2px;
}
.tile__icon {
  margin-top: auto;
  width: 48px;
  height: 48px;
  color: var(--text);
}
.tile__icon svg {
  width: 100%;
  height: 100%;
}
