/* === Loader & Pagination === */
#event-loader {
    text-align: center;
    margin: 20px 0;
}

#pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #0073aa;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

/* === Search & Filters === */
input#event-search {
    border: 3px solid #EEEEED;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    color: #88863B !important;
    letter-spacing: 3px;
    line-height: 0em;
    margin-bottom: 15px;
    border-radius: 0px !important;
    font-family: 'Noto Sans', sans-serif;
}
input#event-search::placeholder {
    color: #88863B;
    opacity: 1;
}

select#event-category option {
    border-radius: 0px !important;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    color: #151515;
    font-size: 16px;
    font-weight: 500;
}
select#event-category option:hover {
    background: red !important;
    color: black !important;
}

select#event-category,
select#event-date-range,
div#custom-date-range,
select#event-month,
select#event-organizer {
    border: 3px solid #EEEEED;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    color: #88863B !important;
    letter-spacing: 3px;
    font-family: 'Noto Sans', sans-serif;
    border-radius: 0px;
    padding: 20px 5px;
    text-align: center;
}

button#reset-filters {
    border-color: #CE4C27;
    color: #fff;
    border-radius: 0px;
    background-color: #CE4C27;
    font-weight: 500;
}

button#reset-filters:hover {
    background: #643923;
    color: white;
}

button.load-more {
    border-radius: 0px;
    border-color: #643923;
    color: white;
    background: #643923;
}

button.load-more:hover {
    background: #643923;
    color: white;
}

input[type=text]:focus,
input[type=text]:focus-visible,
input#event-search:focus-visible {
    border: 3px solid #EEEEED !important;
}

.eventCalenderSelectFilter {
    display: flex;
    column-gap: 10px;
    flex-wrap: nowrap;
}



/* === Card Grid Layout === */
#event-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.event-card {
	background-color: #fff;
	border : 1px solid #CF4D28;
	
}
/* Event Card */
.event-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.event-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Top Image */
.event-thumb img.event-featured-img {
   width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}
.event-content {
	padding: 20px;
	position: relative;
}
.event-date {
    display: flex;
    gap: 5px;
    background-color: #4FA6BB;
    color: #fff;
    padding: 0px 10px;
    font-weight: 500;
    width: fit-content;
    position: absolute;
    top: -10px;
}

/* Content */
.event-details {
    padding: 20px;
    text-align: left;
}

h3.title25 a{
    font-family: 'Noto Sans', sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #88863B;
}

p.date25,
p.time25,
p.Organizer25,
p.Category25 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #3f5666;
    font-weight: 500;
    margin-bottom: 6px;
}

span.date2,
span.time2,
span.Organizer2,
span.Category2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #88863B;
    margin-right: 5px;
}

p.Category25 {
    margin-bottom: 15px;
}

p.Category25 a {
    color: #643923;
    text-decoration: none;
}

/* Button */
a.btnEventMore25 {
    display: inline-block;
    margin-top: 15px;
    color: #FFFFFF !important;
    border-radius: 0;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #643923 !important;
    padding: 8px 18px;
    font-family: 'Noto Sans', sans-serif;
    transition: background 0.3s ease;
}

a.btnEventMore25:hover {
    background-color: #CE4C27 !important;
}

/* === Responsive === */
@media only screen and (max-width: 992px) {
    #event-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 600px) {
    #event-list {
        grid-template-columns: 1fr;
    }

    h2.event-month-heading {
        text-align: center;
    }
}

@media only screen and (max-width: 1100px) {
    .eventCalenderSelectFilter {
        display: flex;
        column-gap: 10px;
        flex-wrap: wrap;
        row-gap: 10px;
    }
}