.no-events {
    font-family: "Noto Sans", Arial, sans-serif;
    /* background-color: rgba(17,17,17,0.85); */
}

/* Body Text */
p {
    font-family: "Noto Sans", sans-serif;
    margin-bottom: 0px;
    text-align: center;
}

/* DESKTOP and TABLET FIX */
@media (min-width: 701px) {
    p {
        font-size: 20px;
        line-height: 1.6;
        margin-top: 10px;
    }
}

/* MOBILE FIX */
@media (max-width: 700px) {
    p {
        font-size: 16px;
        line-height: 1;
        margin-top: 5px;
    }
}

.event-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Grid layout */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


/* Event card */
.event-card {
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Event image */
.event-image {
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Event content */
.event-content h3 {
    margin-bottom: 10px;
}

.event-meta {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
}

.event-summary {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Read More link */
.event-readmore {
    color: #b30000;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;   /* allows margin and padding to work properly */
    margin-top: 20px;        /* adds space above the link */
    margin-bottom: 10px;     /* adds space below the link */
    padding-left: 30px;      /* adds space to the left to line up with the header */
}

/* DESKTOP and TABLET FIX */
@media (min-width: 701px) {
    .event-readmore {
        font-size: 20px;
    }
}

/* MOBILE FIX */
@media (max-width: 700px) {
    .event-readmore {
        font-size: 15px;
    }
}

.event-readmore:hover {
    text-decoration: underline;
}

.event-video {
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
}

@media (min-width: 1025px) {
    .event-video,
    .event-image {
        width: 100%;
        height: 220px;
        }
}

/* TABLET AND MOBILE: fix blog image scaling */
@media (max-width: 1024px) {
    .event-video,
    .event-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        }
}

/* MOBILE FIX */
@media (max-width: 700px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}