/* ===== Actions ===== */
.actions-section {
    background: var(--bg-alt);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.action-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.action-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.action-emoji {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1;
}

.action-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 12px;
}

.badge-upcoming {
    background: #fff3e0;
    color: var(--secondary-dark);
}

.badge-active {
    background: #e0f5e4;
    color: var(--accent);
}

.badge-ending {
    background: #fce4ec;
    color: #c62828;
}

.action-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
}

.action-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.action-progress {
    margin-top: auto;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #9b6dd7);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-active {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.action-progress span,
.action-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.action-date svg {
    color: var(--secondary);
}

.action-details {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.action-details li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 4px 0 4px 16px;
    position: relative;
}

.action-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.btn-action {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-action:hover {
    transform: translateY(-2px);
    background: #5220a0;
    box-shadow: 0 4px 15px rgba(99, 41, 187, 0.3);
}
