/* .omswami-event-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f98c;
    border-radius: 8px;
}

.block-title {
    font-size: 1.6rem;
    font-family: 'Ceria';
    color: #e47c41;
    line-height: 48px;
}

.get-content p {
    line-height: 30px;
    font-size: 1.1rem;
}


.more-link {
    color: #e47c41;
    font-weight: 600;
} */


/* Event Listing Wrapper */
.event-listing, .event-details-page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f98c;
}

/* Individual Event Item */
.event-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.event-item:last-child {
    border-bottom: none;
}

/* Event Image Wrapper */
.event-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-thumbnail {
    width: 100%;
    max-width: 500px; /* Prevents images from being too large */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect */
.event-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Event Details */
.event-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Event Title */
.event-title {
    font-size: 1.6rem;
    font-family: 'Ceria', sans-serif;
    color: #e47c41;
    line-height: 48px;
    margin-bottom: 10px;
}

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

.event-title a:hover {
    color: #d1642f;
}

/* Event Date */
.event-date {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-separator {
    color: #e47c41;
    margin: 0 5px;
}

/* Event Description */
.event-description {
    line-height: 30px;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
}

/* Continue Reading Button */
.event-link {
    color: #e47c41;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}

.event-link:hover {
    color: #d1642f;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .event-details {
        margin-top: 15px;
    }

    .event-title {
        font-size: 1.4rem;
        line-height: 40px;
    }

    .event-thumbnail {
        max-width: 100%;
    }
}

/* Details Page */

/* Event Details Page Container */
/* .event-details-page {
    max-width: 1140px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
} */

/* Event Image */
/* .event-detail-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
} */

/* Event Details (Fixed on Scroll) */
/* .event-info {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
} */

/* Fixed Position on Scroll */
/* .fixed-event-info {
    position: fixed;
    top: 0;
    right: 0;
    width: 40%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
} */

/* Event Title */
/* .event-title {
    font-size: 2rem;
    color: #e47c41;
    font-family: 'Ceria', sans-serif;
    margin-bottom: 10px;
} */

/* Event Meta Information */
/* .event-meta {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    color: #333;
} */
/* 
.event-meta li {
    margin-bottom: 8px;
} */

/* Book Now Button */
/* .book-now-btn {
    display: inline-block;
    background-color: #e47c41;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
} */

/* .book-now-btn:hover {
    background-color: #d1642f;
} */

/* Event Description (Initially Hidden) */
/* .event-description {
    margin-top: 40px;
    font-size: 1.1rem;
    color: #444;
    transition: all 0.5s ease-in-out;
} */

/* Make Description Visible on Scroll */
/* .description-visible {
    opacity: 1;
    transform: translateY(0);
} */

/* Responsive Design */
/* @media (max-width: 768px) {
    .event-details-page .row {
        flex-direction: column;
        text-align: center;
    }

    .event-info {
        width: 100%;
        position: static !important;
    }

    .book-now-btn {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .fixed-event-info {
        width: 100%;
    }
} */