.events-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 10px;
}
.event {
display: flex;
flex-direction: row;
background-color: #e8f2f9;
margin-bottom: 20px;
align-items: flex-start;
width: 100%;
}
.event-image {
width: 100%;
max-width: 300px;
height: auto;
object-fit: cover;
margin-right: 20px;
}
.event-info {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.event-info h3 {
font-weight: bold;
margin-top: 10px;
}
.event-info .event-date-time {
margin-top: 5px;
color: #4583cf;
}
.event-info .event-excerpt {
font-size: 0.9em;
color: #4583cf;
line-height: 1.4;
height: 2.8em;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
margin-top: 5px;
padding-right: 10px;
} .pagination {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
max-width: 100%;
}
.pagination a, .pagination span {
flex-grow: 1;
text-align: center;
color: #0056b3;
background-color: #f8f9fa;
border: 1px solid #dee2e6;
padding: 5px 10px;
text-decoration: none;
margin: 0 5px;
border-radius: 5px;
font-size: 1em;
}
.pagination a:hover {
background-color: #e2e6ea;
color: #004495;
}
.pagination .current {
background-color: #007bff;
color: #ffffff;
border-color: #007bff;
}
.pagination .disabled {
color: #6c757d;
pointer-events: none;
}
@media (max-width: 600px) {
.pagination {
flex-wrap: nowrap;
overflow-x: auto;
white-space: nowrap;
}
.pagination a, .pagination span {
padding: 8px;
font-size: 0.9em;
min-width: 35px;
}
}