@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

.hs-theme {
  --hs-font-sans: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --hs-font-display: 'Oswald', system-ui, -apple-system, Segoe UI, Arial, sans-serif;

  --hs-bg: #eef1f6;
  --hs-surface: #ffffff;
  --hs-surface-2: #f7f8fb;
  --hs-border: #d6dbe5;
  --hs-text: #0f172a;
  --hs-muted: #526076;

  --hs-navy: #0b1b3a;
  --hs-navy-2: #132c59;

  --hs-red: #d3131f;
  --hs-red-2: #b90f19;

  --hs-shadow-1: 0 1px 2px rgba(10, 22, 40, 0.12);
  --hs-shadow-2: 0 10px 24px rgba(10, 22, 40, 0.22);

  --hs-radius-1: 8px;
  --hs-radius-2: 12px;
  --hs-radius-3: 16px;

  --hs-container: 1200px;
  --hs-gutter: 18px;

  /* --hs-topbar-height: 86px; */
  --hs-topbar-height: 60px;
  --hs-icon-hit: 38px;

  --hs-menu-width: 80vw;

  background: var(--hs-bg);
  height: 100%;
}

.hs-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--hs-bg);
  color: var(--hs-text);
  font-family: var(--hs-font-sans);
}

.hs-scope * {
  box-sizing: border-box;
}

.hs-main {
  flex: 1 0 auto;
}

.hs-container {
  width: 100%;
  max-width: var(--hs-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--hs-gutter);
  padding-right: var(--hs-gutter);
}

.hs-topbar {
  height: var(--hs-topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hs-topbar__inner {
  height: 100%;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.hs-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hs-nav__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.hs-nav__link:hover {
  color: rgba(255, 255, 255, 1);
}

.hs-nav__link.is-active {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hs-iconbtn {
  width: var(--hs-icon-hit);
  height: var(--hs-icon-hit);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  user-select: none;
}

.hs-iconbtn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hs-hamburger-btn {
  display: none;
  position: fixed;
  top: calc((var(--hs-topbar-height) - var(--hs-icon-hit)) / 2);
  right: var(--hs-gutter);
  z-index: 55;
}

.hs-hamburger {
  /* width: 22px; */
  width: 18px;
  /* height: 16px; */
  height: 14px;
  position: relative;
}

.hs-hamburger__bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
}

.hs-hamburger__bar.is-top {
  top: 0;
}

.hs-hamburger__bar.is-mid {
  /* top: 7px; */
  top: 6px;
}

.hs-hamburger__bar.is-bot {
  bottom: 0;
}

.hs-hero {
  background-image: url('hockeysphere-v3-swirl-background-1.jpg');
  background-size: cover;
  /* background-position: center; */
  background-position: center top;
  position: relative;
}

.hs-hero__overlay {
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.35), rgba(4, 10, 22, 0.64));
}

.hs-hero__content {
  /* padding-top: 44px; */
  /* padding-bottom: 34px; */
  padding-bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.hs-hero__logo {
  /* width: min(760px, 92%); */
  /* width: 50%; */
  width: min(400px, 52%);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.46));
}

.hs-hero__tagline {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.2px;
  line-height: 1.25;
  margin-top: 8px;
}

.hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* padding: 12px 18px; */
  padding: 11px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.hs-button--primary {
  background: linear-gradient(180deg, #e31b27, #c5101b);
  color: #ffffff;
}

.hs-button--primary:hover {
  background: linear-gradient(180deg, #c5101b, #a80f18);
}

.hs-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.hs-teasers-wrap {
  padding-top: 18px;
  padding-bottom: 26px;
}

.hs-teasers-panel {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hs-teasers-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.hs-card {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-2);
  box-shadow: var(--hs-shadow-1);
  padding: 18px 18px;
}

.hs-card--tight {
  padding: 16px 16px;
}

.hs-card__title {
  margin: 0;
  color: var(--hs-navy);
  font-weight: 900;
  letter-spacing: 0.1px;
  font-size: 22px;
}

.hs-card__title--sm {
  font-size: 19px;
}

.hs-card__text {
  margin-top: 10px;
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.55;
}

.hs-card__readmore {
  margin-top: 12px;
  display: inline-flex;
  text-decoration: none;
  color: var(--hs-red);
  font-weight: 900;
  font-size: 14px;
}

.hs-card__readmore:hover {
  color: var(--hs-red-2);
}

.hs-span-6 {
  grid-column: span 6;
}

.hs-span-3 {
  grid-column: span 3;
}

.hs-span-4 {
  grid-column: span 4;
}

.hs-span-8 {
  grid-column: span 8;
}

.hs-span-12 {
  grid-column: span 12;
}

.hs-pagehead {
  background-image: url('hockeysphere-v3-swirl-background-1.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hs-pagehead__overlay {
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.55), rgba(4, 10, 22, 0.72));
}

.hs-pagehead__content {
  padding-top: 0;
  padding-bottom: 22px;
}

.hs-pagehead__title {
  font-family: var(--hs-font-display);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 34px;
  margin: 22px 0 0 0;
}

.hs-pagehead__subtitle {
  margin: 12px 0 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
  max-width: 860px;
}

.hs-shell {
  padding-top: 18px;
  padding-bottom: 26px;
}

.hs-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.hs-panel {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-2);
  box-shadow: var(--hs-shadow-1);
  padding: 18px;
}

.hs-panel__kicker {
  font-family: var(--hs-font-display);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--hs-muted);
  font-weight: 700;
  font-size: 13px;
  margin: 0;
}

.hs-panel__h2 {
  font-family: var(--hs-font-display);
  letter-spacing: 0.4px;
  color: var(--hs-navy);
  font-weight: 700;
  font-size: 28px;
  margin: 10px 0 0 0;
}

.hs-panel__p {
  margin: 10px 0 0 0;
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hs-actionlink {
  text-decoration: none;
  color: var(--hs-red);
  font-weight: 900;
}

.hs-actionlink:hover {
  color: var(--hs-red-2);
}

.hs-pillrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hs-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: var(--hs-navy);
  background: rgba(11, 27, 58, 0.06);
  border: 1px solid rgba(11, 27, 58, 0.10);
}

.hs-boxgrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.hs-box {
  grid-column: span 4;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-2);
  box-shadow: var(--hs-shadow-1);
  padding: 18px;
}

.hs-box__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(211, 19, 31, 0.10);
  border: 1px solid rgba(211, 19, 31, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--hs-red);
}

.hs-box__title {
  margin: 12px 0 0 0;
  font-weight: 900;
  color: var(--hs-navy);
  font-size: 18px;
}

.hs-box__text {
  margin: 10px 0 0 0;
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.55;
}

.hs-articlewrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
}

.hs-article {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-2);
  box-shadow: var(--hs-shadow-1);
  padding: 22px;
}

.hs-article__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.hs-article__h1 {
  font-family: var(--hs-font-display);
  letter-spacing: 0.5px;
  color: var(--hs-navy);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.08;
  margin: 12px 0 0 0;
}

.hs-article__lead {
  margin: 12px 0 0 0;
  color: var(--hs-muted);
  line-height: 1.65;
  font-size: 15px;
}

.hs-article__body {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hs-article__p {
  margin: 0;
  color: var(--hs-text);
  line-height: 1.75;
  font-size: 16px;
}

.hs-article__h2 {
  font-family: var(--hs-font-display);
  letter-spacing: 0.35px;
  color: var(--hs-navy);
  font-weight: 700;
  font-size: 22px;
  margin: 10px 0 0 0;
}

.hs-callout {
  background: rgba(11, 27, 58, 0.05);
  border: 1px solid rgba(11, 27, 58, 0.12);
  border-radius: var(--hs-radius-2);
  padding: 16px;
}

.hs-callout__title {
  margin: 0;
  font-weight: 900;
  color: var(--hs-navy);
  font-size: 14px;
}

.hs-callout__text {
  margin: 8px 0 0 0;
  color: var(--hs-muted);
  font-size: 14px;
  line-height: 1.55;
}

.hs-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hs-asidecard {
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-2);
  box-shadow: var(--hs-shadow-1);
  padding: 18px;
}

