.tags-section {
  max-width: 720px;
  margin: 5rem auto 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(60, 48, 38, 0.1);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.tag-cloud-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all 0.25s ease;
}

.tag-cloud-item:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
  background: rgba(217, 79, 92, 0.04);
  transform: translateY(-1px);
}

.tag-count {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-border);
  background: rgba(60, 48, 38, 0.06);
  padding: 0.1rem 0.4rem;
  border-radius: 100px;
}

.tag-cloud-item:hover .tag-count {
  background: rgba(217, 79, 92, 0.1);
  color: var(--color-orange);
}

.post-list-minimal {
  max-width: 720px;
  margin: 3rem auto 0;
}

.post-item {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(60, 48, 38, 0.1);
  opacity: 0;
  animation: gentleFadeIn 0.8s ease forwards;
  animation-delay: calc(var(--index) * 0.15s);
  transition: transform 0.3s ease;
}

.post-item:last-child {
  border-bottom: none;
}

@keyframes gentleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-image-link {
  display: block;
  margin-bottom: 1.5rem;
}

.post-image {
  width: 100%;
  max-width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(0.95);
  transition: all 0.6s ease;
}

.post-item:hover .post-image img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

.post-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-date-minimal {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.post-title-minimal {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.post-title-minimal a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-item:hover .post-title-minimal a {
  color: var(--color-orange);
}

.post-excerpt-minimal {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(60, 48, 38, 0.85);
  margin: 0.5rem 0 1rem;
}

.post-tags-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.tag-minimal {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(60, 48, 38, 0.6);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.tag-minimal:hover {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}

.read-link-minimal {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-muted);
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.read-link-minimal:hover {
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}

.post-item:hover {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .post-list-minimal {
    margin-top: 2rem;
  }

  .post-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .post-image {
    height: 220px;
  }

  .post-title-minimal {
    font-size: 1.5rem;
  }

  .post-excerpt-minimal {
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .post-image {
    height: 180px;
  }

  .post-title-minimal {
    font-size: 1.35rem;
  }

  .post-excerpt-minimal {
    font-size: 0.95rem;
  }
}
