.activities-events {
  margin-bottom: 3rem;
}
.activities-events .container {
  position: relative;
}
.activities-events__header {
  margin-bottom: 1.75rem;
}
.activities-events__nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 3;
  pointer-events: none;
}
.activities-events__nav-btn {
  background: #ffffff;
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.activities-events__nav-btn:hover {
  background: #ffffff;
  transform: scale(1.05);
}
.activities-events__nav-btn {
  box-shadow: 1px 2px 4px 0 rgba(198, 198, 198, 0.4);
}
.activities-events__nav-btn i {
  font-size: 1rem;
  color: #2B2B3D;
}
.activities-events__nav-btn:hover {
  background-color: #D71921;
}
.activities-events__nav-btn:hover i {
  color: #ffffff;
}
.activities-events__carousel {
  position: relative;
  z-index: 1;
}
.activities-events__carousel .owl-stage {
  display: flex;
  padding-top: 0.5rem;
}
.activities-events__carousel .owl-item {
  height: auto;
}
.activities-events__carousel .owl-item > .event-card {
  height: 100%;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.125rem 1.125rem 2.5625rem;
  border: 1px solid #f0f0f3;
  border-radius: 1.25rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.event-card:hover {
  box-shadow: 0 2px 4px rgba(198, 198, 198, 0.25);
  transform: translateY(-0.375rem);
}
.event-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
}
.event-card__media {
  overflow: hidden;
  border-radius: 0.875rem;
}
.event-card__media img {
  display: block;
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
}
.event-card__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.event-card__title {
  margin: 0;
  font-family: "Arial", sans-serif, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: #2B2B3D;
}
.event-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #666666;
}
.event-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.25rem 1rem;
  border: 1px solid #D71921;
  border-radius: 2.5rem;
  font-size: 0.8125rem;
  line-height: 1.5rem;
  color: #D71921;
  text-decoration: none;
  transition: all 0.3s ease;
}
.event-card__link:hover {
  background-color: #D71921;
  color: #ffffff;
}
