/* Resources page */
.resources-hero {
  min-height: 540px;
}

.resources-hero .subpage-hero-copy {
  max-width: 920px;
}

.resources-hero h1 {
  font-size: clamp(3.8rem, 7.4vw, 7.2rem);
}

.resources-intro,
.resource-section,
.resources-closing {
  padding: 7rem 6vw;
}

.resources-intro-inner,
.resource-card,
.resources-closing-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.resources-intro {
  background: #050505;
}

.resources-intro-inner {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.resources-intro h2,
.resource-content h2,
.resources-closing h2 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.02em;
}

.resources-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin: 0 0 1.5rem;
}

.resources-intro-inner > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #c9c9cc;
  font-size: 1.18rem;
  line-height: 1.7;
}

.resource-section {
  background: #111116;
  border-top: 1px solid #26262c;
  border-bottom: 1px solid #26262c;
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  background: #17171c;
  border: 1px solid #34343b;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  overflow: hidden;
}

.resource-image {
  display: block;
  min-height: 100%;
  background: #060606;
  overflow: hidden;
}

.resource-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform .25s ease;
}

.resource-image:hover img,
.resource-image:focus-visible img {
  transform: scale(1.015);
}

.resource-content {
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resource-org {
  margin: 0 0 1rem;
  color: var(--red);
  font-family: "Archivo Black", sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.resource-content h2 {
  margin: 0 0 1.6rem;
  color: #fff;
  font-size: clamp(2.7rem, 4.3vw, 4.8rem);
}

.resource-content p {
  color: #c9c9cc;
  font-size: 1.05rem;
  line-height: 1.7;
}

.resource-content strong {
  color: #fff;
}

.resource-lead {
  margin-top: 0;
  color: #fff !important;
  font-size: 1.2rem !important;
}

.privacy-callout {
  margin: 1.2rem 0 1.5rem;
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--red);
  background: #0e0e12;
}

.privacy-callout p {
  margin: 0;
}

.privacy-callout .privacy-label {
  margin-bottom: .45rem;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: .92rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.resource-btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.resources-closing {
  background: var(--red);
  color: #090909;
}

.resources-closing-inner {
  max-width: 900px;
  text-align: center;
}

.resources-closing .section-kicker {
  color: rgba(0, 0, 0, .72);
}

.resources-closing h2 {
  margin: 0 0 1.2rem;
  color: #090909;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.resources-closing p {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  color: rgba(0, 0, 0, .78);
  font-size: 1.15rem;
}

.resources-closing .btn-light {
  background: #050505;
  color: #fff;
}

@media (max-width: 960px) {
  .resource-card {
    grid-template-columns: 1fr;
  }

  .resource-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
}

@media (max-width: 560px) {
  .resources-hero {
    min-height: auto;
  }

  .resources-hero h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .resources-intro,
  .resource-section,
  .resources-closing {
    padding: 4.5rem 6vw;
  }

  .resources-intro-inner {
    text-align: left;
  }

  .resources-intro-inner > p:last-child {
    margin: 0;
  }

  .resource-content {
    padding: 2rem 1.5rem 2.25rem;
  }

  .resource-content h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .resource-btn {
    width: 100%;
  }
}
