/* Events Slider Styles */
.events-slider {
  position: relative;
  background: #1f4f8c;
  padding: 
  0px 0px;
  overflow: hidden;
}

.events-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.event-card {
  background: #fff;
  width: 320px;
  min-width: 320px;
  border-radius: 6px;
  overflow: hidden;
}

.event-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.event-content {
  padding: 20px;
}

.subtitle {
  font-weight: 600;
  color: #1f4f8c;
}

.event-date {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.event-card {
  /* min-height: 620px; */
}
.event-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Push date to bottom */
.event-date {
  margin-top: auto;
  font-weight: bold;
}
.event-card img {
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
  flex-shrink: 0;
}
/* Slick track must be flex */
.events-slider .slick-track {
  display: flex !important;
  gap:20px;
}

/* Each slide must stretch */
.events-slider .slick-slide {
  height: auto;
  display: flex;  
}

/* Card fills slide height */
.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  
}

.events-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}

.pagination {
    max-width: 200px;
}

button.nav.slick-arrow {
    border: none;
    color: #fff;
    font-size: 20px;
}
button.nav.slick-arrow:hover {
    background: none;
}

.title {
    font-family: "inter";
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    vertical-align: middle;
}

.text-content1 {
        font-family: "inter";
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    vertical-align: middle;
}
.event-content {
    display: flex;
    gap: 15px;
}
.event-content div:last-child {
    margin-top: auto;
}