.post__title {
    text-wrap: balance;
}

.post__body h2,
.post__body h3,
.post__body h4,
.post__body h5,
.post__body h6 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post__body img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.5rem;
}

.post__body .img-shimmer img {
    opacity: 0;
}

.post__body .img-shimmer {
    background: linear-gradient(90deg, #3a3c4e 25%, #44475a 50%, #3a3c4e 75%);
    background-size: 200% 100%;
    animation: img-shimmer 1.5s infinite;
    min-height: 100px;
    border-radius: 4px;
}

@keyframes img-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
