.activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 8em auto;
}

.activity {
    background-color: var(--hvb-weiss-1);
    border: 1px solid var(--hvb-grau-2);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activity:hover {
    transform: scale(1.05);
    background-color: var(--hvb-hover-hintergrund);
}

.activity img {
    width: 100%;
    height: auto;
    display: block;
}

.activity-content {
    padding: 15px;
}

.activity h2 {
    color: var(--hvb-hellblau);
    margin-bottom: 10px;
}

.activity p {
    color: var(--hvb-schwarz);
    margin-bottom: 10px;
}

.activity p strong {
    color: var(--hvb-blau);
}
