.lok26-page,
.lok26-page *,
.lok26-page *::before,
.lok26-page *::after {
  box-sizing: border-box;
}

.lok26-page {
  --lok26-navy: #060f2b;
  --lok26-crimson: #c81249;
  --lok26-crimson-deep: #870e37;
  --lok26-bg: #f2f3f6;
  --lok26-card: #ffffff;
  --lok26-border: #e7e8ee;
  --lok26-text-soft: #6b7280;
  --lok26-free: #1d8f5e;
  --lok26-limited: #b4740e;
  font-family: 'Poppins', sans-serif;
}

.lok26-page a {
  text-decoration: none;
}

.lok26-page h1,
.lok26-page h3,
.lok26-page p {
  margin: 0;
}

/* Hero */
.lok26-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lok26-crimson) 0%, var(--lok26-crimson-deep) 100%);
  padding: 76px 24px 96px;
  text-align: center;
}

.lok26-hero-ball {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 280px;
  height: 280px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.lok26-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.lok26-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.lok26-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.lok26-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
}

/* Content section */
.lok26-section {
  position: relative;
  z-index: 2;
  background: var(--lok26-bg);
  padding: 48px 24px 80px;
  margin-top: -44px;
  border-radius: 28px 28px 0 0;
}

.lok26-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .lok26-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .lok26-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.lok26-card {
  display: flex;
  flex-direction: column;
  background: var(--lok26-card);
  border: 1px solid var(--lok26-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lok26-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(6, 15, 43, 0.14);
  border-color: var(--lok26-crimson);
}

.lok26-map {
  width: 100%;
  height: 190px;
  background: var(--lok26-border);
}

.lok26-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lok26-body {
  padding: 20px 22px 24px;
}

.lok26-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lok26-crimson);
  background: rgba(200, 18, 73, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.lok26-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--lok26-navy);
  line-height: 1.3;
  margin-bottom: 6px;
}

/* Special-purpose note (match hall, extra training slot, ...) */
.lok26-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--lok26-crimson);
  line-height: 1.4;
  padding-left: 10px;
  border-left: 2px solid var(--lok26-crimson);
  margin-top: 8px;
  margin-bottom: 4px;
}

.lok26-address {
  font-size: 14px;
  color: var(--lok26-text-soft);
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 12px;
}

/* Parking info */
.lok26-parking {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.lok26-parking-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lok26-parking--free {
  color: var(--lok26-free);
}

.lok26-parking--limited {
  color: var(--lok26-limited);
}

.lok26-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lok26-navy);
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lok26-directions svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.lok26-directions:hover {
  color: var(--lok26-crimson);
  border-color: var(--lok26-crimson);
}

.lok26-directions:hover svg {
  transform: translateX(3px);
}

/* Mobile */
@media (max-width: 480px) {
  .lok26-hero {
    padding: 56px 20px 76px;
  }

  .lok26-title {
    font-size: 30px;
  }

  .lok26-subtitle {
    font-size: 15px;
  }

  .lok26-section {
    padding: 40px 16px 56px;
  }
}