/* Base event styling */
.talisman-single-event {
    margin-bottom: 20px;
    position: relative;
}

/* If an event is featured, give it a special border */
.featured-event {
    border: 2px solid #FFC107; /* example color */
    padding: 10px;
    border-radius: 4px;
}

/* Position/Style the 'Featured' badge */
.featured-event .featured-badge {
    background-color: #FFC107;
    color: #000;
    padding: 5px 8px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 3px;
    font-size: 12px;
    text-transform: uppercase;
}

/* Hover effect on event images */
.talisman-single-event .event-image img {
    transition: transform 0.3s ease;
}

.talisman-single-event .event-image:hover img {
    transform: scale(1.04);
}
