/* Start custom CSS for section, class: .elementor-element-b1e4ca4 *//* =========================================
   BOTBALL EXPLORER RESOURCES HERO
   ========================================= */

.bbe-resources-hero {
  --bbe-red: #c0392b;
  --bbe-red-dark: #922b21;
  --bbe-red-light: #ff7465;
  --bbe-charcoal: #1c1c1c;
  --bbe-charcoal-light: #2d2d2d;
  --bbe-white: #ffffff;
  --bbe-muted: #b9b9b9;
  --bbe-green: #72ce88;

  position: relative;
  max-width: 1180px;
  margin: 28px auto 66px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(192, 57, 43, 0.3),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      var(--bbe-charcoal) 0%,
      var(--bbe-charcoal-light) 100%
    );
  box-shadow: 0 22px 55px rgba(28, 28, 28, 0.22);
  color: var(--bbe-white);
  font-family: "Barlow", Arial, sans-serif;
}

/* Red top accent */

.bbe-resources-hero::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--bbe-red);
  content: "";
}

/* Technical grid */

.bbe-resources-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.027) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.027) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
  content: "";
  pointer-events: none;
}

.bbe-resources-hero__inner {
  position: relative;
  z-index: 2;
  padding: 64px 68px 59px;
}

/* Top content */

.bbe-resources-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 45px;
  margin-bottom: 39px;
}

.bbe-resources-hero__content {
  position: relative;
  z-index: 2;
}

.bbe-resources-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 17px;
  color: #ff897d;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bbe-resources-hero__eyebrow::before {
  width: 35px;
  height: 4px;
  border-radius: 5px;
  background: var(--bbe-red);
  content: "";
}

.bbe-resources-hero__title {
  max-width: 760px;
  margin: 0 0 19px;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.93;
}

.bbe-resources-hero__title span {
  display: block;
  color: var(--bbe-red-light);
}

.bbe-resources-hero__description {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.62;
}

/* System status */

