/**
* Theme Name: Tamun Child
* Description: This is a child theme of Tamun, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/template_path">Template Path</a>
* Template: tamun
* Version: 1.8
*/
<script>
.event-section-title {
    font-size: 24px;
    font-weight: bold;
    color: #105ea3;
    text-align: center;
    margin: 40px 0 20px;
}

.custom-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.event-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.event-info {
    padding: 20px;
}

.event-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
}

.event-title a {
    text-decoration: none;
    color: #333;
}

.event-date {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.event-location {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.location-highlight {
    color: #105ea3;
    font-weight: bold;
}



.event-category-box.active-category a {
    font-weight: bold;
    color: #f7bd00; /* your highlight color */
}


.event-thumb {
    width: 100%;
    height: 200px;           /* Matches the 300x200 image size height */
    object-fit: cover;       /* Crop and scale nicely */
    border-radius: 2px;
    margin-bottom: 8px;
    display: block;
}

</script>
