@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Author';
  src: url('../assets/fonts/author/Author-Variable.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  background: #F2F2F2;
}

.intro {
  white-space: pre-line;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  background: #F2F2F2;
  font-family: 'Author', sans-serif;
  display: flex;
  flex-direction: column;
}

h1,
h2,
p {
  font-family: 'Sora', sans-serif;
}

h1,
h2 {
  font-size: 20px;
  font-weight: 700;
}

p {
  font-size: 14px;
}

main {
  flex: 1;
}

section {
  margin-top: 3rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  background: #F7F7F7;
  font-size: 13px;
}

.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #333;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

footer {
  display: flex;
  gap: 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

footer a {
  text-decoration: underline;
}

.post-meta {
  color: #666;
  font-size: 12px;
}
