/* === Index / landing page === */
.home {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.home-title {
  font-size: 22px;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 20px;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.home-tile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.home-tile:hover {
  background: #1c2128;
  border-color: #58a6ff;
  transform: translateY(-2px);
}

.home-tile-emoji {
  flex: 0 0 auto;
  font-size: 40px;
  line-height: 1;
}

.home-tile-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.home-tile-text {
  display: flex;
  flex-direction: column;
}

.home-tile-title {
  font-size: 18px;
  font-weight: 700;
  color: #f0f6fc;
  margin-bottom: 4px;
}

.home-tile-desc {
  font-size: 13px;
  color: #8b949e;
}

@media (max-width: 520px) {
  .home-grid {
    grid-template-columns: 1fr;
  }
  .home-tile {
    padding: 20px;
  }
  .home-tile-emoji {
    font-size: 34px;
  }
}
