/* Etkinlik karuseli (track, oklar, kartlar) ve site footer'i */

.event-carousel-section{
  background:#fff;
}
.event-carousel{
  display:flex;
  align-items:center;
  gap:16px;
  max-width:1180px;
  margin:0 auto;
}
.event-carousel-track{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  flex:1;
  min-width:0;
}
.carousel-arrow{
  display:grid;
  flex:0 0 auto;
  place-items:center;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  color:var(--deep);
  font-size:22px;
  line-height:1;
  box-shadow:var(--shadow);
  cursor:pointer;
}
.carousel-arrow:hover:not(:disabled){
  background:#edf2f0;
}
.carousel-arrow:disabled{
  opacity:.35;
  cursor:not-allowed;
}
.carousel-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-width:0;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 28px rgba(16,24,40,.07);
}
.carousel-card-media{
  display:block;
  background:#eaf0ed;
}
.carousel-card-media img{
  display:block;
  width:100%;
  height:140px;
  object-fit:cover;
}
.carousel-card-body{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:16px;
}
.carousel-card-top{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}
.carousel-card-date{
  color:var(--muted);
  font-size:12px;
  font-weight:750;
}
.carousel-card h3{
  margin:0;
  font-size:17px;
  line-height:1.28;
}
.carousel-card h3 a{
  color:var(--ink);
}
.carousel-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  overflow-wrap:anywhere;
}

.site-footer{
  display:flex;
  justify-content:space-between;
  gap:22px;
  padding:38px var(--page-pad);
  background:#102820;
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.6;
}
.site-footer a{color:#fff}
