/* Blog post image size fixes */
.post-content img {
  max-width: 100%;
  width: auto; /* Override any 100% width */
  height: auto;
  margin: 2rem auto; /* Center images */
  display: block;
  border: 1px solid var(--border-subtle);
}

/* Responsive images for smaller screens */
@media (max-width: 768px) {
  .post-content img {
    max-width: 100%;
    margin: 1.5rem auto;
  }
}

/* Ensure figures and images have proper spacing */
.post-content figure {
  margin: 2rem auto;
  text-align: center; 
}

.post-content figcaption {
  font-size: 0.85rem;
  color: var(--text-caption);
  text-align: center;
  margin-top: 0.5rem;
}

/* Reduce post-footer spacing when followed by links */
.post-footer {
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Post links section styling */
.post-links {
  margin-top: 0.5rem;
  padding-top: 0;
}

.post-links h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.post-links ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.post-links li {
  margin-bottom: 0.5rem;
}

.post-links a {
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px dotted var(--link-static);
  padding-bottom: 1px;
  font-size: 0.95rem;
}

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