.post {
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #eee;
    padding: 20px;
}

.post-text {
    overflow: hidden;            /* Прячем всё, что вылезет за пределы */
    max-height: 100px;           /* Высота видимой части (3-4 строки) */
    transition: max-height 0.3s ease; /* Плавное появление */
    margin: 0;
}

/* Класс, который убирает ограничение высоты */
.post-text.expanded {
    max-height: 500px; /* Должно быть больше, чем реальная высота текста */
}

.read-more-btn {
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.read-more-btn:hover {
    background: #0056b3;
}