.resources-page {
  min-width:0;
  background:#fff;
  color:var(--ink)
}
.resources-page main {
  display:block
}
.skip-link {
  position:fixed;
  left:16px;
  top:-70px;
  z-index:100;
  padding:11px 16px;
  border-radius:8px;
  background:var(--navy);
  color:#fff;
  font-weight:700;
  transition:top .2s
}
.skip-link:focus {
  top:12px
}
.resources-page button,.resources-page input {
  font:inherit
}
.resources-page button {
  border:0
}
.resources-page .nav-links a[aria-current="page"] {
  color:var(--blue)
}
.resources-page .nav-links a[aria-current="page"]:after {
  transform:scaleX(1)
}
.resources-page .mobile-panel>a[aria-current="page"] {
  background:#f1f7f3;
  color:var(--blue)
}
.resources-hero {
  position:relative;
  isolation:isolate;
  min-height:470px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:linear-gradient(125deg,#f8fbff 0%,#eef6ff 62%,#f8fbff 100%);
  text-align:center
}
.resources-hero-grid {
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:linear-gradient(rgba(31,102,174,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(31,102,174,.045) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,#000,transparent 94%)
}
.resources-orb {
  position:absolute;
  z-index:-1;
  border-radius:50%;
  filter:blur(45px);
  pointer-events:none
}
.resources-orb-one {
  width:430px;
  height:430px;
  right:-120px;
  top:-180px;
  background:rgba(0,112,168,.16)
}
.resources-orb-two {
  width:360px;
  height:360px;
  left:-140px;
  bottom:-230px;
  background:rgba(167,214,0,.14)
}
.resources-hero-inner {
  padding:70px 0 76px
}
.resources-hero .kicker {
  display:block;
  margin-bottom:15px
}
.resources-hero h1 {
  margin:0;
  color:var(--navy);
  font-size:clamp(46px,6vw,72px);
  line-height:1.02;
  letter-spacing:-2.4px
}
.resources-hero h1 em {
  color:var(--blue);
  font-style:normal
}
.resources-hero>div>p {
  max-width:650px;
  margin:18px auto 30px;
  color:#587087;
  font-size:18px;
  line-height:1.65
}
.hero-search {
  max-width:720px;
  margin:0 auto;
  text-align:left
}
.hero-search>label {
  display:block;
  margin:0 0 9px 4px;
  color:#294c68;
  font-size:13px;
  font-weight:750
}
.search-control,.inline-search {
  position:relative;
  display:flex;
  align-items:center
}
.search-control svg,.inline-search svg {
  position:absolute;
  left:20px;
  width:22px;
  height:22px;
  fill:none;
  stroke:#688198;
  stroke-width:1.8;
  stroke-linecap:round;
  pointer-events:none
}
.search-control input {
  width:100%;
  min-width:0;
  height:64px;
  padding:0 54px 0 57px;
  border:1px solid #d5e3ee;
  border-radius:14px;
  outline:0;
  background:#fff;
  box-shadow:0 16px 40px rgba(0,48,90,.11);
  color:var(--ink);
  font-size:16px;
  transition:border-color .2s,box-shadow .2s
}
.search-control input:focus,.inline-search input:focus {
  border-color:#69a5cf;
  box-shadow:0 0 0 4px rgba(0,83,148,.1),0 16px 40px rgba(0,48,90,.11)
}
.clear-search {
  position:absolute;
  right:12px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#edf4f8;
  color:#48657b;
  cursor:pointer;
  font-size:23px;
  line-height:1
}
.hero-quick-links {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
  color:#687d90;
  font-size:12px
}
.hero-quick-links button {
  padding:6px 10px;
  border:1px solid #d7e5ee;
  border-radius:20px;
  background:rgba(255,255,255,.72);
  color:#335b79;
  cursor:pointer;
  transition:.2s
}
.hero-quick-links button:hover {
  border-color:#aac9dc;
  background:#fff;
  color:var(--blue)
}
.resource-section {
  padding:90px 0
}
.featured-section {
  background:#fff
}
.all-resources {
  background:#f5f8fb;
  border-top:1px solid #e5edf3
}
.resource-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:30px;
  margin-bottom:34px
}
.resource-heading .kicker {
  display:block;
  margin-bottom:9px
}
.resource-heading h2 {
  margin:0;
  color:var(--navy);
  font-size:clamp(31px,4vw,44px);
  line-height:1.1;
  letter-spacing:-1.3px
}
.resource-heading>p {
  max-width:380px;
  margin:0 0 4px;
  color:#6c7e8e;
  font-size:15px;
  line-height:1.55
}
.tutorial-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px
}
.featured-grid {
  grid-template-columns:repeat(4,minmax(0,1fr))
}
.tutorial-card {
  min-width:0;
  overflow:hidden;
  border:1px solid #dfe8f0;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 32px rgba(0,48,90,.055);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease
}
.tutorial-card:hover {
  transform:translateY(-5px);
  border-color:#c6dbe8;
  box-shadow:0 19px 42px rgba(0,48,90,.11)
}
.tutorial-media {
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  display:grid;
  place-items:center;
  margin:0;
  background:#e9f1f7;
  color:inherit
}
button.tutorial-media {
  cursor:pointer
}
.tutorial-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.01);
  transition:transform .35s ease,filter .35s ease
}
.tutorial-card:hover .tutorial-media img {
  transform:scale(1.045);
  filter:brightness(.88)
}
.media-placeholder {
  background:linear-gradient(145deg,#edf5fa,#dfeaf2)
}
.media-placeholder:before {
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(0,83,148,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,83,148,.04) 1px,transparent 1px);
  background-size:24px 24px
}
.placeholder-mark {
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:#fff;
  color:var(--blue);
  box-shadow:0 10px 26px rgba(0,48,90,.1)
}
.placeholder-mark svg {
  width:28px;
  height:28px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round
}
.coming-soon {
  position:absolute;
  bottom:13px;
  left:13px;
  padding:6px 9px;
  border-radius:6px;
  background:rgba(0,48,90,.82);
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:.25px;
  text-transform:uppercase
}
.play-button {
  position:absolute;
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:var(--blue);
  box-shadow:0 10px 28px rgba(0,24,48,.28);
  transition:transform .2s
}
.play-button svg {
  width:24px;
  height:24px;
  fill:currentColor;
  stroke:none
}
.tutorial-media:hover .play-button {
  transform:scale(1.08)
}
.duration {
  position:absolute;
  right:11px;
  bottom:11px;
  padding:5px 7px;
  border-radius:5px;
  background:rgba(0,27,51,.84);
  color:#fff;
  font-size:10px;
  font-weight:750;
  letter-spacing:.3px
}
.tutorial-body {
  display:flex;
  min-height:250px;
  flex-direction:column;
  padding:22px
}
.featured-grid .tutorial-body {
  min-height:275px;
  padding:20px
}
.tutorial-meta {
  min-width:0;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:13px
}
.category-icon {
  flex:0 0 auto;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#eaf3f8;
  color:var(--blue)
}
.category-icon svg {
  width:15px;
  height:15px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round
}
.tutorial-category {
  min-width:0;
  overflow:hidden;
  color:#567187;
  font-size:10px;
  font-weight:750;
  letter-spacing:.35px;
  text-overflow:ellipsis;
  text-transform:uppercase;
  white-space:nowrap
}
.tutorial-body h3 {
  margin:0 0 10px;
  color:var(--navy);
  font-size:20px;
  line-height:1.22;
  letter-spacing:-.3px
}
.featured-grid .tutorial-body h3 {
  font-size:18px
}
.tutorial-body p {
  margin:0 0 20px;
  color:#687b8d;
  font-size:13.5px;
  line-height:1.58
}
.tutorial-link {
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-top:auto;
  padding:0;
  background:none;
  color:var(--blue);
  cursor:pointer;
  font-size:13px;
  font-weight:750
}
.tutorial-link span {
  font-size:17px;
  transition:transform .2s
}
.tutorial-link:hover span {
  transform:translateX(3px)
}
.tutorial-link.disabled {
  color:#8a9aa8;
  cursor:default
}
.resource-tools {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:27px;
  padding:22px;
  border:1px solid #dde7ee;
  border-radius:15px;
  background:#fff
}
.filters-wrap {
  min-width:0;
  flex:1
}
.filters-label {
  display:block;
  margin:0 0 10px 2px;
  color:#48647a;
  font-size:11px;
  font-weight:750;
  letter-spacing:.35px;
  text-transform:uppercase
}
.category-filters {
  display:flex;
  flex-wrap:wrap;
  gap:8px
}
.filter-chip {
  padding:9px 13px;
  border:1px solid #dce6ed!important;
  border-radius:30px;
  background:#f8fafc;
  color:#4d667a;
  cursor:pointer;
  font-size:11.5px;
  font-weight:650;
  transition:.2s
}
.filter-chip:hover {
  border-color:#a9c6d9!important;
  color:var(--blue)
}
.filter-chip[aria-pressed="true"] {
  border-color:var(--blue)!important;
  background:var(--blue);
  color:#fff;
  box-shadow:0 6px 16px rgba(0,83,148,.18)
}
.inline-search {
  flex:0 0 270px
}
.inline-search svg {
  left:15px;
  width:19px;
  height:19px
}
.inline-search input {
  width:100%;
  min-width:0;
  height:44px;
  padding:0 43px 0 43px;
  border:1px solid #d9e4ec;
  border-radius:10px;
  outline:0;
  color:var(--ink)
}
.inline-search .clear-search {
  right:7px;
  width:30px;
  height:30px;
  font-size:19px
}
.active-query {
  margin:-7px 0 22px;
  color:#536d81;
  font-size:13px;
  font-weight:650
}
.empty-state {
  padding:60px 24px;
  border:1px dashed #cbdbe6;
  border-radius:16px;
  background:#fff;
  text-align:center
}
.empty-icon {
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  margin:0 auto 17px;
  border-radius:50%;
  background:#eaf3f8;
  color:var(--blue)
}
.empty-icon svg {
  width:28px;
  height:28px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round
}
.empty-state h3 {
  margin:0 0 7px;
  color:var(--navy);
  font-size:22px
}
.empty-state p {
  margin:0 0 22px;
  color:#6a7e8f
}
.support-section {
  padding:84px 0;
  background:#fff
}
.support-card {
  min-height:230px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:27px;
  padding:46px 52px;
  overflow:hidden;
  border-radius:22px;
  background:linear-gradient(125deg,#00305a,#005394);
  box-shadow:0 20px 46px rgba(0,48,90,.19);
  color:#fff
}
.support-icon {
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  background:rgba(255,255,255,.1)
}
.support-icon svg {
  width:35px;
  height:35px;
  fill:none;
  stroke:#b6df34;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round
}
.support-card h2 {
  margin:8px 0 8px;
  color:#fff;
  font-size:clamp(28px,3vw,38px);
  line-height:1.12;
  letter-spacing:-1px
}
.support-card p {
  max-width:610px;
  margin:0;
  color:#c8d9e6;
  font-size:15px;
  line-height:1.55
}
.support-card .button {
  white-space:nowrap
}
.video-modal {
  width:min(900px,calc(100% - 32px));
  max-width:none;
  max-height:calc(100dvh - 32px);
  padding:0;
  overflow:auto;
  border:0;
  border-radius:18px;
  background:#fff;
  box-shadow:0 30px 90px rgba(0,25,48,.4)
}
.video-modal::backdrop {
  background:rgba(0,25,48,.76);
  backdrop-filter:blur(5px)
}
.modal-panel {
  position:relative
}
.modal-close {
  position:absolute;
  right:13px;
  top:13px;
  z-index:2;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(0,25,48,.8);
  color:#fff;
  cursor:pointer;
  font-size:26px;
  line-height:1
}
.modal-video {
  width:100%;
  aspect-ratio:16/9;
  background:#00182c
}
.modal-video iframe {
  display:block;
  width:100%;
  height:100%;
  border:0
}
.modal-copy {
  padding:25px 30px 30px
}
.modal-copy h2 {
  margin:8px 0 8px;
  color:var(--navy);
  font-size:28px;
  line-height:1.2
}
.modal-copy p {
  margin:0;
  color:#64798a;
  line-height:1.6
}
body.modal-open {
  overflow:hidden
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
.resources-page :focus-visible {
  outline:3px solid #8ccb00;
  outline-offset:3px
}
@media(max-width:1100px) {
  .featured-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .featured-grid .tutorial-body {
    min-height:230px
  }
  .resource-tools {
    align-items:stretch;
    flex-direction:column
  }
  .inline-search {
    flex-basis:auto;
    width:100%
  }
  .support-card {
    padding:42px
  }
}
@media(max-width:950px) {
  .resources-hero {
    min-height:430px
  }
  .tutorial-grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
  .support-card {
    grid-template-columns:auto 1fr
  }
  .support-card .button {
    grid-column:2;
    justify-self:start
  }
}
@media(max-width:680px) {
  .resources-page .container {
    width:min(100% - 30px,1160px)
  }
  .resources-hero {
    min-height:auto
  }
  .resources-hero-inner {
    padding:58px 0 62px
  }
  .resources-hero h1 {
    font-size:42px;
    letter-spacing:-1.6px
  }
  .resources-hero>div>p {
    margin:15px auto 24px;
    font-size:15px
  }
  .search-control input {
    height:57px;
    padding-left:50px;
    font-size:14px
  }
  .search-control svg {
    left:17px;
    width:20px
  }
  .hero-quick-links {
    justify-content:flex-start
  }
  .resource-section {
    padding:64px 0
  }
  .resource-heading {
    display:block;
    margin-bottom:27px
  }
  .resource-heading h2 {
    font-size:32px
  }
  .resource-heading>p {
    margin-top:10px
  }
  .resources-list-heading>p {
    font-size:12px
  }
  .tutorial-grid,.featured-grid {
    grid-template-columns:minmax(0,1fr);
    gap:18px
  }
  .tutorial-body,.featured-grid .tutorial-body {
    min-height:0;
    padding:20px
  }
  .tutorial-body h3,.featured-grid .tutorial-body h3 {
    font-size:19px
  }
  .resource-tools {
    gap:20px;
    padding:16px;
    margin-inline:0
  }
  .category-filters {
    flex-wrap:nowrap;
    margin-right:-16px;
    padding:2px 16px 9px 2px;
    overflow-x:auto;
    overscroll-behavior-inline:contain;
    scrollbar-width:thin
  }
  .filter-chip {
    flex:0 0 auto
  }
  .support-section {
    padding:62px 0
  }
  .support-card {
    grid-template-columns:1fr;
    gap:19px;
    padding:32px 25px;
    text-align:left
  }
  .support-icon {
    width:58px;
    height:58px
  }
  .support-card .button {
    grid-column:auto;
    width:100%
  }
  .modal-copy {
    padding:21px 20px 24px
  }
  .modal-copy h2 {
    font-size:22px
  }
}
@media(max-width:380px) {
  .resources-page .container {
    width:calc(100% - 24px)
  }
  .resources-hero h1 {
    font-size:37px
  }
  .resources-hero .kicker {
    font-size:10.5px
  }
  .search-control input {
    padding-right:44px;
    font-size:13px
  }
  .hero-quick-links span {
    flex-basis:100%
  }
  .resource-heading h2 {
    font-size:29px
  }
  .tutorial-body {
    padding:18px
  }
  .resource-tools {
    padding:14px
  }
  .category-filters {
    margin-right:-14px
  }
  .support-card {
    padding:28px 21px
  }
}
