/* Individualized CSS for portal pages */

/* ===== PCL123 Portal Theme Overrides ===== */

/* Font + color palette */
:root {
  --pcl123-font: 'Poppins', 'Nunito', 'Open Sans', sans-serif;
  --pcl123-blue: #cce4f4;
  --pcl123-primary-blue: #30aed2;
  --pcl123-pink: #f6d9eb;
  --pcl123-yellow: #ffb84d;
  --pcl123-red: #f54768;
  --pcl123-navy: #003366;
}

.path-local-pcl-portals .pcl-p123-sb-page .pcl-stage-launch__btn,
.path-local-pcl-portals .pcl-holiday-page .pcl-stage-launch__btn {
  background: linear-gradient(135deg, var(--pcl123-red), var(--pcl123-yellow)) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.85rem 2.4rem;
  box-shadow: 0 12px 24px rgba(245, 71, 104, 0.22);
}

.path-local-pcl-portals .pcl-p123-sb-page .pcl-stage-launch__btn:hover,
.path-local-pcl-portals .pcl-p123-sb-page .pcl-stage-launch__btn:focus,
.path-local-pcl-portals .pcl-holiday-page .pcl-stage-launch__btn:hover,
.path-local-pcl-portals .pcl-holiday-page .pcl-stage-launch__btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(245, 71, 104, 0.3);
}



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

/* === Alternating background colours === */
.pcl-custom-card:nth-child(odd) {
  background: var(--pcl123-pink);
}

.pcl-custom-card:nth-child(even) {
  background: var(--pcl123-blue);
}

/* === Card layout tweaks === */
.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);
}

h3.pcl-card-title { margin: 0px; }
h3.pcl-card-title > span {
  display: inline;                /* acts like text */
  background: linear-gradient(90deg, #F68D2C 0%, #F92A82 100%);
  color: #fff;
  line-height: 1.7;
  padding: 5px;
  border-radius: 14px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;    /* keeps pill shape on wrapped lines */
}

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

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

.pcl-card-description {
  font-family: var(--pcl123-font);
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
}

/* === Button styling === */
.pcl-card-btn {
  background: linear-gradient(135deg, var(--pcl123-red), #d92650);
  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, #d92650, #b61b42);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #fff;
}

/* === Section titles === */
.pcl-portal-section h2 {
  font-family: var(--pcl123-font);
  font-weight: 800;
  color: var(--pcl123-navy);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* === Responsive === */
@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-p123-resources-page {
  display: grid;
  gap: 1.25rem;
}

.path-local-pcl-portals .pcl-p123-resources-page__hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.75fr);
}

.path-local-pcl-portals .pcl-p123-resources-page__subjects {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.path-local-pcl-portals .pcl-p123-resources-page__subject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--pcl123-navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 16px rgba(0, 51, 102, 0.08);
}

.path-local-pcl-portals .pcl-p123-resources-page__subject.is-current {
  background: linear-gradient(135deg, #f54768, #ffb84d);
  color: #fff;
}

.path-local-pcl-portals .pcl-p123-resources-page__searchrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.path-local-pcl-portals .pcl-p123-resources-page__searchrow .form-control {
  min-height: 3.15rem;
  border-radius: 999px;
  padding-inline: 1.15rem;
  border: 1px solid rgba(48, 174, 210, 0.26);
  box-shadow: 0 8px 18px rgba(0, 51, 102, 0.05);
}

.path-local-pcl-portals .pcl-p123-resources-page__searchrow .form-control:focus {
  border-color: var(--pcl123-primary-blue, #30aed2);
  box-shadow: 0 0 0 0.2rem rgba(48, 174, 210, 0.16);
}

.path-local-pcl-portals .pcl-p123-resources-page__searchrow .btn-primary {
  min-height: 3.15rem;
  padding-inline: 1.35rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--pcl123-primary-blue, #30aed2), #1f87a7);
  box-shadow: 0 10px 20px rgba(48, 174, 210, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.path-local-pcl-portals .pcl-p123-resources-page__searchrow .btn-primary:hover,
.path-local-pcl-portals .pcl-p123-resources-page__searchrow .btn-primary:focus {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 24px rgba(48, 174, 210, 0.24);
}

.path-local-pcl-portals .pcl-p123-resources-page__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.08);
}

.path-local-pcl-portals .pcl-p123-resources-page__video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.path-local-pcl-portals .pcl-p123-resources-page__video-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.08);
}

.path-local-pcl-portals .pcl-p123-resources-page__video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1rem;
}

.path-local-pcl-portals .pcl-p123-gallery-page .pcl-p123-gallery-page__video-media .pcl-p123-resources-page__video-thumb {
  object-fit: contain;
  object-position: center center;
  background: #f3f7fb;
}

.path-local-pcl-portals .pcl-p123-resources-page__video-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--pcl123-navy);
}

