.event-filters form { 
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items:center;
    gap: 1rem; margin: 0 2rem 2rem 2rem;
}
.filter-actions{
  display:flex;
	gap: 1rem;
	align-items: center;
}
.clear-button {
  background: none;
  border: none;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
}
.clear-button .icon-reset {
  width: 24px;  /* or whatever looks best */
  height: 24px;
  display: block;
}
.clear-button:hover .icon-reset {
  filter: brightness(0.7);
}
.event-grid { 
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(280px, max-content)); 
	gap: 2rem; padding: 0 2rem 2rem 2rem;
	justify-content: center;
}
.event-card {
    background-color: transparent; 
    position: relative; overflow: hidden;
	width: auto; min-height: 360px;
    height: clamp(300px, 40vw, 450px);
	flex: 1 1 200px; max-width: 400px; min-width: 300px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.event-card:hover{
  transform: translateY(-4px);
}
.calendar-ascii{
  display: none;
}
@media (max-width: 480px) {
    .event-filters form { flex-direction: column; align-items: flex-start; }
    .event-filters label { display: flex; align-items: center; gap: 0.5rem; }
    .event-filters .filter-actions { display: flex; align-items: center; gap: 1rem; width: 100%; }
	.calendar-ascii { display: inline; }
}

/*---------------------------------------------------------------------------------------------------------*/
/* Events slider  >>> So far exactly the same of Home */
.event-carousel .swiper-slide {
  position: relative;
	min-width: 200px; width: auto; max-width: 400px;
  overflow: hidden;
  min-height: 360px; height: clamp(300px, 40vw, 550px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.slide-overlay-link {
  display: block; position: relative;
  width: 100%; height: 100%;
  text-decoration: none; color: white;
}
.event-slide-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.8) grayscale(50%);
}
.slide-shade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 65%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(24, 152, 139, 0.4) 0%, rgba(24, 152, 139, 0.9) 35%, rgba(24, 152, 139, 0.99) 50%, rgba(24, 152, 139, 0.9) 85%, rgba(24, 152, 139, 0.7) 100%);
  clip-path: polygon(0% 32%, 100% 28%, 100% 100%, 0% 100%);
}
.slide-shade.variant-2 { clip-path: polygon(0% 28%, 100% 32%, 100% 100%, 0% 100%); }
.slide-shade.variant-3 { clip-path: polygon(0% 30%, 45% 32%, 100% 28%, 100% 100%, 0% 100%); }
.slide-shade.variant-4 { clip-path: polygon(0% 28%, 55% 32%, 100% 30%, 100% 100%, 0% 100%); }
.slide-text-box {
  position: absolute;  display: flex; flex-direction: column;
  z-index: 3;
  top: 57%; left: 20px; right: 20px;
	height: 43%;
  background: none; /*color: white;  UNNECESSARY?*/
  align-items: center; text-align: center; justify-content: space-between;
}
.slide-text-box p, .slide-text-box h3 {
  line-height: 1.2 ; margin: 0.2em 0 !important;
}
.slide-title{
  color: #D9D8D6; font-weight: 900; text-transform: uppercase; font-size: 1.4rem;
}
.slide-subtitle {
  font-size: 1rem; font-style: italic; font-weight: normal; 
  color: #D9D8D6; opacity: 0.9;
  margin-bottom: 0.7rem; text-transform: uppercase; 
}
.slide-date-time{
	padding-bottom: .3rem !important;
  color: #FF8D6B; font-weight: normal; font-size: 1rem;
  text-shadow: .5px .5px .5px .5px black; 
}
.slide-place {
	display: none; padding-top: .3rem; font-size: .8rem;
  color: #D9D8D6; font-weight: normal; text-transform: uppercase;
}
@media (max-width: 480px) {
  .slide-subtitle { display: none; }
  .slide-text-box { padding: 0.5rem; }
}
.slide-organiser-info {
  position: absolute;
  display: flex; flex-direction: row;
  z-index: 5;
  align-items: center;
  top: 5px; right: 5px;
  padding: 4px 8px; gap: 8px;
}
.slide-organiser-logo {
  width: 15px; height: 15px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #D9D8D6;
}
.slide-organiser-name {
  font-weight: 900; 
  color: #D9D8D6; font-size: 0.7rem;
  text-shadow: 1px 1px 2px black;
  text-transform: uppercase;
}
.slide-tags {
  font-weight: normal; text-transform: uppercase; font-size: 0.8rem;
  color: #FF8D6B; padding-bottom: 10px;
}

/*---------------------------------------------------------------------------------
 PAGINATION for events grid
---------------------------------------------------------------------------------*/
.pagination {
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}