/* Baern Gliders Next Events */

.bg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.bg-card {
    box-sizing: border-box;
    padding: 24px;
    border-radius: 12px;
    background: #f7f7f7;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.bg-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
}

.bg-date,
.bg-time,
.bg-location,
.bg-desc {
    margin-top: 8px;
}

.bg-desc a {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .bg-grid {
        grid-template-columns: 1fr;
    }
}
