.post-excerpt {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.post-excerpt::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, white);
}

.post-content {
    display: none;
    margin-top: 1rem;
}

.post-content.show {
    display: block;
}

.read-more {
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateY(-2px);
}
