/* --- Футер поста --- */
.club-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 12px 15px;
    border-top: 1px solid #eee;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    gap: 10px;
}

/* --- Кнопки лайков, дизлайков и комментариев --- */
.like-btn,
.dislike-btn,
.comments-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.like-btn,
.dislike-btn {
    background: #f8f8f8;
    color: #333;
    padding: 8px 14px;
    flex: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.like-btn:hover,
.dislike-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.like-btn.active {
    color: #27ae60;
    font-weight: 600;
}

.dislike-btn.active {
    color: #e74c3c;
    font-weight: 600;
}

/* --- Комментарии --- */
.comments-btn {
    background: transparent;
    color: #555;
    padding: 8px 10px;
    flex: none;
}

.comments-btn:hover {
    color: #000;
}

/* --- Иконки --- */
.footer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
    filter: brightness(0) saturate(100%); /* делает иконки чёткими на светлом фоне */
}

/* --- Просмотры --- */
.views-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: 14px;
}

/* --- Адаптив --- */
@media (max-width: 600px) {
    .club-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .like-btn,
    .dislike-btn,
    .comments-btn {
        width: 100%;
        margin: 5px 0;
    }

    .views-count {
        justify-content: center;
    }
}
