﻿/* EVENTS PAGE — Modern Card Layout */

.events-list {
    padding: 60px 20px;
    background: #f4f4f4;
}

.events-list h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.4em;
    font-weight: 700;
    color: #222;
}

/* GRID */
.events-grid.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.event-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* IMAGE */
.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.event-details {
    padding: 22px;
    flex: 1;
}

.event-details h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    font-weight: 700;
    color: #222;
}

/* DATE BADGE */
.event-date {
    display: inline-block;
    background: #e91e63;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* PLACE */
.event-place {
    font-size: 1.1em;
    font-weight: 600;
    margin: 10px 0;
    color: #444;
}

/* DESCRIPTION */
.event-desc {
    margin-top: 10px;
    color: #555;
    line-height: 1.5;
}

/* NO EVENTS */
.no-events {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 40px;
}


.event-highlight {
        max-width: 900px;
        margin: 40px auto;
        padding: 25px;
        background: #faf7f5;
        border-left: 6px solid #b22222;
        border-radius: 6px;
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }
    .event-highlight h3 {
        margin-top: 0;
        color: #8b0000;
        font-size: 1.6em;
    }
    .event-highlight p {
        margin-bottom: 15px;
    }
    .event-highlight .quote {
        font-style: italic;
        color: #444;
        padding-left: 15px;
        border-left: 3px solid #ccc;
        margin: 15px 0;
    }
    .event-highlight .dates {
        margin-top: 20px;
        padding: 15px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-weight: bold;
        color: #8b0000;
    }