/* ============ Petition Cards - Minimal, Compact & Modern Design ============ */

/* Wrapper Container */
.petition-cards-wrapper {
    padding: 1.5rem 0;
}

    .petition-cards-wrapper .row {
        margin: 0;
    }

/* Individual Card */
.petition-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: block;
    text-decoration: none;
    color: inherit;
}

    .petition-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: #374151;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }

    .petition-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-color: #d1d5db;
        text-decoration: none;
        color: inherit;
    }

        .petition-card:hover::after {
            opacity: 1;
        }

/* Icon Container */
.petition-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

    .petition-icon-wrapper i {
        font-size: 1.75rem;
        color: #374151;
        transition: color 0.3s ease;
    }

.petition-card:hover .petition-icon-wrapper {
    background: #1f2937;
    transform: scale(1.05);
}

    .petition-card:hover .petition-icon-wrapper i {
        color: #ffffff;
    }

/* Content Section */
.petition-content {
    position: relative;
    z-index: 2;
}

.petition-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.petition-card:hover .petition-label {
    color: #1f2937;
}

.petition-description {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6b7280;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.petition-card:hover .petition-description {
    color: #4b5563;
}

/* Progress Bar */
.petition-progress {
    width: 100%;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.petition-progress-bar {
    height: 100%;
    background: #374151;
    border-radius: 2px;
    transition: width 0.6s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .petition-cards-wrapper {
        padding: 1.25rem 0;
    }

    .petition-card {
        padding: 1.5rem 1.25rem;
    }

        .petition-icon-wrapper {
            width: 52px;
            height: 52px;
            margin-bottom: 0.875rem;
        }

            .petition-icon-wrapper i {
                font-size: 1.6rem;
            }

    .petition-label {
        font-size: 0.9rem;
    }

    .petition-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .petition-cards-wrapper {
        padding: 1rem 0;
    }

    .petition-card {
        padding: 1.25rem 1rem;
    }

        .petition-icon-wrapper {
            width: 48px;
            height: 48px;
            margin-bottom: 0.75rem;
        }

            .petition-icon-wrapper i {
                font-size: 1.5rem;
            }

    .petition-label {
        font-size: 0.875rem;
    }

    .petition-description {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .petition-cards-wrapper {
        padding: 0.75rem 0;
    }

    .petition-card {
        padding: 1.25rem 0.875rem;
    }

        .petition-icon-wrapper {
            width: 44px;
            height: 44px;
            margin-bottom: 0.625rem;
        }

            .petition-icon-wrapper i {
                font-size: 1.375rem;
            }

    .petition-label {
        font-size: 0.85rem;
    }

    .petition-description {
        font-size: 0.65rem;
    }
}