/* Blog / Events List Page Styles */

/* Event Card Styles */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    border: 1px solid #bbbbbb;
    /* Light border by default */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Event Card Hover & Active State */
/* User requested "active black border". We apply this on hover and an explicit .active class */
.event-card:hover,
.event-card.active {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #000000 !important;
    /* Sharp black border as requested */
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .card-img-top,
.event-card.active .card-img-top {
    transform: scale(1.00);
}

.bg-dark-blue-opacity {
    background-color: rgba(18, 55, 100, 0.9);
}

.bg-light-grey {
    background-color: #f8f9fa;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.btn-dark-blue.rounded-0 {
    border-radius: 0 !important;
}

/* Dropdown Menu Styles */
/* "bg blue use in text whitw use in" - Interpreted as hover state styling */
.dropdown-menu {
    border-top: 3px solid var(--primary-color) !important;
    /* Optional: adds a nice top border consistent with theme */
    padding: 0.5rem 0;
}

.dropdown-item {
    color: #6c757d;
    /* Secondary color by default */
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--primary-color);
    /* Dark Blue BG */
    color: #ffffff !important;
    /* White Text */
}
.date-badge.bg-dark-blue-opacity {
    background: #123764;
    color: #ffffff;
    padding: 10px;
    width: 93%;
    margin: auto;
    z-index: 9999;
    /* position: absolute; */
    /* top: 76%; */
    margin-top: -10px;
    position: relative;
}