/* === Карточки точек клева — выравнивание + кнопки === */

.post-card {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
}

.post-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* НЕ растягиваем зелёное поле рыб */
.post-fish {
    flex: none !important;
}

.card-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px 15px;
    margin-top: auto;
}

.card-actions button {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #3b82f6;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.05));
    color: #3b82f6;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card-actions button:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-color: #2563eb;
}

.card-actions button:hover svg path {
    fill: white;
}

.dark-theme .card-actions button {
    background: rgba(59,130,246,0.15);
    border-color: #60a5fa;
    color: #93c5fd;
}

.dark-theme .card-actions button:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-color: #3b82f6;
}

@media (max-width: 768px) {
    .card-actions {
        padding: 0 15px 12px;
    }
    .card-actions button {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
