body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #fefefe;
  color: #1c1b1f;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
}

.headline {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.body-text {
  font-size: 1rem;
  line-height: 1.5;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.08);
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s ease;
}

.post-card:hover {
  box-shadow: 0px 4px 8px rgba(0,0,0,0.12);
}

.post-title a {
  color: #1c1b1f;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

.post-title a:hover {
  text-decoration: underline;
}

.post-meta {
  font-size: 0.875rem;
  color: #666;
  margin: 0.25rem 0 0.75rem 0;
}

.post-excerpt {
  font-size: 1rem;
  color: #444;
}
.read-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #6750a4;
  color: white;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #7f67be;
}

/* Tag style */
.tag-list {
  margin-top: 0.5rem;
}

.tag {
  display: inline-block;
  background-color: #eaddff;
  color: #21005d;
  font-size: 0.8rem;
  padding: 4px 10px;
  margin: 2px;
  border-radius: 20px;
}

/* Floating Action Button (FAB) */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background-color: #6750a4;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.fab:hover {
  background-color: #7f67be;
}

.fab .material-symbols-outlined {
  font-size: 24px;
}
