/* Event Action Buttons */
.event-item__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.event-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.event-btn--primary {
    background: #3b82f6;
    color: white;
}

.event-btn--primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.event-btn--secondary {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.event-btn--secondary:hover {
    background: #f1f5f9;
    color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-btn i {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .event-item__actions {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .event-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        min-height: 44px; /* Touch target minimum */
    }
    
    .event-btn span {
        display: none; /* Hide text on mobile, show only icons */
    }
    
    .event-btn i {
        font-size: 1rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .event-item__actions {
        gap: 0.375rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .event-btn {
        padding: 0.625rem 0.5rem;
        font-size: 0.75rem;
        min-height: 40px;
        border-radius: 6px;
    }
    
    .event-btn i {
        font-size: 0.875rem;
    }
}

/* Show text on larger screens */
@media (min-width: 769px) {
    .event-btn span {
        display: inline !important;
    }
}