/* Page-specific styles for events */
.events-page .careers-hero {
        padding: 110px 0 40px;
        background: #ffffff;
      }

      .events-page .site-main > .site-content {
        padding-top: 0;
      }

      .events-page .careers-hero .heading-sub {
        margin-bottom: 14px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--NKORR_Blue);
      }

      .events-page .careers-hero .hero-copy {
        max-width: 760px;
      }

      .events-page .careers-hero .hero-copy .heading-title {
        color: var(--sala-neutral-dark, #111111);
        margin-bottom: 18px;
      }

      .events-page .careers-hero .hero-copy .hero-desc {
        max-width: 560px;
        color: var(--sala-neutral-normal, #555555);
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 0;
      }

      .events-page .careers-hero .heading-title {
        color: var(--NKORR_Blue);
      }

      .events-page .careers-hero .row {
        justify-content: flex-start;
      }

      @media (max-width: 767px) {
        .events-page .careers-hero {
          padding: 96px 0 28px;
        }

        .events-page .careers-hero .hero-copy {
          max-width: 100%;
        }
      }

/* Clip slides to the card — without this, prev/next/duplicate slides bleed into neighbouring cards */
.events-container .inner-swiper {
  overflow: hidden;
}

/* Cover fills the slide cleanly — contain causes letterboxing on varied aspect ratios */
.events-container .swiper-slide img {
  object-fit: cover;
}

/* Skeleton cards */
.skeleton-card .skeleton-img {
  width: 100%;
  height: 220px;
  border-radius: 6px 6px 0 0;
  background: #e0e0e0;
}

.skeleton-card .skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: #e0e0e0;
  margin-bottom: 10px;
}

.skeleton-card .skeleton-line.short { width: 40%; }
.skeleton-card .skeleton-line.medium { width: 70%; }
.skeleton-card .skeleton-line.long { width: 90%; }
.skeleton-card .skeleton-line.full { width: 100%; }
.skeleton-card .skeleton-line.title { height: 18px; width: 80%; margin-bottom: 14px; }

.skeleton-card .entry-content {
  padding: 18px 16px 16px;
}

@keyframes skeleton-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.skeleton-card .skeleton-img,
.skeleton-card .skeleton-line {
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 600px 100%;
  animation: skeleton-shimmer 1.4s infinite linear;
}

/* Clean event card */
.event-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dde3ea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

.event-card__image-wrap {
  display: block;
  overflow: hidden;
}

.event-card__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.event-card:hover .event-card__image-wrap img {
  transform: scale(1.04);
}

.event-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.event-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--NKORR_Blue);
  background: rgba(9, 132, 227, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.event-card__year {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

.event-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.event-card__title a {
  color: #111;
  text-decoration: none;
}

.event-card__title a:hover {
  color: var(--NKORR_Blue);
}

.event-card__new {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #00b894;
  color: #fff;
  border-radius: 3px;
  padding: 2px 5px;
  vertical-align: middle;
  margin-left: 4px;
}

.event-card__read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--NKORR_Blue);
  text-decoration: none;
}

.event-card__read-more:hover {
  text-decoration: underline;
}

.events-container .col-lg-4,
.events-container .col-sm-6,
.caseStudy-container .col-lg-4,
.caseStudy-container .col-sm-6,
.whitePaper-container .col-lg-4,
.whitePaper-container .col-sm-6,
.explore-more .col-lg-4 {
  margin-bottom: 28px;
}

/* Change the color of various "bars". */
      .vjs-matrix .vjs-volume-level,
      .vjs-matrix .vjs-play-progress,
      .vjs-matrix .vjs-slider-bar {
        background: #0984e3;
      }

