.event_section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.event_card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    border-left: 4px solid #c5a059;
    /* Classic Gold accent */
}

.event_card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Date Badge Style */
.event_date {
    flex: 0 0 100px;
    text-align: center;
    border-right: 1px solid #eee;
    margin-right: 25px;
    padding-right: 25px;
}

.event_date .day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1;
}

.event_date .month {
    font-size: 14px;
    color: #c5a059;
    text-transform: uppercase;
    font-weight: 600;
}

/* Info Section */
.event_info {
    flex-grow: 1;
}

.event_title {
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 20px;
    color: #1a2a3a;
    margin: 0 0 8px 0;
}

.event_meta {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.event_meta i {
    color: #c5a059;
    margin-right: 5px;
}

.separator {
    margin: 0 10px;
    color: #ddd;
}

/* Button Styling */
.event_action {
    flex: 0 0 auto;
}

.read_more_btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #1a2a3a;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read_more_btn:hover {
    background-color: #c5a059;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .event_card {
        flex-direction: column;
        text-align: center;
    }

    .event_date {
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-right: 0;
        margin-bottom: 15px;
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }

    .event_action {
        margin-top: 20px;
    }
}

.event-css {
    text-align: center;
    margin-bottom: 20px;
}