.path-local-pcl-portals .pcl-portal-header {
  display: none !important;
}

/* Individualized CSS for portal pages *//* === 1. Font & Color Palette === */
:root {
  --vcce-font: 'Poppins', 'Nunito', 'Open Sans', sans-serif;
  --vcce-sky: #d6ecfa;           /* soft sky blue panels */
  --vcce-lavender: #e7dbfa;      /* soft lavender panels */
  --vcce-deepblue: #004d80;      /* navy for text/buttons */
  --vcce-purple: #a950d3;        /* violet accent (titles, badges) */
  --vcce-midblue: #3182ce;       /* link/button gradient base */
  --vcce-lightblue: #7ec8e3;
}

.path-local-pcl-portals .pcl-vcce-sb-page .pcl-stage-launch__btn {
  background: linear-gradient(135deg, var(--vcce-midblue), var(--vcce-purple)) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.85rem 2.4rem;
  box-shadow: 0 12px 24px rgba(49, 130, 206, 0.22);
}

.path-local-pcl-portals .pcl-vcce-sb-page .pcl-stage-launch__btn:hover,
.path-local-pcl-portals .pcl-vcce-sb-page .pcl-stage-launch__btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(49, 130, 206, 0.3);
}

/* === 2. Card Container === */
.pcl-custom-card-grid {
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* === 3. Alternating Backgrounds === */
.pcl-custom-card:nth-child(odd) {
  background: var(--vcce-sky);
}
.pcl-custom-card:nth-child(even) {
  background: var(--vcce-lavender);
}

/* === 4. Card Layout & Hover === */
.pcl-custom-card {
  border-radius: 1.25rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 3px solid #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pcl-custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* === 5. Title Badge Gradient (Discover / Bonus style) === */
h3.pcl-card-title { margin: 0; }
h3.pcl-card-title > span {
  display: inline;
  background: linear-gradient(90deg, var(--vcce-purple) 0%, #d383ff 100%);
  color: #fff;
  line-height: 1.7;
  padding: 5px 12px;
  border-radius: 14px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* === 6. Left Image Zone === */
.pcl-card-figure {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  padding: 1rem;
}

/* === 7. Typography & Content === */
.pcl-card-title {
  font-family: var(--vcce-font);
  color: var(--vcce-deepblue);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 0 #fff;
}

.pcl-card-description {
  font-family: var(--vcce-font);
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* === 8. Button Styling === */
.pcl-card-btn {
  background: linear-gradient(135deg, var(--vcce-midblue), var(--vcce-lightblue));
  border: none;
  color: #fff;
  border-radius: 2rem;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.pcl-card-btn:hover,
.pcl-card-btn:focus {
  background: linear-gradient(135deg, var(--vcce-lightblue), var(--vcce-midblue));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #fff;
}

/* === 9. Section Titles (Tabs / Headings) === */
.pcl-portal-section h2 {
  font-family: var(--vcce-font);
  font-weight: 800;
  color: var(--vcce-deepblue);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* === 10. Responsive Adjustments === */
@media (max-width: 768px) {
  .pcl-custom-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .pcl-card-figure {
    margin-bottom: 1rem;
  }
  .pcl-card-title {
    font-size: 1.75rem;
  }
}

.path-local-pcl-portals .pcl-vcce-page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.path-local-pcl-portals .pcl-vcce-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.path-local-pcl-portals .pcl-vcce-nav-link {
  padding: .65rem 1rem;
  border-radius: 999px;
  background: #eef8ff;
  color: var(--vcce-deepblue);
  font-weight: 700;
}

.path-local-pcl-portals .pcl-vcce-nav-link.is-current {
  background: linear-gradient(135deg, var(--vcce-midblue), var(--vcce-lightblue));
  color: #fff;
}

.path-local-pcl-portals .pcl-vcce-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.path-local-pcl-portals .pcl-vcce-eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--vcce-purple);
}

.path-local-pcl-portals .pcl-vcce-lead {
  font-size: 1.15rem;
  color: var(--vcce-deepblue);
}

.path-local-pcl-portals .pcl-vcce-callout,
.path-local-pcl-portals .pcl-vcce-filter-card,
.path-local-pcl-portals .pcl-vcce-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 14px 28px rgba(0, 77, 128, .08);
  padding: 1.25rem;
}

.path-local-pcl-portals .pcl-vcce-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.path-local-pcl-portals .pcl-vcce-card__actions,
.path-local-pcl-portals .pcl-vcce-form-preview {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.path-local-pcl-portals .pcl-vcce-grand-prize {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(231, 219, 250, .55), rgba(214, 236, 250, .9));
  border-radius: 1.5rem;
  box-shadow: 0 16px 32px rgba(0, 77, 128, .1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.path-local-pcl-portals .pcl-vcce-grand-prize__media img {
  width: 100%;
  border-radius: 1rem;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.path-local-pcl-portals .pcl-vcce-grand-prize__body {
  display: grid;
  gap: .75rem;
}

.path-local-pcl-portals .pcl-vcce-topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.path-local-pcl-portals .pcl-vcce-topic-chip,
.path-local-pcl-portals .pcl-vcce-form-chip {
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(49, 130, 206, .12);
  color: var(--vcce-deepblue);
  font-weight: 700;
}

.path-local-pcl-portals .pcl-vcce-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.path-local-pcl-portals .pcl-vcce-form label {
  display: grid;
  gap: .35rem;
  font-weight: 700;
  color: var(--vcce-deepblue);
}

.path-local-pcl-portals .pcl-vcce-form input,
.path-local-pcl-portals .pcl-vcce-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 77, 128, .18);
  border-radius: .85rem;
  padding: .8rem .9rem;
  font-weight: 500;
}

.path-local-pcl-portals .pcl-vcce-gallery-section {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.path-local-pcl-portals .pcl-vcce-gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.path-local-pcl-portals .pcl-vcce-gallery-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 14px 28px rgba(0, 77, 128, .08);
  overflow: hidden;
}

.path-local-pcl-portals .pcl-vcce-gallery-cover {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.path-local-pcl-portals .pcl-vcce-gallery-body {
  padding: 1rem 1.1rem 1.2rem;
}

.path-local-pcl-portals .pcl-vcce-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .9rem;
}

.path-local-pcl-portals .pcl-vcce-gallery-thumbs a {
  display: inline-flex;
  align-items: center;
  padding: .5rem .8rem;
  border-radius: 999px;
  background: rgba(169, 80, 211, .12);
  color: var(--vcce-deepblue);
  font-weight: 700;
}

.path-local-pcl-portals .pcl-vcce-grid,
.path-local-pcl-portals .pcl-vcce-course-list__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.path-local-pcl-portals .pcl-vcce-rightstart-page {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 1rem 2.5rem;
  background:
    radial-gradient(circle at top left, rgba(126, 200, 227, 0.16), transparent 36%),
    radial-gradient(circle at top right, rgba(169, 80, 211, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 254, 1));
}

.path-local-pcl-portals .pcl-vcce-rightstart-banner {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-banner img {
  display: block;
  width: min(320px, 100%);
  height: auto;
}

.path-local-pcl-portals .pcl-vcce-rightstart-header-image {
  max-width: 320px;
}

.path-local-pcl-portals .pcl-vcce-rightstart-shell {
  max-width: 1600px;
}

.path-local-pcl-portals .pcl-vcce-rightstart-content-shell {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 111, 197, 0.10);
  border-radius: 1.75rem;
  box-shadow: 0 18px 40px rgba(0, 77, 128, 0.08);
  padding: 1rem 1rem 1.5rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-sidenav {
  position: sticky;
  top: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 111, 197, 0.10);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 77, 128, 0.08);
  padding: 1rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-sidenav__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #7e95b8;
  margin-bottom: 0.75rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-nav {
  gap: 0.5rem;
  margin-top: 0;
}

.path-local-pcl-portals .pcl-vcce-rightstart-nav .nav-link {
  display: block;
  border: 1px solid rgba(15, 111, 197, 0.14);
  border-radius: 1rem;
  background: rgba(247, 251, 255, 0.95);
  color: #1f6fd0;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 0.95rem 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.path-local-pcl-portals .pcl-vcce-rightstart-nav .nav-link.active {
  background: linear-gradient(135deg, #1f6fd0, #3da8ea);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 111, 208, 0.22);
  transform: translateX(2px);
}

.path-local-pcl-portals .pcl-vcce-rightstart-nav .nav-link:hover,
.path-local-pcl-portals .pcl-vcce-rightstart-nav .nav-link:focus {
  transform: translateX(2px);
  box-shadow: 0 10px 20px rgba(31, 111, 208, 0.14);
}

.path-local-pcl-portals .pcl-vcce-rightstart-tabcontent {
  min-height: 500px;
}

.path-local-pcl-portals .pcl-vcce-rightstart-pane {
  padding: 0;
}

.path-local-pcl-portals .pcl-vcce-rightstart-well {
  border: 1px solid rgba(15, 111, 197, 0.12);
  border-radius: 1.5rem;
  min-height: 500px;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247, 251, 255, 0.95));
  box-shadow: 0 14px 30px rgba(0, 77, 128, 0.08);
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel {
  position: relative;
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-inner {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 500px;
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-item {
  display: none;
  width: 100%;
  text-align: center;
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-item.is-active {
  display: block;
}

.path-local-pcl-portals .pcl-vcce-rightstart-home-image {
  width: min(520px, 100%);
  max-width: 520px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 77, 128, 0.14);
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 111, 208, 0.94), rgba(61, 168, 234, 0.9));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.95rem;
  line-height: 1;
  padding: 0;
  box-shadow:
    0 16px 30px rgba(0, 77, 128, 0.22),
    0 2px 4px rgba(255, 255, 255, 0.22) inset;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-control--prev {
  left: -0.25rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-control--next {
  right: -0.25rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-control:hover,
.path-local-pcl-portals .pcl-vcce-rightstart-carousel-control:focus {
  transform: translateY(-50%) scale(1.05);
  box-shadow:
    0 20px 36px rgba(0, 77, 128, 0.28),
    0 2px 4px rgba(255, 255, 255, 0.26) inset;
  filter: saturate(1.08);
}

.path-local-pcl-portals .pcl-vcce-rightstart-carousel-control:focus-visible {
  outline: 3px solid rgba(61, 168, 234, 0.4);
  outline-offset: 3px;
}

.path-local-pcl-portals .pcl-vcce-rightstart-subtabs {
  gap: 0;
  margin-bottom: 1rem;
  background: rgba(247, 251, 255, 0.96);
  padding: 0.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 111, 197, 0.10);
}

.path-local-pcl-portals .pcl-vcce-rightstart-subtabs .nav-link {
  border-radius: 0.85rem;
  margin-right: 0.25rem;
  border: 1px solid transparent;
  background: transparent;
  color: #1f6fd0;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-subtabs .nav-link.active {
  background: #fff;
  color: #0f3c78;
  box-shadow: 0 8px 18px rgba(0, 77, 128, 0.08);
}

.path-local-pcl-portals .pcl-vcce-rightstart-subcontent {
  padding-top: 1rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-subpane h3 {
  font-family: var(--vcce-font);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--vcce-deepblue);
}

.path-local-pcl-portals .pcl-vcce-rightstart-subpane p {
  color: #303030;
  line-height: 1.6;
}

.path-local-pcl-portals .pcl-vcce-rightstart-copy-card {
  background: #fff;
  border: 1px solid rgba(15, 111, 197, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 14px 30px rgba(0, 77, 128, 0.08);
  padding: 1.5rem 1.4rem;
  text-align: left;
}

.path-local-pcl-portals .pcl-vcce-rightstart-copy-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.path-local-pcl-portals .pcl-vcce-rightstart-videos {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.path-local-pcl-portals .pcl-vcce-rightstart-video {
  border: 1px solid rgba(15, 111, 197, 0.12);
  background: #fff;
  padding: 1rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 24px rgba(0, 77, 128, 0.06);
}

.path-local-pcl-portals .pcl-vcce-rightstart-video p {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--vcce-deepblue);
}

.path-local-pcl-portals .pcl-vcce-rightstart-video iframe {
  width: 100%;
  min-height: 240px;
}

.path-local-pcl-portals .pcl-vcce-rightstart-gameslink {
  display: block;
  text-decoration: none;
}

.path-local-pcl-portals .pcl-vcce-rightstart-games-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247, 251, 255, 0.95));
  border: 1px solid rgba(15, 111, 197, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 14px 30px rgba(0, 77, 128, 0.08);
}

.path-local-pcl-portals .pcl-vcce-rightstart-games-card__caption {
  color: #4a5d78;
  font-size: 0.98rem;
  text-align: center;
}

.path-local-pcl-portals .pcl-vcce-rightstart-gamesimage,
.path-local-pcl-portals .pcl-vcce-rightstart-gamesbutton {
  width: min(279px, 25%);
  max-width: 279px;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 22px rgba(0, 77, 128, 0.14);
}

@media (max-width: 767.98px) {
  .path-local-pcl-portals .pcl-vcce-rightstart-page {
    padding-inline: 0.75rem;
  }

  .path-local-pcl-portals .pcl-vcce-rightstart-nav {
    margin-bottom: 1rem;
  }

  .path-local-pcl-portals .pcl-vcce-rightstart-nav .nav-link {
    text-align: center;
  }

  .path-local-pcl-portals .pcl-vcce-rightstart-sidenav {
    position: static;
    margin-bottom: 1rem;
  }

  .path-local-pcl-portals .pcl-vcce-rightstart-content-shell {
    padding: 0.75rem;
    border-radius: 1.25rem;
  }

  .path-local-pcl-portals .pcl-vcce-rightstart-intro {
    padding: 1rem 1.1rem;
  }

  .path-local-pcl-portals .pcl-vcce-rightstart-well {
    min-height: 0;
    padding: 1rem;
  }

  .path-local-pcl-portals .pcl-vcce-rightstart-home-image {
    max-width: 100%;
  }
}

.path-local-pcl-portals .pcl-vcce-rightstart-intro {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, rgba(31, 111, 208, 0.08), rgba(61, 168, 234, 0.05));
  border: 1px solid rgba(15, 111, 197, 0.10);
  border-radius: 1.5rem;
}

.path-local-pcl-portals .pcl-vcce-rightstart-intro__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: #7a8ea8;
}

.path-local-pcl-portals .pcl-vcce-rightstart-intro h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.1;
  color: #0f3c78;
}

.path-local-pcl-portals .pcl-vcce-rightstart-intro p {
  margin: 0;
  max-width: 62ch;
  color: #44556f;
  font-size: 1.05rem;
  line-height: 1.6;
}

.path-local-pcl-portals .pcl-vcce-card--video img {
  width: 100%;
  border-radius: .85rem;
  margin-bottom: 1rem;
}

.path-local-pcl-portals .pcl-vcce-card > img,
.path-local-pcl-portals .pcl-vcce-callout > img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.path-local-pcl-portals .pcl-vcce-course-link {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(126, 200, 227, .28), rgba(169, 80, 211, .12));
  color: var(--vcce-deepblue);
  font-weight: 700;
}

@media (max-width: 768px) {
  .path-local-pcl-portals .pcl-vcce-hero {
    grid-template-columns: 1fr;
  }

  .path-local-pcl-portals .pcl-vcce-grand-prize {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   VCCE Scoreboard Microsite — pcl-vcce-sb-* component system
   Fullscreen hero + content sections for the scoreboard page.
   Loaded via <link> at top of scoreboard.mustache.
   ============================================================ */

/* Page wrapper — no max-width constraint, fills viewport */
.pcl-vcce-sb-page {
    background: #f5f0fa;
}

/* --- Hero poster ------------------------------------------ */
.pcl-vcce-sb-poster {
    position: relative;
    width: 100%;
    height: calc(100vh - 5rem);
    background: linear-gradient(180deg, #1a1a2e 0%, #8f67b6 65%, #c0a0d5 100%);
    overflow: hidden;
}

.pcl-vcce-sb-poster__brand {
    position: absolute;
    top: 1rem;
    left: 3.5vw;
}

.pcl-vcce-sb-poster__logo {
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    max-height: 64px;
    width: auto;
    display: block;
}

.pcl-vcce-sb-poster__menu {
    position: absolute;
    top: 1.65rem;
    right: 3.5vw;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.pcl-vcce-sb-nav-link {
    display: inline-block;
    height: 40px;
    padding: 0 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    line-height: 40px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.15s, color 0.15s;
}

.pcl-vcce-sb-nav-link:hover,
.pcl-vcce-sb-nav-link.is-current {
    background: #fff;
    color: #6a3d9a;
    text-decoration: none;
}

.pcl-vcce-sb-poster__headline {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.18);
    font-size: clamp(2.5rem, 7vw, 7.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    user-select: none;
    width: 100%;
}

/* Scroll prompt */
.pcl-vcce-sb-scroll {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.pcl-vcce-sb-scroll__mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 0.35rem;
}

.pcl-vcce-sb-scroll__scroller {
    width: 4px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    animation: vcce-sb-scroll 1.5s ease infinite;
}

@keyframes vcce-sb-scroll {
    0%   { transform: translateY(0);    opacity: 1; }
    100% { transform: translateY(8px);  opacity: 0; }
}

.pcl-vcce-sb-scroll__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Content sections ------------------------------------- */
.pcl-vcce-sb-section {
    padding: 2.5rem 0;
    background: #fff;
}

.pcl-vcce-sb-section--alt {
    background: #f5f0fa;
}

.pcl-vcce-sb-section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pcl-vcce-sb-section h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #6a3d9a;
    border-bottom: 3px solid #6a3d9a;
    padding-bottom: 0.4rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

/* --- Tabs (VCCE purple) ----------------------------------- */
.pcl-vcce-sb-tabs {
    border-bottom: 2px solid #e0d4f5;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.pcl-vcce-sb-tabs .nav-link {
    border: 0 !important;
    border-radius: 999px 999px 0 0 !important;
    font-weight: 700;
    background: #ede9f8;
    color: #6a3d9a;
    padding: 0.5rem 1.1rem;
    margin-bottom: 0;
    transition: background 0.15s, color 0.15s;
}

.pcl-vcce-sb-tabs .nav-link.active,
.pcl-vcce-sb-tabs .nav-item.show .nav-link {
    background: #6a3d9a !important;
    color: #fff !important;
}

/* --- Scoreboard table ------------------------------------ */
.pcl-vcce-sb-thead th {
    background: linear-gradient(180deg, #8f67b6 0%, #5a2d82 100%);
    color: #fff;
    border-color: transparent;
}

.pcl-vcce-sb-period {
    color: #6a3d9a;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* --- Testimonials ---------------------------------------- */
.pcl-vcce-sb-testimonials {
    background: linear-gradient(180deg, #8f67b6 0%, #5a2d82 100%);
    padding: 2.5rem 0;
}

.pcl-vcce-sb-testimonials h3 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.35);
}

.pcl-vcce-sb-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.pcl-vcce-sb-testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.pcl-vcce-sb-testimonial-msg {
    color: #333;
    font-style: italic;
    margin: 0;
    flex: 1;
}

.pcl-vcce-sb-testimonial-attribution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pcl-vcce-sb-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6a3d9a;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pcl-vcce-sb-testimonial-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.pcl-vcce-sb-testimonial-school {
    color: #666;
    font-size: 0.82rem;
}

/* --- Gallery --------------------------------------------- */
.pcl-vcce-sb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.pcl-vcce-sb-gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pcl-vcce-sb-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pcl-vcce-sb-gallery-caption {
    padding: 0.6rem 0.9rem;
    font-weight: 600;
    color: #4a1d7a;
    margin: 0;
    font-size: 0.9rem;
}

/* --- Back to top ----------------------------------------- */
.pcl-vcce-sb-back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    background: linear-gradient(180deg, #8f67b6 0%, #5a2d82 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.15s;
}

.pcl-vcce-sb-back-to-top:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* --- Simple-DataTables VCCE purple theme ----------------- */

/* Top bar: search input + per-page selector wrapper */
.pcl-vcce-sb-section .datatable-top,
.pcl-vcce-sb-section .datatable-bottom {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Search input */
.pcl-vcce-sb-section .datatable-input {
    border: 2px solid #b07ed4;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.92rem;
    outline: none;
    color: #3d1a6e;
    background: #faf7ff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pcl-vcce-sb-section .datatable-input:focus {
    border-color: #6a3d9a;
    box-shadow: 0 0 0 3px rgba(106, 61, 154, 0.15);
}

/* Per-page selector */
.pcl-vcce-sb-section .datatable-selector {
    border: 2px solid #b07ed4;
    border-radius: 6px;
    padding: 0.4rem 0.65rem;
    font-size: 0.92rem;
    color: #3d1a6e;
    background: #faf7ff;
    cursor: pointer;
}

/* Pagination container */
.pcl-vcce-sb-section .datatable-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Pagination buttons */
.pcl-vcce-sb-section .datatable-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 0.5rem;
    border-radius: 6px;
    border: 1px solid #d0b8f0;
    background: #faf7ff;
    color: #6a3d9a;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.pcl-vcce-sb-section .datatable-pagination a:hover {
    background: #ede4f8;
    border-color: #8f5ab8;
    color: #4a1d7a;
    text-decoration: none;
}

/* Active page button */
.pcl-vcce-sb-section .datatable-pagination .datatable-active a,
.pcl-vcce-sb-section .datatable-pagination .datatable-active a:hover {
    background: linear-gradient(180deg, #8f67b6 0%, #5a2d82 100%);
    border-color: transparent;
    color: #fff;
}

/* Disabled prev/next */
.pcl-vcce-sb-section .datatable-pagination .datatable-disabled a,
.pcl-vcce-sb-section .datatable-pagination .datatable-disabled a:hover {
    background: #f0eaf8;
    border-color: #e0d4f5;
    color: #b09cc8;
    cursor: default;
}

/* Info text (Showing X-Y of Z entries) */
.pcl-vcce-sb-section .datatable-info {
    font-size: 0.88rem;
    color: #6a3d9a;
    font-weight: 600;
}

/* Sortable column headers — show sort arrows */
.pcl-vcce-sb-section .datatable-sorter::before,
.pcl-vcce-sb-section .datatable-sorter::after {
    border-color: rgba(255, 255, 255, 0.55) transparent;
}

.pcl-vcce-sb-section .datatable-sorter:hover::before,
.pcl-vcce-sb-section .datatable-sorter:hover::after {
    border-color: #fff transparent;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 767.98px) {
    .pcl-vcce-sb-poster__menu {
        display: none;
    }

    .pcl-vcce-sb-poster__headline {
        font-size: clamp(2rem, 12vw, 4rem);
        white-space: normal;
        text-align: center;
        width: 90%;
        left: 5%;
        transform: none;
    }

    .pcl-vcce-sb-section-inner {
        padding: 0 1rem;
    }

    .pcl-vcce-sb-section .datatable-top,
    .pcl-vcce-sb-section .datatable-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
