/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Page Container === */
.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 2rem;
}

/* === Homepage Header === */
.site-name {
  font-size: 46px;
  font-weight: normal;
  margin-bottom: 0;
}

.site-name a {
  color: inherit;
  text-decoration: none;
}

.site-name a:hover {
  text-decoration: none;
}

.name-rule {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 0.3rem 0 0.6rem;
  width: 100%;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  gap: 0.4em;
  margin-bottom: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  border: none;
}

.social-icons img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.social-icons a:hover img {
  opacity: 1;
}

/* === Bio === */
.bio {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

/* === Posts Section === */
.posts-heading {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1rem;
}

.post-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 0.6em;
  align-items: baseline;
}

.post-date {
  color: #555;
  font-size: 0.9em;
}

.post-link {
  color: #1a1a1a;
}

.post-link:hover {
  text-decoration: underline;
}
