.seenland-eventlist {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(26px, 3vw, 46px);
  width: 100%;
}

.seenland-event-card {
  min-width: 0;
}

@media (max-width: 1100px) {
  .seenland-eventlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .seenland-eventlist {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .seenland-event-card__logo-wrap {
    width: 150px;
  }
}

.seenland-event-card {
  position: relative;
  text-align: center;
  color: #fff;
  background: transparent;
}

.seenland-event-card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 30px;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.seenland-event-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(6, 171, 225, 0);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(6, 171, 225, 0.22), transparent 48%);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
  pointer-events: none;
}

.seenland-event-card__logo-wrap {
  position: relative;
  z-index: 2;
  width: clamp(120px, 14vw, 180px);
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
}

.seenland-event-card__logo {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: 2px solid rgba(6, 171, 225, 0.75);
  box-shadow:
    0 0 0 6px rgba(6, 171, 225, 0.08),
    0 18px 45px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.seenland-event-card__logo img,
.seenland-event-card__logo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.seenland-event-card__logo img {
  object-fit: cover;
}

.seenland-event-card__logo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
}

.seenland-event-card__content {
  position: relative;
  z-index: 2;
}

.seenland-event-card__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 16px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #06abe1;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(6, 171, 225, 0.28);
}

.seenland-event-card__title {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.seenland-event-card__location {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seenland-event-card__location::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 auto 10px;
  background: #06abe1;
  border-radius: 999px;
}

.seenland-event-card__link:hover,
.seenland-event-card__link:focus-visible {
  transform: translateY(-10px);
  color: #fff;
    padding: 30px;
  margin: 30px;
    transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.seenland-event-card__link:hover::before,
.seenland-event-card__link:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(6, 171, 225, 0.34);
}

.seenland-event-card__link:hover .seenland-event-card__logo,
.seenland-event-card__link:focus-visible .seenland-event-card__logo {
  transform: scale(1.06) rotate(-2deg);
  border-color: #06abe1;
  box-shadow:
    0 0 0 8px rgba(6, 171, 225, 0.12),
    0 0 35px rgba(6, 171, 225, 0.45),
    0 22px 55px rgba(0, 0, 0, 0.45);
}

.seenland-event-card__link:hover .seenland-event-card__date,
.seenland-event-card__link:focus-visible .seenland-event-card__date {
  box-shadow:
    0 0 24px rgba(6, 171, 225, 0.55),
    0 12px 28px rgba(6, 171, 225, 0.28);
}

@media (max-width: 980px) {
  .seenland-eventlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .seenland-eventlist {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .seenland-event-card__logo-wrap {
    width: 150px;
  }
}