.hs-asidecard__title {
  margin: 0;
  font-weight: 900;
  color: var(--hs-navy);
  font-size: 16px;
}

.hs-asidecard__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hs-asidecard__link {
  text-decoration: none;
  color: var(--hs-text);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.3;
}

.hs-asidecard__link:hover {
  color: var(--hs-red);
}

.hs-footer {
  flex-shrink: 0;
  background: var(--hs-surface-2);
  border-top: 1px solid var(--hs-border);
  padding-top: 14px;
  padding-bottom: 14px;
}

.hs-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.hs-footer__text {
  margin: 0;
  color: var(--hs-muted);
  font-size: 14px;
  font-weight: 700;
}

.hs-footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hs-footer__link {
  text-decoration: none;
  color: var(--hs-muted);
  font-weight: 900;
  font-size: 14px;
}

.hs-footer__link:hover {
  color: var(--hs-navy);
}

.hs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 50;
}

.hs-mobilemenu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: var(--hs-menu-width);
  background: #0b142b;
  box-shadow: var(--hs-shadow-2);
  transform: translateX(102%);
  transition: transform 220ms ease;
  z-index: 60;
  display: flex;
  flex-direction: column;
}

.hs-mobilemenu__header {
  height: var(--hs-topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: var(--hs-gutter);
  padding-right: var(--hs-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.hs-mobilemenu__title {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.hs-close-btn {
  display: inline-flex;
}

.hs-x {
  /* width: 22px;
  height: 22px; */
  width: 18px;
  height: 18px;
  position: relative;
}

.hs-x__line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  transform-origin: center;
}

.hs-x__line.is-a {
  transform: translateY(-50%) rotate(45deg);
}

.hs-x__line.is-b {
  transform: translateY(-50%) rotate(-45deg);
}

.hs-mobilemenu__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
}

.hs-mobilenav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hs-mobilenav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  /* padding: 14px 14px; */
  padding: 11px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hs-mobilenav__link:hover {
  background: rgba(255, 255, 255, 0.10);
}

.hs-mobilemenu__cta {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hs-mobilemenu__hint {
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
  line-height: 1.45;
}

.hs-menu-open {
  overflow: hidden;
}

.hs-menu-open .hs-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hs-menu-open .hs-mobilemenu {
  transform: translateX(0);
}

.hs-menu-open .hs-hamburger-btn {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 860px) {
  .hs-nav {
    display: none;
  }

  .hs-hamburger-btn {
    display: inline-flex;
  }
}


@media (max-width: 720px) {
.hs-hero {
  background-image: url('hockeysphere-v3-swirl-background-2.jpg');
  background-size: cover;
  /* background-position: center; */
  background-position: center top;
  position: relative;
}
}


@media (max-width: 980px) {
  .hs-span-6 {
    grid-column: span 12;
  }

  .hs-span-3 {
    grid-column: span 6;
  }

  .hs-span-8 {
    grid-column: span 12;
  }

  .hs-span-4 {
    grid-column: span 12;
  }

  .hs-articlewrap {
    grid-template-columns: 1fr;
  }

  .hs-box {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .hs-hero__tagline {
    font-size: 19px;
  }

  .hs-card__title {
    font-size: 20px;
  }

  .hs-span-3 {
    grid-column: span 12;
  }

  .hs-box {
    grid-column: span 12;
  }

  .hs-article__h1 {
    font-size: 30px;
  }
}
