:root {
  --resources-navy: #14385e;
  --resources-blue: #2e9bc7;
  --resources-green: #4aa66a;
  --resources-orange: #c68a12;
  --resources-ink: #17283a;
  --resources-muted: #5b6c7d;
  --resources-paper: #f4f7fa;
}

html {
  scroll-behavior: smooth;
}

.sic-resources-page {
  margin: 0;
  background: var(--resources-paper);
  color: var(--resources-ink);
  font-family: "Libre Franklin", Arial, sans-serif;
}

.resources-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(7, 27, 51, .1);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 7px 26px rgba(7, 27, 51, .07);
}

.resources-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.resources-header img {
  width: 200px;
  height: auto;
}

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

.resources-header nav a {
  color: var(--resources-ink);
  font-size: 14px;
  font-weight: 600;
}

.resources-header__reserved {
  padding: 11px 18px;
  border-radius: 10px;
  background: var(--resources-blue);
  color: #fff !important;
}

.resources-hero {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background: linear-gradient(122deg, #14385e 0%, #204b78 55%, #25618b 100%);
  color: #fff;
}

.resources-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, #2ea4d4 0 22%, #76cc8f 22% 44%, #fabe3c 44% 64%, #de448a 64% 82%, #654493 82% 100%);
}

.resources-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 92px;
  padding-bottom: 90px;
}

.resources-hero h1 {
  margin: 7px 0 20px;
  color: #fff;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.resources-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.65;
}

.resources-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.resources-hero__orb--one {
  top: -140px;
  right: 9%;
  width: 360px;
  height: 360px;
  background: rgba(39, 132, 88, .23);
}

.resources-hero__orb--two {
  right: -70px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  background: rgba(223, 106, 29, .18);
}

.resources-eyebrow {
  margin: 0;
  color: #90c9ef;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.resources-eyebrow--blue { color: var(--resources-blue); }
.resources-eyebrow--green { color: var(--resources-green); }
.resources-eyebrow--orange { color: var(--resources-orange); }

.resources-content {
  padding: 70px 0 100px;
}

.resources-intro {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 76px;
  padding: 18px 22px;
  border: 1px solid #dce5ec;
  border-radius: 14px;
  background: #fff;
  color: var(--resources-muted);
}

.resources-intro .fa {
  color: var(--resources-blue);
  font-size: 24px;
}

.resources-intro p {
  margin: 0;
}

.resources-group + .resources-group {
  margin-top: 96px;
}

.resources-group__heading {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}

.resources-group__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e7edf2;
  color: #788a9b;
  font-weight: 600;
}

.resources-group h2 {
  margin: 3px 0 0;
  color: var(--resources-ink);
  font-size: 31px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.resources-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #dce5ec;
  border-radius: 18px;
  background: #fff;
  color: var(--resources-ink);
  box-shadow: 0 10px 28px rgba(7, 27, 51, .04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.resource-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--resources-blue);
}

.resource-card--green::before { background: var(--resources-green); }
.resource-card--orange::before { background: var(--resources-orange); }

.resource-card:hover,
.resource-card:focus {
  transform: translateY(-5px);
  border-color: #bccbd7;
  color: var(--resources-ink);
  box-shadow: 0 19px 42px rgba(7, 27, 51, .11);
  text-decoration: none;
}

.resource-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #eaf4fa;
  color: var(--resources-blue);
  font-size: 20px;
}

.resource-card--green .resource-card__icon {
  background: #e9f5ee;
  color: var(--resources-green);
}

.resource-card--orange .resource-card__icon {
  background: #fff5d9;
  color: var(--resources-orange);
}

.resource-card h3 {
  margin: 0 0 10px;
  color: var(--resources-ink);
  font-size: 20px;
  line-height: 1.35;
}

.resource-card p {
  margin: 0 0 24px;
  color: var(--resources-muted);
  font-size: 14px;
  line-height: 1.6;
}

.resource-card__action {
  margin-top: auto;
  color: var(--resources-blue);
  font-size: 14px;
  font-weight: 600;
}

.resource-card--green .resource-card__action { color: var(--resources-green); }
.resource-card--orange .resource-card__action { color: #8d6209; }

.resources-footer {
  background: var(--resources-navy);
  color: rgba(255, 255, 255, .75);
}

.resources-footer__line {
  height: 6px;
  background: linear-gradient(90deg, #2ea4d4 0 22%, #76cc8f 22% 44%, #fabe3c 44% 64%, #de448a 64% 82%, #654493 82% 100%);
}

.resources-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 150px;
}

.resources-footer img {
  width: 180px;
  height: auto;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff;
}

.resources-footer p {
  margin: 0;
}

.resources-footer a {
  color: #fff;
}

.resources-footer__home {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 10px;
}

.resources-header a:focus-visible,
.resource-card:focus-visible,
.resources-footer a:focus-visible {
  outline: 3px solid #f3a45f;
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .resources-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .resources-header__inner {
    min-height: 70px;
  }

  .resources-header img {
    width: 165px;
  }

  .resources-header nav a:not(.resources-header__reserved) {
    display: none;
  }

  .resources-header__reserved {
    padding: 10px 13px;
  }

  .resources-hero {
    min-height: 330px;
  }

  .resources-hero__content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .resources-hero h1 {
    font-size: 52px;
  }

  .resources-hero p:last-child {
    font-size: 16px;
  }

  .resources-content {
    padding-top: 48px;
    padding-bottom: 70px;
  }

  .resources-intro {
    align-items: flex-start;
    margin-bottom: 55px;
  }

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

  .resources-group + .resources-group {
    margin-top: 70px;
  }

  .resources-group__number {
    width: 45px;
    height: 45px;
  }

  .resources-group h2 {
    font-size: 25px;
  }

  .resource-card {
    min-height: 0;
  }

  .resources-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}