.path-local-pcl-portals .pcl-p123-resources-page__video-body p {
  margin: 0 0 0.8rem;
  color: #334861;
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 0 12px 24px rgba(0, 51, 102, 0.09);
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination-meta {
  font-size: 0.96rem;
  font-weight: 600;
  color: #4b6480;
  text-align: center;
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .pagination {
  --bs-pagination-padding-x: 1rem;
  --bs-pagination-padding-y: 0.78rem;
  --bs-pagination-font-size: 0.98rem;
  --bs-pagination-color: var(--pcl123-primary-blue, #30aed2);
  --bs-pagination-bg: #ffffff;
  --bs-pagination-border-color: rgba(48, 174, 210, 0.18);
  --bs-pagination-hover-color: #ffffff;
  --bs-pagination-hover-bg: var(--pcl123-primary-blue, #30aed2);
  --bs-pagination-hover-border-color: var(--pcl123-primary-blue, #30aed2);
  --bs-pagination-focus-color: #ffffff;
  --bs-pagination-focus-bg: var(--pcl123-primary-blue, #30aed2);
  --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(48, 174, 210, 0.2);
  --bs-pagination-active-color: #ffffff;
  --bs-pagination-active-bg: var(--pcl123-primary-blue, #30aed2);
  --bs-pagination-active-border-color: var(--pcl123-primary-blue, #30aed2);
  --bs-pagination-disabled-color: #9bb0c6;
  --bs-pagination-disabled-bg: #f4f7fb;
  --bs-pagination-disabled-border-color: rgba(0, 51, 102, 0.08);
  gap: 0.35rem;
  margin: 0;
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-item {
  margin: 0;
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-link {
  min-width: 2.85rem;
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  font-weight: 700;
  color: var(--pcl123-primary-blue, #30aed2);
  background: #fff;
  border-color: rgba(48, 174, 210, 0.2);
  box-shadow: 0 6px 16px rgba(0, 51, 102, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-link:hover,
.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-link:focus {
  transform: translateY(-1px);
  color: #fff;
  background: var(--pcl123-primary-blue, #30aed2);
  border-color: var(--pcl123-primary-blue, #30aed2);
  box-shadow: 0 10px 20px rgba(48, 174, 210, 0.22);
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-item.active .page-link,
.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-item.active .page-link:hover,
.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-item.active .page-link:focus {
  color: #fff;
  background: linear-gradient(135deg, var(--pcl123-primary-blue, #30aed2), #1f87a7);
  border-color: transparent;
  box-shadow: 0 12px 22px rgba(48, 174, 210, 0.28);
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-item.disabled .page-link {
  color: #9bb0c6;
  background: #f4f7fb;
  border-color: rgba(0, 51, 102, 0.08);
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-item.disabled .page-link:hover,
.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-item.disabled .page-link:focus {
  color: #9bb0c6;
  background: #f4f7fb;
  border-color: rgba(0, 51, 102, 0.08);
  box-shadow: none;
}

.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-link[aria-label="Previous page"],
.path-local-pcl-portals .pcl-p123-resources-page__pagination .page-link[aria-label="Next page"] {
  min-width: 6.2rem;
  padding-inline: 1.15rem;
}

.path-local-pcl-portals .pcl-p123-resources-page__progress {
  display: grid;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.08);
}

.path-local-pcl-portals .pcl-p123-resources-page__progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 51, 102, 0.12);
  overflow: hidden;
}

.path-local-pcl-portals .pcl-p123-resources-page__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffb84d, #f54768);
}

.path-local-pcl-portals .pcl-p123-resources-page__progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.path-local-pcl-portals .pcl-p123-resources-page__stage {
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(204, 228, 244, 0.55);
  color: var(--pcl123-navy);
}

.path-local-pcl-portals .pcl-p123-resources-page__stage.is-complete {
  background: rgba(246, 217, 235, 0.86);
}

.path-local-pcl-portals .pcl-p123-resources-page__stage h4,
.path-local-pcl-portals .pcl-p123-resources-page__stage p {
  margin: 0;
}

.path-local-pcl-portals .pcl-p123-resources-page__stage p {
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

.path-local-pcl-portals .pcl-jumbies {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 3rem;
  color: #1d2a39;
  background: transparent;
}

body#page-local-pcl_portals-index.path-local-pcl-portals.pcl-jumbies-route {
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #000;
  overflow-x: hidden;
  background-image: url('/local/pcl_portals/pix/pcl123/jumbies/images/jumbies_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

body#page-local-pcl_portals-index.path-local-pcl-portals.pcl-jumbies-route::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
  z-index: -1;
}

.path-local-pcl-portals .pcl-jumbies-hero {
  position: relative;
  overflow: hidden;
  min-height: min(72vh, 760px);
  border-radius: 0 0 1.6rem 1.6rem;
  background: linear-gradient(180deg, #b64f05 0%, #d7680a 42%, #e67c13 100%);
  box-shadow: 0 18px 40px rgba(102, 72, 32, 0.12);
}

.path-local-pcl-portals .pcl-jumbies-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.path-local-pcl-portals .pcl-jumbies-hero__logo-link {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
}

.path-local-pcl-portals .pcl-jumbies-logo {
  max-width: 108px;
  height: auto;
  display: block;
}

.path-local-pcl-portals .pcl-jumbies-nav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.path-local-pcl-portals .pcl-jumbies-nav a,
.path-local-pcl-portals .pcl-jumbies-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 0 2.5px rgba(255, 255, 255, 0.8);
}

.path-local-pcl-portals .pcl-jumbies-poster {
  position: relative;
  z-index: 1;
  min-height: min(72vh, 760px);
}

.path-local-pcl-portals .pcl-jumbies-poster__video {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  display: block;
}

.path-local-pcl-portals .pcl-jumbies-poster__pack {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  width: min(42vw, 430px);
  z-index: 2;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
}

.path-local-pcl-portals .pcl-jumbies-poster__mascot {
  position: absolute;
  left: 4%;
  bottom: 0;
  width: min(24vw, 260px);
  z-index: 2;
}

.path-local-pcl-portals .pcl-jumbies-section,
.path-local-pcl-portals .pcl-jumbies-about,
.path-local-pcl-portals .pcl-jumbies-footer {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.path-local-pcl-portals .pcl-jumbies-section__lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 248, 222, 0.92);
}

.path-local-pcl-portals .pcl-jumbies-section {
  margin-top: 1.5rem;
  padding: 1.7rem;
  border-radius: 1.35rem;
  background: rgba(88, 132, 102, 0.8);
  box-shadow: 0 14px 28px rgba(15, 35, 64, 0.12);
}

.path-local-pcl-portals .pcl-jumbies-section h2 {
  margin: 0;
  color: #3d1c15;
  font-size: 1.75rem;
}

.path-local-pcl-portals .pcl-jumbies-grid,
.path-local-pcl-portals .pcl-jumbies-rules-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}

.path-local-pcl-portals .pcl-jumbies-card,
.path-local-pcl-portals .pcl-jumbies-rule-card {
  padding: 1.15rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #fff8e3 0%, #fffdf2 100%);
  border: 1px solid rgba(233, 232, 192, 0.45);
}

.path-local-pcl-portals #xRulesSection {
  background: linear-gradient(135deg, #e9e8c0 0%, #ffffff 100%);
}

.path-local-pcl-portals #xRulesSection .pcl-jumbies-section__lead {
  color: #3d1c15;
}

.path-local-pcl-portals #xRulesSection h2,
.path-local-pcl-portals #xRulesSection h3 {
  color: #588466;
}

.path-local-pcl-portals .pcl-jumbies-card h3,
.path-local-pcl-portals .pcl-jumbies-rule-card h3,
.path-local-pcl-portals .pcl-jumbies-about__copy h2 {
  margin: 0 0 0.6rem;
  color: #3d1c15;
}

.path-local-pcl-portals .pcl-jumbies-rules {
  margin: 0;
  padding-left: 1.1rem;
}

.path-local-pcl-portals .pcl-jumbies-rules li + li {
  margin-top: 0.5rem;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard,
.path-local-pcl-portals .pcl-jumbies-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__slice,
.path-local-pcl-portals .pcl-jumbies-gallery__lane {
  padding: 1.15rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #fff9e7 0%, #fffef8 100%);
  border: 1px solid rgba(233, 232, 192, 0.55);
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__meta,
.path-local-pcl-portals .pcl-jumbies-card__status {
  color: #6a5b43;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin-top: 0.8rem;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__table th,
.path-local-pcl-portals .pcl-jumbies-scoreboard__table td {
  padding: 0.65rem 0.55rem;
  border-bottom: none;
  text-align: left;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__table thead th {
  background: #6b5d40;
  color: #e9e8c0;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__table tbody tr:nth-child(odd) {
  background: #f0c96e;
  color: #3d1c15;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__table tbody tr:nth-child(even) {
  background: #f6aa1c;
  color: #3d1c15;
}

.path-local-pcl-portals .pcl-jumbies-scoreboard__table tbody tr:hover {
  background: #588466;
  color: #e9e8c0;
}

.path-local-pcl-portals .pcl-jumbies-gallery__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 0.85rem;
}

.path-local-pcl-portals .pcl-jumbies-gallery__carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34vw);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 0.75rem;
  margin-top: 0.85rem;
  scroll-snap-type: x proximity;
}

.path-local-pcl-portals .pcl-jumbies-gallery__carousel::-webkit-scrollbar {
  height: 10px;
}

.path-local-pcl-portals .pcl-jumbies-gallery__carousel::-webkit-scrollbar-thumb {
  background: rgba(125, 16, 32, 0.3);
  border-radius: 999px;
}

.path-local-pcl-portals .pcl-jumbies-gallery__card {
  overflow: hidden;
  border-radius: 1rem;
  background: #fffef8;
  box-shadow: 0 10px 22px rgba(61, 28, 21, 0.1);
}

.path-local-pcl-portals .pcl-jumbies-gallery__card--carousel {
  scroll-snap-align: start;
}

.path-local-pcl-portals .pcl-jumbies-gallery__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.path-local-pcl-portals .pcl-jumbies-gallery__body {
  padding: 0.9rem 1rem 1rem;
}

.path-local-pcl-portals .pcl-jumbies-gallery__body h4 {
  margin: 0 0 0.45rem;
  color: #3d1c15;
}

.path-local-pcl-portals .pcl-jumbies-gallery__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #925419;
}

.path-local-pcl-portals .pcl-jumbies-gallery__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.path-local-pcl-portals .pcl-jumbies-gallery__links a,
.path-local-pcl-portals .pcl-jumbies-gallery__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #fff8e3;
  background: #69261c;
}

.path-local-pcl-portals .pcl-jumbies-about {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.7rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(88, 132, 102, 0.92) 0%, rgba(88, 132, 102, 0.86) 100%);
  box-shadow: 0 14px 28px rgba(15, 35, 64, 0.12);
}

.path-local-pcl-portals .pcl-jumbies-about__copy {
  padding: 1.25rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #fff8e3 0%, #fffef8 100%);
}

.path-local-pcl-portals .pcl-jumbies-mascot,
.path-local-pcl-portals .pcl-jumbies-footer {
  max-width: 100%;
  height: auto;
  display: block;
}

.path-local-pcl-portals .pcl-jumbies-footer {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 1.35rem;
}

@media (max-width: 768px) {
  .path-local-pcl-portals .pcl-jumbies-hero,
  .path-local-pcl-portals .pcl-jumbies-poster {
    min-height: 54vh;
  }

  .path-local-pcl-portals .pcl-jumbies-poster__video {
    height: 54vh;
  }

  .path-local-pcl-portals .pcl-jumbies-logo {
    max-width: 84px;
  }

  .path-local-pcl-portals .pcl-jumbies-nav {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    justify-content: flex-end;
  }

  .path-local-pcl-portals .pcl-jumbies-poster__pack {
    width: min(58vw, 290px);
    bottom: 13%;
  }

  .path-local-pcl-portals .pcl-jumbies-poster__mascot {
    width: min(34vw, 160px);
  }

  .path-local-pcl-portals .pcl-jumbies-about {
    grid-template-columns: 1fr;
  }

  .path-local-pcl-portals .pcl-jumbies-gallery__carousel {
    grid-auto-columns: minmax(260px, 78vw);
  }
}

.path-local-pcl-portals .pcl-p123-resources-page__empty {
  padding: 1rem 1.25rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
}

/* Resources page — fullscreen (pcl-microsite-fullscreen) overrides */
body.pcl-p123-resources-route {
  background: linear-gradient(160deg, #f5daea 0%, #d5eaf7 50%, #cce4f4 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Let the body gradient show through Moodle's inner containers */
body.pcl-p123-resources-route #topofscroll,
body.pcl-p123-resources-route .main-inner,
body.pcl-p123-resources-route #region-main {
  background: transparent !important;
}

body.pcl-p123-resources-route .pcl-p123-resources-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

body.pcl-p123-resources-route .pcl-p123-resources-page__video-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.path-local-pcl-portals .pcl-p123-page {
  display: grid;
  gap: 1.5rem;
}

body#page-local-pcl_portals-index.path-local-pcl-portals.pcl-p123-route #page-header {
  display: none !important;
}

.path-local-pcl-portals .pcl-p123-about-page {
  gap: 1.2rem;
}

.path-local-pcl-portals .pcl-p123-about-page nav.pcl-p123-inline-nav {
  display: none;
}

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

.path-local-pcl-portals .pcl-p123-banner--hero {
  padding-top: 0.35rem;
}

.path-local-pcl-portals .pcl-p123-banner--footer {
  margin-top: 0.75rem;
}

.path-local-pcl-portals .pcl-p123-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

.path-local-pcl-portals .pcl-p123-banner--hero .pcl-p123-banner__image {
  max-width: 560px;
}

.path-local-pcl-portals .pcl-p123-banner--footer .pcl-p123-banner__image {
  max-width: 100%;
  border-radius: 0 0 1rem 1rem;
}

.path-local-pcl-portals.pcl-p123-route footer#page-footer {
  display: none !important;
}

.path-local-pcl-portals.pcl-p123-route .pcl-portal-footer {
  margin: 1rem auto 0;
  background: transparent;
}

.path-local-pcl-portals.pcl-p123-route .pcl-portal-footer-content {
  margin: 0;
  padding: 0;
  background-image: url('/local/pcl_portals/pix/pcl123/rbl-footer.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  aspect-ratio: 1440 / 500;
  border: 0;
  color: #ffffff;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.path-local-pcl-portals .pcl-p123-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 184, 77, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(246, 217, 235, 0.9) 0%, rgba(204, 228, 244, 0.96) 55%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 18px 36px rgba(0, 51, 102, 0.12);
}

.path-local-pcl-portals .pcl-p123-eyebrow,
.path-local-pcl-portals .pcl-p123-card__eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--pcl123-red);
}

.path-local-pcl-portals .pcl-p123-title {
  margin: 0 0 0.55rem;
  font-family: var(--pcl123-font);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: var(--pcl123-navy);
}

.path-local-pcl-portals .pcl-p123-lead,
.path-local-pcl-portals .pcl-p123-note {
  margin: 0;
  color: #32485f;
  font-size: 1rem;
  line-height: 1.6;
}

.path-local-pcl-portals .pcl-p123-note {
  margin-top: 0.75rem;
}

.path-local-pcl-portals .pcl-p123-hero__art {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.path-local-pcl-portals .pcl-p123-hero__logo,
.path-local-pcl-portals .pcl-p123-hero__badge {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.path-local-pcl-portals .pcl-p123-hero__logo {
  max-height: 92px;
}

.path-local-pcl-portals .pcl-p123-hero__badge {
  max-height: 120px;
}

.path-local-pcl-portals .pcl-p123-card-grid {
  display: grid;
  gap: 1rem;
}

.path-local-pcl-portals .pcl-p123-card {
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 51, 102, 0.1);
}

.path-local-pcl-portals .pcl-p123-card:nth-child(odd) {
  background: rgba(246, 217, 235, 0.96);
}

.path-local-pcl-portals .pcl-p123-card:nth-child(even) {
  background: rgba(204, 228, 244, 0.96);
}

.path-local-pcl-portals .pcl-p123-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.path-local-pcl-portals .pcl-p123-card__image {
  max-width: 100%;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.path-local-pcl-portals .pcl-p123-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--pcl123-font);
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  font-weight: 800;
  color: var(--pcl123-navy);
  line-height: 1.2;
}

.path-local-pcl-portals .pcl-p123-card__description,
.path-local-pcl-portals .pcl-p123-card__status {
  margin: 0;
  color: #31404a;
  line-height: 1.55;
}

.path-local-pcl-portals .pcl-p123-card__status {
  margin-top: 0.6rem;
  font-size: 0.93rem;
}

.path-local-pcl-portals .pcl-p123-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pcl123-red), #d92650);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.path-local-pcl-portals .pcl-p123-card__button:hover,
.path-local-pcl-portals .pcl-p123-card__button:focus {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(245, 71, 104, 0.24);
}

.path-local-pcl-portals .pcl-p123-card__button--disabled {
  background: linear-gradient(135deg, #92a0aa, #7b8791);
  cursor: default;
}

.path-local-pcl-portals .pcl-p123-reference {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 51, 102, 0.08);
}

.path-local-pcl-portals .pcl-p123-reference__text {
  margin: 0 0 0.4rem;
  color: #4f6070;
}

.path-local-pcl-portals .pcl-p123-reference__link {
  color: var(--pcl123-navy);
  font-weight: 700;
  word-break: break-all;
}

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

.path-local-pcl-portals .pcl-p123-gallery-page {
  display: grid;
  gap: 1.5rem;
}

.path-local-pcl-portals .pcl-p123-gallery-page__section {
  display: grid;
  gap: 1rem;
}

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

.path-local-pcl-portals .pcl-p123-gallery-page__card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.1);
  box-shadow: 0 16px 36px rgba(0, 51, 102, 0.1);
}

.path-local-pcl-portals .pcl-p123-gallery-page__media,
.path-local-pcl-portals .pcl-p123-gallery-page__video-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.path-local-pcl-portals .pcl-p123-gallery-page__cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #f3f7fb;
}

.path-local-pcl-portals .pcl-p123-gallery-page__media:hover .pcl-p123-gallery-page__cover,
.path-local-pcl-portals .pcl-p123-gallery-page__media:focus .pcl-p123-gallery-page__cover,
.path-local-pcl-portals .pcl-p123-gallery-page__video-media:hover .pcl-p123-resources-page__video-thumb,
.path-local-pcl-portals .pcl-p123-gallery-page__video-media:focus .pcl-p123-resources-page__video-thumb {
  filter: saturate(1.08) brightness(0.96);
}

.path-local-pcl-portals .pcl-p123-gallery-page__media-label {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pcl123-navy);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 22, 43, 0.16);
}

.path-local-pcl-portals .pcl-p123-gallery-page__body {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.path-local-pcl-portals .pcl-p123-gallery-page__body h4 {
  margin: 0;
  color: var(--pcl123-navy);
}

.path-local-pcl-portals .pcl-p123-gallery-page__body p {
  margin: 0;
  color: rgba(0, 51, 102, 0.8);
}

.path-local-pcl-portals .pcl-p123-gallery-page__count {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  background: rgba(48, 174, 210, 0.12);
  color: var(--pcl123-navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.path-local-pcl-portals .pcl-p123-gallery-page__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
  gap: 0.4rem;
  max-height: 128px;
  overflow: auto;
  padding-right: 0.2rem;
}

.path-local-pcl-portals .pcl-p123-gallery-page__thumbs button {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.4rem;
  overflow: hidden;
  background: #f3f7fb;
  cursor: pointer;
}

.path-local-pcl-portals .pcl-p123-gallery-page__thumbs button:hover,
.path-local-pcl-portals .pcl-p123-gallery-page__thumbs button:focus {
  border-color: var(--pcl123-red);
}

.path-local-pcl-portals .pcl-p123-gallery-page__thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.path-local-pcl-portals .pcl-p123-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 0;
  background: rgba(245, 71, 104, 0.1);
  color: var(--pcl123-red);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.path-local-pcl-portals .pcl-p123-card__button:hover,
.path-local-pcl-portals .pcl-p123-card__button:focus {
  background: var(--pcl123-red);
  color: #fff;
}

.pcl-p123-gallery-modal-open {
  overflow: hidden;
}

.pcl-p123-gallery-lb {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.pcl-p123-gallery-lb.is-open {
  display: flex;
}

.pcl-p123-gallery-lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 22, 43, 0.78);
}

.pcl-p123-gallery-lb__frame {
  position: relative;
  z-index: 1;
  width: min(1080px, 96vw);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #061527;
  border-radius: 0.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.pcl-p123-gallery-lb__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--pcl123-navy);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.pcl-p123-gallery-lb__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3.8rem;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pcl123-navy);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.pcl-p123-gallery-lb__nav--prev {
  left: 0.8rem;
}

.pcl-p123-gallery-lb__nav--next {
  right: 0.8rem;
}

.pcl-p123-gallery-lb:not(.is-slideshow) .pcl-p123-gallery-lb__nav {
  display: none;
}

.pcl-p123-gallery-lb__image,
.pcl-p123-gallery-lb__video {
  display: block;
  max-width: 100%;
  max-height: 90vh;
}

.pcl-p123-gallery-lb__video {
  width: min(960px, 94vw);
  aspect-ratio: 16 / 9;
  background: #000;
}

.pcl-p123-gallery-lb__image[hidden],
.pcl-p123-gallery-lb__video[hidden] {
  display: none;
}

.pcl-p123-gallery-lb__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.8rem;
  z-index: 2;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 22, 43, 0.72);
  color: #fff;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 640px) {
  .path-local-pcl-portals .pcl-p123-gallery-page__grid,
  .path-local-pcl-portals .pcl-p123-resources-page__video-grid {
    grid-template-columns: 1fr;
  }

  .pcl-p123-gallery-lb {
    padding: 0.75rem;
  }

  .pcl-p123-gallery-lb__nav {
    width: 2.4rem;
    height: 3.2rem;
    font-size: 1.8rem;
  }

  .pcl-p123-gallery-lb__nav--prev {
    left: 0.35rem;
  }

  .pcl-p123-gallery-lb__nav--next {
    right: 0.35rem;
  }

  .pcl-p123-gallery-lb__caption {
    font-size: 0.82rem;
    border-radius: 0.5rem;
  }
}

.path-local-pcl-portals .pcl-p123-about-page__story.pcl-p123-card {
  margin-top: 1.5rem;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
  padding: 2.1rem 2.2rem;
  border: 0;
  border-radius: 1.5rem;
  background: #0a8fa3;
  box-shadow: none;
  overflow: hidden;
}

.path-local-pcl-portals .pcl-p123-about-page__story.pcl-p123-card .pcl-p123-card__body {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  max-width: 100%;
}

.path-local-pcl-portals .pcl-p123-about-page__story.pcl-p123-card .pcl-p123-card__body p {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.62;
}

.path-local-pcl-portals .pcl-p123-about-page__actions {
  margin-top: 1rem;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card {
  min-height: 100%;
  border: 0;
  border-radius: 1.5rem;
  background: #0a8fa3;
  box-shadow: none;
  align-items: start;
  overflow: hidden;
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__body {
  padding: 0.35rem 0.15rem;
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__title,
.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__description {
  color: #fff;
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__button {
  background: linear-gradient(135deg, #1e73dd, #0f61c8);
  color: #fff;
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__button:hover,
.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__button:focus {
  background: linear-gradient(135deg, #0f61c8, #0b55b1);
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card--pending {
  background: #0a8fa3;
}

.path-local-pcl-portals .pcl-p123-about-page__actions .pcl-p123-card__body {
  min-height: 100%;
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__tabs,
.path-local-pcl-portals .pcl-p123-scoreboard-page__actions {
  margin-top: 1.5rem;
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__prizes {
  margin-top: 1.5rem;
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__list,
.path-local-pcl-portals .pcl-p123-scoreboard-page__rules {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: rgba(0, 51, 102, 0.82);
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__tables {
  display: grid;
  gap: 1rem;
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__slice {
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__slice-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--pcl123-navy);
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__slice-meta {
  margin: 0 0 0.8rem;
  color: rgba(0, 51, 102, 0.78);
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__table {
  width: 100%;
  border-collapse: collapse;
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__table th,
.path-local-pcl-portals .pcl-p123-scoreboard-page__table td {
  padding: 0.65rem 0.7rem;
  border-bottom: 1px solid rgba(0, 51, 102, 0.08);
  text-align: left;
  color: rgba(0, 51, 102, 0.92);
}

.path-local-pcl-portals .pcl-p123-scoreboard-page__table th {
  font-weight: 700;
  color: var(--pcl123-navy);
}

.path-local-pcl-portals .pcl-p123-topics-page__group,
.path-local-pcl-portals .pcl-p123-topics-page__cards {
  margin-top: 1.5rem;
}

.path-local-pcl-portals .pcl-p123-topics-page__links {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  color: rgba(0, 51, 102, 0.82);
}

.path-local-pcl-portals .pcl-p123-competitions-page__grid,
.path-local-pcl-portals .pcl-p123-competitions-page__supporting {
  margin-top: 1.5rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-topics-page__accordion-shell {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises {
  max-width: 1000px;
  margin: 0 auto;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .card + .card {
  margin-top: .5rem;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .card-header {
  border: 0;
  padding: 0;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .card-header .btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: normal;
  text-align: left;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none !important;
  min-height: 56px;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .deeppurple-card .btn {
  background: linear-gradient(135deg, var(--p123-orange), var(--p123-orange-700));
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .lightpurple-card .btn {
  background: linear-gradient(135deg, var(--p123-darkblue), var(--p123-darkblue-800));
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .card-header .btn .fa {
  transition: transform .25s ease;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .card-header .btn[aria-expanded="true"] .fa-angle-down {
  transform: rotate(180deg);
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .card-body {
  background: var(--p123-paper);
  padding: 1rem;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topics-page__index-links {
  margin: 0;
  padding: 0;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topics-page__index-links li + li {
  margin-top: .5rem;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topics-page__index-links a {
  display: block;
  padding: .8rem 1rem;
  border-radius: .75rem;
  background: #fff;
  border-left: 6px solid var(--p123-lightblue);
  color: var(--p123-darkblue);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topic-card {
  height: 100%;
  border: 0;
  border-radius: .9rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topic-card .card-header {
  padding: .8rem 1rem .35rem;
  background: transparent;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topic-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--p123-darkblue);
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topic-card .card-body {
  background: transparent;
  padding-top: .5rem;
}

.path-local-pcl-portals.pcl-p123-route #accordionExercises .pcl-p123-topic-card .btn {
  white-space: normal;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-page__shell {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-page__lead,
.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-page__section {
  margin-bottom: 1rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-card {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(0, 51, 102, 0.08);
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-card--feature {
  padding: 1rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-card__image {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-card__title {
  margin: 0 0 0.65rem;
  color: var(--p123-darkblue);
  font-weight: 800;
  font-size: 1.75rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-card__lead {
  margin-bottom: 1rem;
  color: #334861;
  line-height: 1.6;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-page__rules {
  margin: 0;
  padding-left: 1.2rem;
  color: #334861;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-page__rules li + li {
  margin-top: 0.45rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-page__activities {
  margin-top: 0.75rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-mini-card {
  height: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 0 8px 18px rgba(0, 51, 102, 0.06);
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-mini-card--accent {
  background: linear-gradient(180deg, rgba(246, 141, 44, 0.08), rgba(255, 255, 255, 0.96));
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-mini-card img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 0.75rem;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-mini-card h3 {
  margin: 0 0 0.5rem;
  color: var(--p123-darkblue);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-mini-card p {
  margin: 0 0 0.9rem;
  color: #334861;
  text-align: center;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-snapshot {
  height: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 0 8px 18px rgba(0, 51, 102, 0.06);
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-snapshot h3 {
  margin: 0 0 0.4rem;
  color: var(--p123-darkblue);
  font-size: 1.05rem;
  font-weight: 800;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-snapshot__meta,
.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-snapshot__row,
.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-snapshot__empty {
  margin: 0 0 0.4rem;
  color: #334861;
}

.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-snapshot__row:last-child,
.path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-snapshot__empty:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-card__title {
    font-size: 1.4rem;
  }

  .path-local-pcl-portals.pcl-p123-route .pcl-p123-scoreboard-page__shell {
    padding-top: 0.5rem;
  }
}
/* ============================================================
   Holiday Snacks microsite — pcl-holiday-* component system
   Video hero + section panels. Loaded via pcl123.css on pcl-holiday-route.
   ============================================================ */

.path-local-pcl-portals.pcl-holiday-route .pcl-portal-footer {
    display: none !important;
}

.path-local-pcl-portals.pcl-holiday-route #region-main {
    padding: 0;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-page {
    width: 100%;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(41, 12, 76, 0.92) 0%, rgba(14, 38, 67, 0.92) 55%, rgba(239, 120, 39, 0.92) 100%),
        url('/local/pcl_portals/pix/pcl123/holiday/bigfoot_microsite_bg.png') center top / cover no-repeat fixed;
}

/* --- Video hero ------------------------------------------- */
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 5rem);
    overflow: hidden;
    background: #0e2643;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(14, 38, 67, 0.45), rgba(41, 12, 76, 0.25), rgba(0, 0, 0, 0));
    z-index: 1;
}

/* Heading bar — semi-transparent dark strip */
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__heading {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 68px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__home {
    display: flex;
    align-items: center;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__logo {
    height: 48px;
    width: auto;
    display: block;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__navlink {
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s, border-color 0.2s;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__navlink:hover,
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__navlink:focus {
    background: rgba(239, 120, 39, 0.85);
    border-color: transparent;
    color: #fff;
}

/* Scroll prompt */
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    opacity: 0.8;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__mouse {
    width: 22px;
    height: 34px;
    border: 2px solid #fff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__scroller {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: pcl-holiday-scroll 1.6s ease-in-out infinite;
}

@keyframes pcl-holiday-scroll {
    0%   { top: 5px; opacity: 1; }
    80%  { top: 18px; opacity: 0; }
    100% { top: 5px; opacity: 0; }
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-hero__eyebrow,
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: #ffd36d;
    margin-bottom: 0.35rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-section__panel h1 {
    margin: 0 0 1rem;
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
    color: #1c2430;
    font-weight: 800;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1rem 1.75rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-section__panel {
    background: rgba(255, 255, 255, 0.95);
    color: #1c2430;
    border-radius: 1rem;
    box-shadow: 0 14px 34px rgba(17, 39, 56, 0.18);
    padding: 1.25rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-rulecard {
    border-radius: 0.85rem;
    border: 1px solid rgba(17, 39, 56, 0.12);
    box-shadow: 0 8px 18px rgba(17, 39, 56, 0.08);
    background: #fff;
    padding: 1.25rem;
    height: 100%;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-rulecard__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ef7827;
    margin-bottom: 0.75rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tabs {
    display: grid;
    gap: 1rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tabs .nav-tabs {
    border-bottom: 0;
    gap: 0.5rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tabs .nav-link {
    border-radius: 999px;
    border: 1px solid rgba(17, 39, 56, 0.14);
    background: #fff;
    color: #1c2430;
    font-weight: 800;
    padding: 0.7rem 1.1rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tabs .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #ef7827, #f7a100);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(239, 120, 39, 0.28);
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tabs .tab-content {
    border: 1px solid rgba(17, 39, 56, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tabs .tab-pane {
    min-height: 4rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-intro {
    margin-bottom: 1rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-tablewrap {
    margin-top: 0.25rem;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-table {
    width: 100%;
    margin-bottom: 0;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-table thead th {
    background: rgba(239, 120, 39, 0.08);
    border-bottom: 2px solid rgba(239, 120, 39, 0.18);
    color: #1c2430;
    font-weight: 800;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-table tbody td {
    vertical-align: middle;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-table tbody tr td {
    background: rgba(255, 255, 255, 0.94);
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-table #tableclasstable_loading,
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-table #tabletermtable_loading {
    font-weight: 700;
    color: #44556a;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-rules li {
    margin-bottom: 0.65rem;
}

/* About layout: copy + BigFoot image side by side */
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-about__body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-about__image img {
    height: 180px;
    width: auto;
    display: block;
}

/* Footer image */
.path-local-pcl-portals.pcl-holiday-route #pcl-holiday-footer {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Empty scoreboard cell */
.path-local-pcl-portals.pcl-holiday-route .pcl-holiday-scoreboard-empty {
    text-align: center;
    font-weight: 700;
    color: #44556a;
    padding: 2rem 0;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__heading {
        padding: 0 1rem;
    }
    .path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__logo {
        height: 36px;
    }
    .path-local-pcl-portals.pcl-holiday-route .pcl-holiday-video-hero__navlink {
        font-size: 12px;
        padding: 0 0.7rem;
        height: 34px;
    }
    .path-local-pcl-portals.pcl-holiday-route .pcl-holiday-about__body {
        grid-template-columns: 1fr;
    }
    .path-local-pcl-portals.pcl-holiday-route .pcl-holiday-about__image {
        display: none;
    }
}

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

.pcl-p123-sb-page {
    background: #eef4fb;
}

/* --- Hero poster ------------------------------------------ */
.pcl-p123-sb-poster {
    position: relative;
    width: 100%;
    height: calc(100vh - 5rem);
    overflow: hidden;
    background: #000;
}

.pcl-p123-sb-poster__video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.pcl-p123-sb-poster__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(50, 60, 148, 0.55), rgba(74, 144, 191, 0.35), rgba(255, 255, 255, 0));
    z-index: 1;
}

/* White heading bar — matches production .Heading */
.pcl-p123-sb-poster__heading {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 62px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.pcl-p123-sb-poster__home {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.pcl-p123-sb-poster__logo {
    height: 50px;
    width: auto;
    display: block;
}

.pcl-p123-sb-poster__menu {
    display: flex;
    gap: 0.45rem;
    align-items: center;
}

.pcl-p123-sb-nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    padding: 0 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, rgb(246, 141, 44), rgb(249, 42, 130)) 0% 50% / 200% 200%;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.12s;
}

.pcl-p123-sb-nav-link:hover,
.pcl-p123-sb-nav-link.is-current {
    opacity: 0.88;
    text-decoration: none;
    color: #fff;
    transform: translateY(-1px);
}

/* Scroll prompt */
.pcl-p123-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.75);
    z-index: 2;
}

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

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

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

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

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

.pcl-p123-sb-section--alt {
    background: #eef4fb;
}

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

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

/* --- Tabs (PCL123 orange/red) ----------------------------- */
.pcl-p123-sb-tabs {
    border-bottom: 2px solid #f8d4db;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

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

.pcl-p123-sb-tabs .nav-link.active,
.pcl-p123-sb-tabs .nav-item.show .nav-link {
    background: linear-gradient(135deg, #f54768, #ff8c42) !important;
    color: #fff !important;
}

/* --- Scoreboard table ------------------------------------ */
.pcl-p123-sb-thead th {
    background: linear-gradient(180deg, #4a7fb5 0%, #1a3a6e 100%);
    color: #fff;
    border-color: transparent;
}

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

/* Simple-DataTables PCL123 theme */
.pcl-p123-sb-section .datatable-top,
.pcl-p123-sb-section .datatable-bottom {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pcl-p123-sb-section .datatable-input {
    border: 2px solid #f0a0b0;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.92rem;
    outline: none;
    color: #003366;
    background: #fff8f9;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.pcl-p123-sb-section .datatable-input:focus {
    border-color: #f54768;
    box-shadow: 0 0 0 3px rgba(245, 71, 104, 0.15);
}

.pcl-p123-sb-section .datatable-selector {
    border: 2px solid #f0a0b0;
    border-radius: 6px;
    padding: 0.4rem 0.65rem;
    font-size: 0.92rem;
    color: #003366;
    background: #fff8f9;
    cursor: pointer;
}

.pcl-p123-sb-section .datatable-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pcl-p123-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 #f0b8c4;
    background: #fff8f9;
    color: #f54768;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.pcl-p123-sb-section .datatable-pagination a:hover {
    background: #fde8ec;
    border-color: #f54768;
    color: #c0263d;
    text-decoration: none;
}

.pcl-p123-sb-section .datatable-pagination .datatable-active a,
.pcl-p123-sb-section .datatable-pagination .datatable-active a:hover {
    background: linear-gradient(135deg, #f54768, #ff8c42);
    border-color: transparent;
    color: #fff;
}

.pcl-p123-sb-section .datatable-pagination .datatable-disabled a,
.pcl-p123-sb-section .datatable-pagination .datatable-disabled a:hover {
    background: #fdf0f2;
    border-color: #f8d4db;
    color: #e0b0bc;
    cursor: default;
}

.pcl-p123-sb-section .datatable-info {
    font-size: 0.88rem;
    color: #003366;
    font-weight: 600;
}

/* --- Games section --------------------------------------- */
.pcl-p123-sb-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.pcl-p123-sb-game-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.pcl-p123-sb-game-card img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.pcl-p123-sb-game-card h4 {
    margin: 0;
    color: #003366;
    font-weight: 800;
}

.pcl-p123-sb-game-card p {
    margin: 0;
    color: #334861;
    font-size: 0.95rem;
}

.pcl-p123-sb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f54768, #ff8c42);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.pcl-p123-sb-btn:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

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

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

.pcl-p123-sb-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #f0f4f8;
    display: block;
}

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

/* --- Back to top ---------------------------------------- */
.pcl-p123-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(135deg, #f54768, #ff8c42);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.15s;
}

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

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

    .pcl-p123-sb-poster__heading {
        padding: 0 1rem;
    }

    .pcl-p123-sb-poster__logo {
        height: 40px;
    }

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

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