.spc-hero img {
  object-position: center 48%;
}

.spc-library {
  background: #eef5fb;
}

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

.spc-sheet {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 74, 126, 0.16);
  border-radius: 6px;
}

.spc-sheet > a {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: #f4f6f8;
}

.spc-sheet img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.spc-sheet a:hover img {
  transform: scale(1.02);
}

.spc-sheet > div {
  align-self: center;
  padding: 28px;
}

.spc-sheet h3 {
  margin-top: 8px;
  font-size: 1.28rem;
}

.spc-sheet p:not(.eyebrow) {
  margin: 12px 0 0;
  font-size: 0.82rem;
}

.spc-sheet span {
  display: block;
  margin-top: 18px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.55;
}

.spc-sheet:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 12px);
}

.spc-download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  padding: 36px 40px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 6px;
}

.spc-download-band h3 {
  margin-top: 8px;
  color: var(--white);
  font-size: 1.5rem;
}

.spc-download-band p:not(.eyebrow) {
  max-width: 670px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.spc-download-band .button {
  flex: 0 0 auto;
}

.spc-faq {
  background: #f7f9fb;
}

.spc-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.spc-faq-grid article {
  min-width: 0;
  padding: 28px 34px 0 0;
}

.spc-faq-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.spc-faq-grid h3 {
  font-size: 1.05rem;
}

.spc-faq-grid p {
  margin: 10px 0 0;
  font-size: 0.8rem;
}

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

  .spc-sheet:last-child {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .spc-sheet {
    grid-template-columns: 1fr;
  }

  .spc-sheet img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
  }

  .spc-sheet > div {
    padding: 22px;
  }

  .spc-download-band {
    display: block;
    padding: 28px 24px;
  }

  .spc-download-band .button {
    margin-top: 22px;
  }

  .spc-faq-grid {
    grid-template-columns: 1fr;
  }

  .spc-faq-grid article,
  .spc-faq-grid article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
}
