.events-row {
    display: grid;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Styles for the events container */
.events-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    box-sizing: border-box;
}

/* Styles for the events image container */
.events-image-container {
    width: 100%;
}

/* Styles for the events image */
.events-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Styles for the events info container */
.events-info-container {
    padding: 1rem;
    width: 100%;
}

/* Styles for the events title */
.events-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Styles for the events date */
.events-date {
    font-size: 14px;
    color: #555;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pagination-links {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    background-color: #fff;
}