.bbe-resources-hero__status {
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.bbe-resources-hero__status-light {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: var(--bbe-green);
  box-shadow: 0 0 12px rgba(114, 206, 136, 0.7);
}

.bbe-resources-hero__status-label {
  display: block;
  margin-bottom: 2px;
  color: var(--bbe-green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bbe-resources-hero__status-text {
  display: block;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* Quick-access dashboard */

.bbe-resources-hero__dashboard {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.18);
}

/* Dashboard link */

.bbe-resources-hero__access {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 187px;
  flex-direction: column;
  padding: 24px 21px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  text-decoration: none !important;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bbe-resources-hero__access:last-child {
  border-right: 0;
}

.bbe-resources-hero__access::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--bbe-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bbe-resources-hero__access:hover,
.bbe-resources-hero__access:focus {
  background: rgba(192, 57, 43, 0.15);
  color: #ffffff !important;
}

.bbe-resources-hero__access:hover::before,
.bbe-resources-hero__access:focus::before {
  transform: scaleX(1);
}

.bbe-resources-hero__access:focus-visible {
  z-index: 3;
  outline: 3px solid #ffffff;
  outline-offset: -3px;
}

/* Registered access card */

.bbe-resources-hero__access--registered {
  background: rgba(192, 57, 43, 0.15);
}

.bbe-resources-hero__access--registered::before {
  transform: scaleX(1);
}

/* Icons */

.bbe-resources-hero__icon {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 7px;
  background: rgba(192, 57, 43, 0.2);
  color: var(--bbe-red-light);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.bbe-resources-hero__icon svg {
  width: 24px;
  height: 24px;
}

.bbe-resources-hero__access:hover
.bbe-resources-hero__icon {
  background: var(--bbe-red);
  color: #ffffff;
  transform: scale(1.05);
}

/* Dashboard copy */

.bbe-resources-hero__access-label {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.05;
}

.bbe-resources-hero__access-text {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.4;
}

.bbe-resources-hero__access-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--bbe-red-light);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bbe-resources-hero__access-action::after {
  content: "↓";
  transition: transform 0.2s ease;
}

.bbe-resources-hero__access:hover
.bbe-resources-hero__access-action::after {
  transform: translateY(3px);
}

/* Supporting line */

.bbe-resources-hero__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.bbe-resources-hero__note::before {
  color: var(--bbe-red-light);
  content: "ⓘ";
  font-size: 15px;
}

/* Tablet */

@media (max-width: 900px) {
  .bbe-resources-hero {
    margin-right: 16px;
    margin-left: 16px;
  }

  .bbe-resources-hero__inner {
    padding: 56px 42px 51px;
  }

  .bbe-resources-hero__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bbe-resources-hero__status {
    width: fit-content;
  }

  .bbe-resources-hero__dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bbe-resources-hero__access:nth-child(2) {
    border-right: 0;
  }

  .bbe-resources-hero__access:nth-child(1),
  .bbe-resources-hero__access:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* Mobile */

@media (max-width: 560px) {
  .bbe-resources-hero {
    margin: 18px 14px 48px;
    border-radius: 10px;
  }

  .bbe-resources-hero__inner {
    padding: 49px 24px 45px;
  }

  .bbe-resources-hero__title {
    font-size: 49px;
  }

  .bbe-resources-hero__description {
    font-size: 16px;
  }

  .bbe-resources-hero__status {
    width: auto;
  }

  .bbe-resources-hero__dashboard {
    grid-template-columns: 1fr;
  }

  .bbe-resources-hero__access,
  .bbe-resources-hero__access:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .bbe-resources-hero__access:last-child {
    border-bottom: 0;
  }

  .bbe-resources-hero__access {
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr);
    column-gap: 14px;
    padding: 19px;
  }

  .bbe-resources-hero__icon {
    grid-row: 1 / span 3;
    margin-bottom: 0;
  }

  .bbe-resources-hero__access-label,
  .bbe-resources-hero__access-text,
  .bbe-resources-hero__access-action {
    grid-column: 2;
  }

  .bbe-resources-hero__access-text {
    margin-bottom: 8px;
  }

  .bbe-resources-hero__note {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbe-resources-hero__access,
  .bbe-resources-hero__access::before,
  .bbe-resources-hero__icon,
  .bbe-resources-hero__access-action::after {
    transition: none;
  }

  .bbe-resources-hero__access:hover
  .bbe-resources-hero__icon,
  .bbe-resources-hero__access:hover
  .bbe-resources-hero__access-action::after {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-0a3134b *//* =========================================
   STACK ATTACK GAME RESOURCES
   ========================================= */

.bbe-game-resources {
  --bbe-red: #c0392b;
  --bbe-red-dark: #922b21;
  --bbe-red-light: #fbeef0;
  --bbe-charcoal: #1c1c1c;
  --bbe-muted: #666666;
  --bbe-border: #d0d0d0;
  --bbe-panel: #ffffff;
  --bbe-light: #f6f6f6;
  --bbe-green: #4d9c60;

  max-width: 1040px;
  margin: 0 auto 72px;
  padding: 0 22px;
  scroll-margin-top: 35px;
  color: var(--bbe-charcoal);
  font-family: "Barlow", Arial, sans-serif;
}

/* Section header */

.bbe-game-resources__header {
  max-width: 750px;
  margin: 0 auto 38px;
  text-align: center;
}

.bbe-game-resources__eyebrow {
  display: block;
  margin: 0 0 9px;
  color: var(--bbe-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bbe-game-resources__title {
  margin: 0 0 12px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 53px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
}

.bbe-game-resources__title::after {
  display: block;
  width: 60px;
  height: 4px;
  margin: 17px auto 0;
  border-radius: 5px;
  background: var(--bbe-red);
  content: "";
}

.bbe-game-resources__description {
  max-width: 680px;
  margin: 0 auto;
  color: var(--bbe-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Main game feature */

.bbe-game-resources__feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 51px;
  overflow: hidden;
  padding: 49px;
  border: 1px solid var(--bbe-border);
  border-radius: 12px;
  background:
    linear-gradient(
      115deg,
      #f5f5f5 0%,
      #ffffff 48%,
      #ffffff 100%
    );
  box-shadow: 0 9px 27px rgba(28, 28, 28, 0.07);
}

.bbe-game-resources__feature::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--bbe-red);
  content: "";
}

/* Image */

.bbe-game-resources__visual {
  position: relative;
  min-width: 0;
  padding: 15px 0 23px;
}

.bbe-game-resources__image-frame {
  position: relative;
  z-index: 2;
  padding: 8px;
  border: 1px solid var(--bbe-border);
  border-radius: 11px;
  transform: rotate(-2deg);
  background: #ffffff;
  box-shadow:
    -14px 16px 0 rgba(192, 57, 43, 0.8),
    0 20px 38px rgba(28, 28, 28, 0.17);
  transition: transform 0.3s ease;
}

.bbe-game-resources__feature:hover
.bbe-game-resources__image-frame {
  transform: rotate(0deg) translateY(-3px);
}

.bbe-game-resources__image {
  display: block;
  width: 100%;
  min-height: 260px;
  aspect-ratio: 16 / 11;
  border-radius: 7px;
  object-fit: cover;
}

/* Image badge */

.bbe-game-resources__badge {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: -1px;
  padding: 11px 15px;
  border-radius: 6px;
  background: var(--bbe-charcoal);
  box-shadow: 0 7px 18px rgba(28, 28, 28, 0.22);
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.bbe-game-resources__badge span {
  display: block;
  margin-bottom: 2px;
  color: #ff7465;
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* Game copy */

.bbe-game-resources__content {
  position: relative;
  z-index: 2;
}

.bbe-game-resources__game-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--bbe-green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bbe-game-resources__game-label::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bbe-green);
  box-shadow: 0 0 8px rgba(77, 156, 96, 0.4);
  content: "";
}

.bbe-game-resources__game-title {
  margin: 0 0 13px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 39px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.bbe-game-resources__game-text {
  margin: 0 0 22px;
  color: var(--bbe-muted);
  font-size: 15px;
  line-height: 1.62;
}

/* Quick facts */

.bbe-game-resources__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 25px;
}

.bbe-game-resources__fact {
  padding: 11px 12px;
  border: 1px solid var(--bbe-border);
  border-radius: 6px;
  background: var(--bbe-light);
}

.bbe-game-resources__fact-value {
  display: block;
  margin-bottom: 2px;
  color: var(--bbe-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.bbe-game-resources__fact-label {
  color: var(--bbe-muted);
  font-size: 11px;
  line-height: 1.3;
}

/* Main button */

.bbe-game-resources__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 23px;
  border: 2px solid var(--bbe-red);
  border-radius: 6px;
  background: var(--bbe-red);
  box-shadow: 0 7px 17px rgba(192, 57, 43, 0.2);
  color: #ffffff !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bbe-game-resources__button::after {
  margin-left: 9px;
  content: "→";
}

.bbe-game-resources__button:hover,
.bbe-game-resources__button:focus {
  border-color: var(--bbe-red-dark);
  background: var(--bbe-red-dark);
  box-shadow: 0 10px 22px rgba(146, 43, 33, 0.27);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.bbe-game-resources__button:focus-visible {
  outline: 3px solid var(--bbe-red);
  outline-offset: 3px;
}

/* Preview resource cards */

.bbe-game-resources__preview-heading {
  margin: 29px 0 15px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.bbe-game-resources__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.bbe-game-resources__card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 25px 22px 22px;
  border: 1px solid var(--bbe-border);
  border-radius: 9px;
  background: var(--bbe-panel);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bbe-game-resources__card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--bbe-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bbe-game-resources__card:hover {
  border-color: var(--bbe-red);
  box-shadow: 0 8px 20px rgba(28, 28, 28, 0.09);
  transform: translateY(-2px);
}

.bbe-game-resources__card:hover::before {
  transform: scaleX(1);
}

.bbe-game-resources__card-icon {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 7px;
  background: var(--bbe-red-light);
  color: var(--bbe-red);
}

.bbe-game-resources__card-icon svg {
  width: 23px;
  height: 23px;
}

.bbe-game-resources__card-title {
  margin: 0 0 7px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.bbe-game-resources__card-text {
  margin: 0;
  color: var(--bbe-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Access notice */

.bbe-game-resources__notice {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 21px;
  border: 1px solid #e4c8c5;
  border-left: 5px solid var(--bbe-red);
  border-radius: 0 8px 8px 0;
  background: var(--bbe-red-light);
}

.bbe-game-resources__notice-icon {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bbe-red);
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.bbe-game-resources__notice-title {
  display: block;
  margin-bottom: 3px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.bbe-game-resources__notice-text {
  margin: 0;
  color: var(--bbe-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Tablet */

@media (max-width: 850px) {
  .bbe-game-resources__feature {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 35px;
    padding: 40px 33px;
  }

  .bbe-game-resources__image {
    min-height: 230px;
  }
}

/* Mobile */

@media (max-width: 720px) {
  .bbe-game-resources {
    margin-bottom: 56px;
    padding: 0 16px;
  }

  .bbe-game-resources__feature {
    grid-template-columns: 1fr;
    gap: 41px;
    padding: 40px 24px 43px;
  }

  .bbe-game-resources__content {
    order: 1;
  }

  .bbe-game-resources__visual {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .bbe-game-resources__button {
    width: 100%;
  }

  .bbe-game-resources__cards {
    grid-template-columns: 1fr;
  }

  .bbe-game-resources__card {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    column-gap: 14px;
    padding: 20px;
  }

  .bbe-game-resources__card-icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .bbe-game-resources__notice {
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  .bbe-game-resources__title {
    font-size: 40px;
  }

  .bbe-game-resources__facts {
    grid-template-columns: 1fr;
  }

  .bbe-game-resources__badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 12px 4px -3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbe-game-resources__image-frame,
  .bbe-game-resources__button,
  .bbe-game-resources__card,
  .bbe-game-resources__card::before {
    transition: none;
  }

  .bbe-game-resources__feature:hover
  .bbe-game-resources__image-frame,
  .bbe-game-resources__button:hover,
  .bbe-game-resources__card:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-e21ee7d *//* =========================================
   EDUCATOR RESOURCES
   ========================================= */

.bbe-educator-resources {
  --bbe-red: #c0392b;
  --bbe-red-dark: #922b21;
  --bbe-red-light: #fbeef0;
  --bbe-charcoal: #1c1c1c;
  --bbe-muted: #666666;
  --bbe-border: #d0d0d0;
  --bbe-panel: #ffffff;
  --bbe-light: #f6f6f6;
  --bbe-green: #4d9c60;
  --bbe-green-light: #edf7ef;

  max-width: 1040px;
  margin: 0 auto 72px;
  padding: 0 22px;
  scroll-margin-top: 35px;
  color: var(--bbe-charcoal);
  font-family: "Barlow", Arial, sans-serif;
}

/* Section header */

.bbe-educator-resources__header {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.bbe-educator-resources__eyebrow {
  display: block;
  margin: 0 0 9px;
  color: var(--bbe-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bbe-educator-resources__title {
  margin: 0 0 12px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 53px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
}

.bbe-educator-resources__title::after {
  display: block;
  width: 60px;
  height: 4px;
  margin: 17px auto 0;
  border-radius: 5px;
  background: var(--bbe-red);
  content: "";
}

.bbe-educator-resources__description {
  max-width: 690px;
  margin: 0 auto;
  color: var(--bbe-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Resource grid */

.bbe-educator-resources__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Resource card */

.bbe-educator-resources__card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 265px;
  grid-template-columns: 64px minmax(0, 1fr);
  align-content: start;
  column-gap: 20px;
  overflow: hidden;
  padding: 31px 29px 27px;
  border: 1px solid var(--bbe-border);
  border-radius: 10px;
  background: var(--bbe-panel);
  box-shadow: 0 5px 17px rgba(28, 28, 28, 0.055);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bbe-educator-resources__card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--bbe-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bbe-educator-resources__card::after {
  position: absolute;
  right: -42px;
  bottom: -53px;
  width: 140px;
  height: 140px;
  border: 23px solid rgba(192, 57, 43, 0.04);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bbe-educator-resources__card:hover {
  border-color: var(--bbe-red);
  box-shadow: 0 10px 25px rgba(28, 28, 28, 0.1);
  transform: translateY(-3px);
}

.bbe-educator-resources__card:hover::before {
  transform: scaleX(1);
}

/* Card icon */

.bbe-educator-resources__icon {
  position: relative;
  z-index: 1;
  display: flex;
  width: 61px;
  height: 61px;
  grid-row: 1 / span 4;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bbe-red-light);
  color: var(--bbe-red);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.bbe-educator-resources__icon svg {
  width: 31px;
  height: 31px;
}

.bbe-educator-resources__card:hover
.bbe-educator-resources__icon {
  background: var(--bbe-red);
  color: #ffffff;
  transform: rotate(-3deg) scale(1.04);
}

/* Availability label */

.bbe-educator-resources__availability {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--bbe-green-light);
  color: var(--bbe-green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bbe-educator-resources__availability::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bbe-green);
  content: "";
}

.bbe-educator-resources__availability--registered {
  background: var(--bbe-red-light);
  color: var(--bbe-red);
}

.bbe-educator-resources__availability--registered::before {
  background: var(--bbe-red);
}

/* Card copy */

.bbe-educator-resources__card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.03;
}

.bbe-educator-resources__card-text {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--bbe-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Resource items */

.bbe-educator-resources__items {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 15px 0 0;
  border-top: 1px solid var(--bbe-border);
  list-style: none;
}

.bbe-educator-resources__items li {
  padding: 6px 8px;
  border: 1px solid var(--bbe-border);
  border-radius: 4px;
  background: var(--bbe-light);
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

/* Getting started callout */

.bbe-educator-resources__start {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  margin-top: 22px;
  padding: 27px 30px;
  border: 1px solid var(--bbe-border);
  border-left: 6px solid var(--bbe-red);
  border-radius: 0 10px 10px 0;
  background:
    linear-gradient(
      105deg,
      var(--bbe-red-light) 0%,
      #ffffff 72%
    );
}

.bbe-educator-resources__start::after {
  position: absolute;
  top: -75px;
  right: 160px;
  width: 175px;
  height: 175px;
  border: 28px solid rgba(192, 57, 43, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.bbe-educator-resources__start-content {
  position: relative;
  z-index: 1;
}

.bbe-educator-resources__start-label {
  display: block;
  margin: 0 0 5px;
  color: var(--bbe-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bbe-educator-resources__start-title {
  margin: 0 0 6px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
}

.bbe-educator-resources__start-text {
  max-width: 650px;
  margin: 0;
  color: var(--bbe-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Button */

.bbe-educator-resources__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 49px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 21px;
  border: 2px solid var(--bbe-red);
  border-radius: 6px;
  background: var(--bbe-red);
  color: #ffffff !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.bbe-educator-resources__button::after {
  margin-left: 8px;
  content: "→";
}

.bbe-educator-resources__button:hover,
.bbe-educator-resources__button:focus {
  border-color: var(--bbe-red-dark);
  background: var(--bbe-red-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.bbe-educator-resources__button:focus-visible {
  outline: 3px solid var(--bbe-red);
  outline-offset: 3px;
}

/* Teacher reassurance */

.bbe-educator-resources__note {
  display: flex;
  max-width: 780px;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
  color: var(--bbe-muted);
  font-size: 13px;
  line-height: 1.5;
}

.bbe-educator-resources__note::before {
  flex: 0 0 auto;
  color: var(--bbe-red);
  content: "✓";
  font-size: 17px;
  font-weight: 800;
}

/* Tablet */

@media (max-width: 850px) {
  .bbe-educator-resources__card {
    grid-template-columns: 55px minmax(0, 1fr);
    column-gap: 16px;
    padding: 27px 24px 24px;
  }

  .bbe-educator-resources__icon {
    width: 53px;
    height: 53px;
  }
}

/* Mobile */

@media (max-width: 680px) {
  .bbe-educator-resources {
    margin-bottom: 56px;
    padding: 0 16px;
  }

  .bbe-educator-resources__title {
    font-size: 40px;
  }

  .bbe-educator-resources__grid {
    grid-template-columns: 1fr;
  }

  .bbe-educator-resources__card {
    min-height: 0;
  }

  .bbe-educator-resources__start {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 25px 23px;
  }

  .bbe-educator-resources__button {
    width: 100%;
  }

  .bbe-educator-resources__note {
    padding: 0 5px;
  }
}

@media (max-width: 430px) {
  .bbe-educator-resources__card {
    display: block;
  }

  .bbe-educator-resources__icon {
    margin-bottom: 16px;
  }

  .bbe-educator-resources__items {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bbe-educator-resources__items li {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbe-educator-resources__card,
  .bbe-educator-resources__card::before,
  .bbe-educator-resources__icon,
  .bbe-educator-resources__button {
    transition: none;
  }

  .bbe-educator-resources__card:hover,
  .bbe-educator-resources__card:hover
  .bbe-educator-resources__icon,
  .bbe-educator-resources__button:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-04d5dde *//* =========================================
   ROBOT AND CODING SUPPORT
   ========================================= */

.bbe-robot-support {
  --bbe-red: #c0392b;
  --bbe-red-dark: #922b21;
  --bbe-red-light: #ff7465;
  --bbe-charcoal: #1c1c1c;
  --bbe-charcoal-light: #2d2d2d;
  --bbe-white: #ffffff;
  --bbe-muted: #b9b9b9;
  --bbe-green: #72ce88;

  position: relative;
  max-width: 1180px;
  margin: 0 auto 72px;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(192, 57, 43, 0.28),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--bbe-charcoal) 0%,
      var(--bbe-charcoal-light) 100%
    );
  box-shadow: 0 20px 50px rgba(28, 28, 28, 0.2);
  color: var(--bbe-white);
  scroll-margin-top: 35px;
  font-family: "Barlow", Arial, sans-serif;
}

/* Red top accent */

.bbe-robot-support::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--bbe-red);
  content: "";
}

/* Technical grid */

.bbe-robot-support::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
  content: "";
  pointer-events: none;
}

.bbe-robot-support__inner {
  position: relative;
  z-index: 2;
  padding: 61px 68px 62px;
}

/* Section header */

.bbe-robot-support__header {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.bbe-robot-support__eyebrow {
  display: block;
  margin: 0 0 9px;
  color: #ff897d;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bbe-robot-support__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 53px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
}

.bbe-robot-support__title::after {
  display: block;
  width: 60px;
  height: 4px;
  margin: 17px auto 0;
  border-radius: 5px;
  background: var(--bbe-red);
  content: "";
}

.bbe-robot-support__description {
  max-width: 690px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

/* Main pathways */

.bbe-robot-support__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Path card */

.bbe-robot-support__path {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 31px 29px 29px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bbe-robot-support__path::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--bbe-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bbe-robot-support__path:hover {
  border-color: rgba(255, 116, 101, 0.7);
  background: rgba(192, 57, 43, 0.1);
  transform: translateY(-3px);
}

.bbe-robot-support__path:hover::before {
  transform: scaleX(1);
}

.bbe-robot-support__path--wombat {
  border-color: rgba(255, 116, 101, 0.55);
  background: rgba(192, 57, 43, 0.1);
}

.bbe-robot-support__path--wombat::before {
  transform: scaleX(1);
}

/* Path label */

.bbe-robot-support__path-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin: 0 0 19px;
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(192, 57, 43, 0.2);
  color: var(--bbe-red-light);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bbe-robot-support__path-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bbe-red-light);
  content: "";
}

/* Path heading */

.bbe-robot-support__path-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.02;
}

.bbe-robot-support__path-text {
  margin: 0 0 21px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.58;
}

/* Wombat system status */

.bbe-robot-support__wombat-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid #414141;
  border-radius: 6px;
  background: #151515;
}

.bbe-robot-support__wombat-name {
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bbe-robot-support__wombat-online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bbe-green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bbe-robot-support__wombat-online::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bbe-green);
  box-shadow: 0 0 8px rgba(114, 206, 136, 0.7);
  content: "";
}

/* Feature items */

.bbe-robot-support__features {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.bbe-robot-support__feature {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.15);
}

.bbe-robot-support__feature-icon {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(192, 57, 43, 0.19);
  color: var(--bbe-red-light);
}

.bbe-robot-support__feature-icon svg {
  width: 19px;
  height: 19px;
}

.bbe-robot-support__feature-title {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.05;
}

.bbe-robot-support__feature-text {
  display: block;
  color: rgba(255, 255, 255, 0.49);
  font-size: 10px;
  line-height: 1.35;
}

/* Platform requirements */

.bbe-robot-support__requirements {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.bbe-robot-support__requirements li {
  position: relative;
  padding: 11px 12px 11px 37px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.bbe-robot-support__requirements li::before {
  position: absolute;
  top: 10px;
  left: 12px;
  color: var(--bbe-red-light);
  content: "✓";
  font-size: 15px;
  font-weight: 800;
}

/* Platform tags */

.bbe-robot-support__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.bbe-robot-support__platform {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

/* Buttons */

.bbe-robot-support__button {
  display: flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: auto;
  padding: 12px 19px;
  border: 2px solid var(--bbe-red);
  border-radius: 6px;
  background: var(--bbe-red);
  color: #ffffff !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.bbe-robot-support__button::after {
  margin-left: 8px;
  content: "→";
}

.bbe-robot-support__button:hover,
.bbe-robot-support__button:focus {
  border-color: var(--bbe-red-light);
  background: var(--bbe-red-light);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.bbe-robot-support__button--secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.bbe-robot-support__button--secondary:hover,
.bbe-robot-support__button--secondary:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--bbe-charcoal) !important;
}

.bbe-robot-support__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* Programming languages */

.bbe-robot-support__languages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--bbe-red);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.055);
}

.bbe-robot-support__languages-label {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bbe-robot-support__language {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: #171717;
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
}

/* Support note */

.bbe-robot-support__note {
  display: flex;
  max-width: 800px;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.5;
}

.bbe-robot-support__note::before {
  flex: 0 0 auto;
  color: var(--bbe-red-light);
  content: "ⓘ";
  font-size: 15px;
}

/* Tablet */

@media (max-width: 900px) {
  .bbe-robot-support {
    margin-right: 16px;
    margin-left: 16px;
  }

  .bbe-robot-support__inner {
    padding: 53px 42px 55px;
  }
}

/* Mobile */

@media (max-width: 720px) {
  .bbe-robot-support {
    margin: 0 14px 56px;
    border-radius: 10px;
  }

  .bbe-robot-support__inner {
    padding: 48px 25px 51px;
  }

  .bbe-robot-support__title {
    font-size: 40px;
  }

  .bbe-robot-support__paths {
    grid-template-columns: 1fr;
  }

  .bbe-robot-support__path {
    padding: 28px 23px 25px;
  }

  .bbe-robot-support__languages {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .bbe-robot-support__note {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbe-robot-support__path,
  .bbe-robot-support__path::before,
  .bbe-robot-support__button {
    transition: none;
  }

  .bbe-robot-support__path:hover,
  .bbe-robot-support__button:hover {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-cffa489 *//* =========================================
   REGISTERED TEAM ACCESS
   ========================================= */

.bbe-team-access {
  --bbe-red: #c0392b;
  --bbe-red-dark: #922b21;
  --bbe-red-light: #fbeef0;
  --bbe-charcoal: #1c1c1c;
  --bbe-muted: #666666;
  --bbe-border: #d0d0d0;
  --bbe-panel: #ffffff;
  --bbe-light: #f6f6f6;
  --bbe-green: #4d9c60;

  max-width: 1040px;
  margin: 0 auto 72px;
  padding: 0 22px;
  scroll-margin-top: 35px;
  color: var(--bbe-charcoal);
  font-family: "Barlow", Arial, sans-serif;
}

/* Main portal panel */

.bbe-team-access__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 55px;
  overflow: hidden;
  padding: 53px;
  border: 1px solid var(--bbe-border);
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(192, 57, 43, 0.11),
      transparent 28%
    ),
    linear-gradient(
      115deg,
      #ffffff 0%,
      #ffffff 57%,
      #f3f3f3 100%
    );
  box-shadow: 0 11px 29px rgba(28, 28, 28, 0.08);
}

/* Red top accent */

.bbe-team-access__panel::before {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--bbe-red);
  content: "";
}

/* Section copy */

.bbe-team-access__content {
  position: relative;
  z-index: 2;
}

.bbe-team-access__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--bbe-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bbe-team-access__eyebrow::before {
  width: 32px;
  height: 4px;
  border-radius: 5px;
  background: var(--bbe-red);
  content: "";
}

.bbe-team-access__title {
  max-width: 600px;
  margin: 0 0 18px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(41px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 0.97;
}

.bbe-team-access__title span {
  display: block;
  color: var(--bbe-red);
}

.bbe-team-access__lead {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--bbe-charcoal);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.bbe-team-access__text {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--bbe-muted);
  font-size: 15px;
  line-height: 1.62;
}

/* Access status */

.bbe-team-access__status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 10px 13px;
  border: 1px solid #cde1d1;
  border-radius: 5px;
  background: #edf7ef;
  color: var(--bbe-green);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bbe-team-access__status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bbe-green);
  box-shadow: 0 0 8px rgba(77, 156, 96, 0.35);
  content: "";
}

/* Buttons */

.bbe-team-access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.bbe-team-access__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 22px;
  border: 2px solid var(--bbe-red);
  border-radius: 6px;
  background: var(--bbe-red);
  box-shadow: 0 7px 17px rgba(192, 57, 43, 0.2);
  color: #ffffff !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.bbe-team-access__button::after {
  margin-left: 9px;
  content: "→";
}

.bbe-team-access__button:hover,
.bbe-team-access__button:focus {
  border-color: var(--bbe-red-dark);
  background: var(--bbe-red-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.bbe-team-access__button--secondary {
  border-color: var(--bbe-charcoal);
  background: transparent;
  box-shadow: none;
  color: var(--bbe-charcoal) !important;
}

.bbe-team-access__button--secondary:hover,
.bbe-team-access__button--secondary:focus {
  border-color: var(--bbe-charcoal);
  background: var(--bbe-charcoal);
  color: #ffffff !important;
}

.bbe-team-access__button:focus-visible {
  outline: 3px solid var(--bbe-red);
  outline-offset: 3px;
}

/* =========================================
   MISSION CONTROL PORTAL MOCKUP
   ========================================= */

.bbe-team-access__visual {
  position: relative;
  min-width: 0;
  padding: 21px 0 25px;
}

.bbe-team-access__visual::before {
  position: absolute;
  z-index: 0;
  right: -13px;
  bottom: -13px;
  width: 92%;
  height: 92%;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.82);
  content: "";
}

.bbe-team-access__portal {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #3c3c3c;
  border-radius: 11px;
  background: #151515;
  box-shadow: 0 22px 41px rgba(28, 28, 28, 0.27);
  transition: transform 0.3s ease;
}

.bbe-team-access__panel:hover
.bbe-team-access__portal {
  transform: translateY(-4px);
}

/* Portal header */

.bbe-team-access__portal-header {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 0 17px;
  border-bottom: 1px solid #383838;
  background: #1d1d1d;
}

.bbe-team-access__portal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bbe-team-access__portal-mark {
  display: flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--bbe-red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.bbe-team-access__portal-secure {
  color: #72ce88;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Portal body */

.bbe-team-access__portal-body {
  padding: 22px;
}

.bbe-team-access__portal-label {
  display: block;
  margin-bottom: 4px;
  color: #ff7465;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bbe-team-access__portal-title {
  margin: 0 0 17px;
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

/* Portal resources */

.bbe-team-access__resources {
  display: grid;
  gap: 8px;
}

.bbe-team-access__resource {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #383838;
  border-radius: 6px;
  background: #202020;
}

.bbe-team-access__resource-icon {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: rgba(192, 57, 43, 0.2);
  color: #ff7465;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.bbe-team-access__resource-name {
  color: #ffffff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.bbe-team-access__resource-status {
  padding: 4px 6px;
  border-radius: 3px;
  background: rgba(114, 206, 136, 0.12);
  color: #72ce88;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Portal footer */

.bbe-team-access__portal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid #343434;
  color: #777777;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bbe-team-access__portal-footer::before {
  color: #72ce88;
  content: "●";
  font-size: 8px;
}

/* Help strip */

.bbe-team-access__help {
  display: flex;
  max-width: 790px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  color: var(--bbe-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.bbe-team-access__help::before {
  flex: 0 0 auto;
  color: var(--bbe-red);
  content: "ⓘ";
  font-size: 16px;
}

.bbe-team-access__help a {
  color: var(--bbe-red) !important;
  font-weight: 700;
  text-decoration: underline;
}

/* Tablet */

@media (max-width: 880px) {
  .bbe-team-access__panel {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 38px;
    padding: 44px 36px;
  }
}

/* Mobile */

@media (max-width: 720px) {
  .bbe-team-access {
    margin-bottom: 56px;
    padding: 0 16px;
  }

  .bbe-team-access__panel {
    grid-template-columns: 1fr;
    gap: 43px;
    padding: 40px 25px 44px;
  }

  .bbe-team-access__title {
    font-size: 41px;
  }

  .bbe-team-access__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .bbe-team-access__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bbe-team-access__button {
    width: 100%;
  }

  .bbe-team-access__help {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 390px) {
  .bbe-team-access__resource {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .bbe-team-access__resource-status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbe-team-access__button,
  .bbe-team-access__portal {
    transition: none;
  }

  .bbe-team-access__button:hover,
  .bbe-team-access__panel:hover
  .bbe-team-access__portal {
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-c1dbcda *//* =========================================
   RESOURCE SUPPORT AND CONTACT STRIP
   ========================================= */

.bbe-resource-help {
  --bbe-red: #c0392b;
  --bbe-red-dark: #922b21;
  --bbe-red-light: #fbeef0;
  --bbe-charcoal: #1c1c1c;
  --bbe-muted: #666666;
  --bbe-border: #d0d0d0;
  --bbe-panel: #ffffff;

  position: relative;
  display: grid;
  max-width: 996px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 auto 68px;
  padding: 31px 34px;
  border: 1px solid var(--bbe-border);
  border-left: 6px solid var(--bbe-red);
  border-radius: 0 10px 10px 0;
  background:
    linear-gradient(
      105deg,
      var(--bbe-red-light) 0%,
      #ffffff 72%
    );
  box-shadow: 0 7px 20px rgba(28, 28, 28, 0.07);
  color: var(--bbe-charcoal);
  font-family: "Barlow", Arial, sans-serif;
}

/* Decorative circle */

.bbe-resource-help::after {
  position: absolute;
  top: -82px;
  right: 210px;
  width: 180px;
  height: 180px;
  border: 29px solid rgba(192, 57, 43, 0.045);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

/* Copy */

.bbe-resource-help__content {
  position: relative;
  z-index: 2;
}

.bbe-resource-help__eyebrow {
  display: block;
  margin: 0 0 5px;
  color: var(--bbe-red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bbe-resource-help__title {
  margin: 0 0 7px;
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(27px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.05;
}

.bbe-resource-help__text {
  max-width: 650px;
  margin: 0;
  color: var(--bbe-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Contact actions */

.bbe-resource-help__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.bbe-resource-help__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 20px;
  border: 2px solid var(--bbe-red);
  border-radius: 6px;
  background: var(--bbe-red);
  color: #ffffff !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.bbe-resource-help__button--email::before {
  margin-right: 8px;
  content: "✉";
}

.bbe-resource-help__button--phone {
  border-color: var(--bbe-charcoal);
  background: transparent;
  color: var(--bbe-charcoal) !important;
}

.bbe-resource-help__button--phone::before {
  margin-right: 8px;
  content: "☎";
}

.bbe-resource-help__button:hover,
.bbe-resource-help__button:focus {
  border-color: var(--bbe-red-dark);
  background: var(--bbe-red-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.bbe-resource-help__button--phone:hover,
.bbe-resource-help__button--phone:focus {
  border-color: var(--bbe-charcoal);
  background: var(--bbe-charcoal);
  color: #ffffff !important;
}

.bbe-resource-help__button:focus-visible {
  outline: 3px solid var(--bbe-red);
  outline-offset: 3px;
}

/* Support topics */

.bbe-resource-help__topics {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: -7px;
  padding-top: 18px;
  border-top: 1px solid rgba(192, 57, 43, 0.16);
}

.bbe-resource-help__topics-label {
  margin-right: 3px;
  color: var(--bbe-muted);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bbe-resource-help__topic {
  padding: 6px 9px;
  border: 1px solid var(--bbe-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--bbe-charcoal);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

/* Tablet and mobile */

@media (max-width: 800px) {
  .bbe-resource-help {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-right: 16px;
    margin-left: 16px;
    padding: 28px 25px;
  }

  .bbe-resource-help::after {
    top: -90px;
    right: -70px;
  }

  .bbe-resource-help__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bbe-resource-help__button {
    width: 100%;
  }

  .bbe-resource-help__topics {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .bbe-resource-help__topics {
    align-items: stretch;
    flex-direction: column;
  }

  .bbe-resource-help__topics-label,
  .bbe-resource-help__topic {
    margin: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbe-resource-help__button {
    transition: none;
  }

  .bbe-resource-help__button:hover {
    transform: none;
  }
}/* End custom CSS */