.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #6B7DD4;
}

.tag-cloud a {
    display: inline-block;
    margin: 0.25rem;
    padding: 0.35rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 30px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background-color: #6B7DD4;
    color: white;
}

.city-selector {
    display: inline-block;
    margin-left: 10px;
}

.city-badge {
    display: inline-block;
    margin: 0.25rem;
    padding: 0.35rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 30px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-badge:hover,
.city-badge.active {
    background-color: #6B7DD4;
    color: white;
}

@media (min-width: 768px) {
    .event-cover {
        max-height: 192px;
    }
}

@media (max-width: 768px) {
    .events-row {
        --bs-gutter-x: 1rem;
    }
}