/**
 * Stili per l'elenco delle ONLUS.
 */

.eprize-onlus-list-wrapper {
    max-width: 1200px;
    margin: 2em auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.eprize-onlus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.eprize-onlus-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2em;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.eprize-onlus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.1);
}

.eprize-onlus-name {
    font-size: 1.5em;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5em 0;
}

.eprize-onlus-category {
    font-size: 0.85em;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eprize-onlus-description {
    font-size: 1em;
    color: #7f8c8d;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5em;
}

.eprize-onlus-website-link {
    font-weight: 600;
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.eprize-onlus-website-link:hover {
    color: #2980b9;
}