/* Нижний блок поста с кнопками действий */
.post-footer {
    display: flex;
    justify-content: space-around; /* равномерное растягивание кнопок */
    align-items: center;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0); /* полностью прозрачный */
    font-size: 18px;
    color: #555;
}

.post-footer a.post-action {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
}

.post-footer a.post-action:hover {
    color: #007bff; /* цвет при наведении */
}
