.meet-stefan {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-0);
    border-radius: 0.3125rem;
    box-shadow: var(--muted);
}

.meet-stefan h2 {
    color: var(--brand-1);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.meet-stefan h4 {
    color: var(--brand-1);
    margin-bottom: 0;
    font-weight: 700;
}

.meet-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
    gap: 1.5rem;
}

.meet-item {
    background-color: var(--bg-2);
    border-radius: 0.3125rem;
    padding: 1.25rem;
    box-shadow: var(--muted);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.meet-item:hover {
    transform: translateY(-0.3125rem);
    box-shadow: var(--muted);
}

.meet-date {
    font-weight: 700;
    color: var(--brand-1);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.meet-location {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--brand-1);
    display: flex;
    align-items: center;
}

.meet-location::before {
    content: "📍";
    margin-right: 0.5rem;
}

.meet-description {
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.4;
}

.meet-link {
    margin-top: auto;
}

.meet-link a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--brand-1);
    color: var(--text-1) !important;
    border-radius: 0.25rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
}

.meet-link a:hover {
    background-color: var(--brand-1);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 48rem) {
    .meet-list {
        grid-template-columns: 1fr;
    }

    .meet-item {
        margin-bottom: 1rem;
    }
}
