:root {
  --teal: #0b6b6b;
  --teal-soft: #e6f2f2;
  --bg: #f7f9f9;
  --text: #1c1c1c;
  --muted: #666;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  max-width: 820px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.7;
}

nav {
  margin-bottom: 40px;
}

nav a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  margin-right: 14px;
}

nav a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 42px;
  margin-bottom: 5px;
  font-weight: 700;
  border-left: 6px solid var(--teal);
  padding-left: 14px;
}

h2 {
  font-size: 26px;
  margin-top: 40px;
  color: var(--teal);
}

h3 {
  color: var(--teal);
}

.post {
  background: var(--teal-soft);
  padding: 18px 22px;
  margin-bottom: 24px;
  border-radius: 10px;
  border-left: 5px solid var(--teal);
}

.post h2 {
  margin-top: 0;
}

.post a {
  color: var(--teal);
}

.meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

main {
  margin-top: 20px;
}

footer {
  margin-top: 60px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--teal-soft);
  padding-top: 18px;
}

article {
  background: var(--teal-soft);
  padding: 30px;
  border-radius: 12px;
  border-left: 6px solid var(--teal);
}
.project-list {
  list-style: none;
  padding: 0;
}

.project-card {
  display: block;
  background: var(--teal-soft);
  border-left: 6px solid var(--teal);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 20px;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card strong {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.project-card p {
  margin: 4px 0;
  color: var(--text);
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

