.news-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.event-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bs-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bs-gold);
    border: 4px solid var(--bs-dark);
}

.media-filter-btn.active {
    background-color: var(--bs-gold) !important;
    border-color: var(--bs-gold) !important;
    color: var(--bs-dark) !important;
}

.event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card .event-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card .event-description {
    flex-grow: 1;
}