/* =========================
   GLOBAL BASE
   ========================= */

body {
  margin: 0;
  min-width: 320px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Ubuntu,
    sans-serif;
}

/* =========================
   LAYOUT
   ========================= */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   GRID HELPERS
   ========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.skills li {
  list-style: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}

/* =========================
   MISC
   ========================= */

a {
  text-decoration: none;
}

.loader-container {
  padding: 40px;
  display: flex;
  justify-content: center;
}
