/* CLAT year batch landings (online live / offline) */

.kn-batch-page {
  --batch-accent: #E6AD38;
}

.kn-batch-page.kn-batch--online .kn-batch-hero {
  background:
    radial-gradient(ellipse 65% 75% at 88% 8%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(230, 173, 56, 0.16), transparent 50%),
    linear-gradient(160deg, #0a225f 0%, #07163f 58%, #0c2a6e 100%);
}

.kn-batch-page.kn-batch--offline .kn-batch-hero {
  background:
    radial-gradient(ellipse 65% 75% at 90% 0%, rgba(230, 173, 56, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 55% at 5% 90%, rgba(180, 83, 9, 0.12), transparent 50%),
    linear-gradient(155deg, #0a225f 0%, #0d1f4a 45%, #07163f 100%);
}

.kn-batch-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.kn-batch-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.kn-batch-badge--mode {
  background: var(--batch-accent);
  color: #0a225f;
  border-color: transparent;
}

.kn-batch-switcher {
  background: #f7f5f0;
  border-bottom: 1px solid #e4dfd4;
  position: sticky;
  top: 0;
  z-index: 40;
}

.kn-batch-switcher-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.kn-batch-switcher-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #0a225f;
  background: #fff;
  border: 1px solid #e4dfd4;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.kn-batch-switcher-link:hover {
  border-color: #E6AD38;
  color: #07163f;
  text-decoration: none;
}

.kn-batch-switcher-link.is-active {
  background: #0a225f;
  color: #fff;
  border-color: #0a225f;
}

.kn-batch-join {
  margin: 22px 0 28px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fffdf8 0%, #f7f5f0 100%);
  border-left: 4px solid #E6AD38;
  border-radius: 0 12px 12px 0;
}

.kn-batch-join strong {
  display: block;
  font-family: "Roboto Condensed", "Open Sans", sans-serif;
  font-size: 1.15rem;
  color: #0a225f;
  margin-bottom: 6px;
}

.kn-batch-join p {
  margin: 0 0 12px;
  color: #334155;
  line-height: 1.65;
}

.kn-batch-join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kn-batch-join-links a {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #0a225f;
  background: #fff;
  border: 1px solid #e4dfd4;
}

.kn-batch-join-links a:hover {
  border-color: #E6AD38;
  text-decoration: none;
}

.kn-batch-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 36px;
}

.kn-batch-timeline article {
  position: relative;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1px solid #e4dfd4;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10, 34, 95, 0.04);
}

.kn-batch-timeline-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0a225f;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.kn-batch-timeline h3 {
  font-family: "Roboto Condensed", "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: #0a225f;
  margin: 0 0 8px;
}

.kn-batch-timeline p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}

.kn-batch-syllabus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 0 0 36px;
}

.kn-batch-syllabus article {
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
}

.kn-batch-syllabus h3 {
  font-family: "Roboto Condensed", "Open Sans", sans-serif;
  font-size: 1.05rem;
  color: #0a225f;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E6AD38;
}

.kn-batch-syllabus p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}

.kn-batch-copy {
  margin-bottom: 28px;
}

.kn-batch-copy p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: #334155;
  font-size: 1.02rem;
}

.kn-batch-copy a {
  color: #0a225f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(230, 173, 56, 0.55);
  text-underline-offset: 2px;
}

.kn-batch-copy a:hover {
  color: #07163f;
  text-decoration-color: #E6AD38;
}

@media (max-width: 991px) {
  .kn-batch-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .kn-batch-switcher {
    position: relative;
  }

  .kn-batch-join-links a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }
}
