.collection-cover-stack {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 510px;
  padding: 48px 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #dce5e5, #eef1ef);
  box-shadow: 0 24px 46px rgba(24, 43, 53, .22);
  transition: transform .25s ease;
}

.collection-cover .collection-cover-stack img {
  position: relative;
  width: 29%;
  max-width: none;
  height: auto;
  aspect-ratio: 17 / 22;
  object-fit: cover;
  margin-left: -11%;
  box-shadow: 0 16px 28px rgba(24, 43, 53, .32);
  transition: none;
}

.collection-cover .collection-cover-stack img:first-child {
  margin-left: 0;
}

.collection-cover .collection-cover-stack img:nth-child(1) {
  z-index: 1;
  transform: rotate(-8deg) translateY(18px);
}

.collection-cover .collection-cover-stack img:nth-child(2) {
  z-index: 2;
  transform: rotate(-4deg) translateY(6px);
}

.collection-cover .collection-cover-stack img:nth-child(3) {
  z-index: 5;
  transform: translateY(-4px);
}

.collection-cover .collection-cover-stack img:nth-child(4) {
  z-index: 4;
  transform: rotate(4deg) translateY(6px);
}

.collection-cover .collection-cover-stack img:nth-child(5) {
  z-index: 3;
  transform: rotate(8deg) translateY(18px);
}

.collection-cover:hover .collection-cover-stack,
.collection-cover:focus-visible .collection-cover-stack {
  transform: translateY(-3px);
}

.collection-cover:hover .collection-cover-stack img:nth-child(1),
.collection-cover:focus-visible .collection-cover-stack img:nth-child(1) {
  transform: rotate(-8deg) translateY(18px);
}

.collection-cover:hover .collection-cover-stack img:nth-child(2),
.collection-cover:focus-visible .collection-cover-stack img:nth-child(2) {
  transform: rotate(-4deg) translateY(6px);
}

.collection-cover:hover .collection-cover-stack img:nth-child(3),
.collection-cover:focus-visible .collection-cover-stack img:nth-child(3) {
  transform: translateY(-4px);
}

.collection-cover:hover .collection-cover-stack img:nth-child(4),
.collection-cover:focus-visible .collection-cover-stack img:nth-child(4) {
  transform: rotate(4deg) translateY(6px);
}

.collection-cover:hover .collection-cover-stack img:nth-child(5),
.collection-cover:focus-visible .collection-cover-stack img:nth-child(5) {
  transform: rotate(8deg) translateY(18px);
}

.home-resource-section {
  padding: 120px 0;
  background: #f2f0eb;
  border-top: 1px solid var(--line);
}

.home-resource-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.home-resource-grid > div > h2 {
  max-width: 500px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -.035em;
}

.home-resource-note {
  max-width: 470px;
  margin: 24px 0 0;
  color: #596a72;
  font-size: 16px;
  line-height: 1.7;
}

.resource-library-button {
  margin-top: 30px;
}

.home-resource-card {
  padding: 44px 48px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 24px 48px rgba(24, 43, 53, .14);
}

.resource-kicker {
  margin: 0 0 16px;
  color: #aac0ca;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.home-resource-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.5vw, 43px);
  line-height: 1.12;
  font-weight: 500;
}

.home-resource-card h3 a:hover {
  color: #c8dae1;
}

.home-resource-card > p:not(.resource-kicker) {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.72;
}

.home-resource-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.resource-all-link {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.resource-all-link:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .home-resource-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
}

@media (max-width: 520px) {
  .collection-cover-stack {
    min-height: 420px;
    padding: 36px 16px;
  }
}

@media (max-width: 760px) {
  .collection-facts {
    grid-template-columns: 1fr;
  }

  .collection-facts p {
    padding: 18px 0;
  }

  .collection-facts p + p {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-resource-section {
    padding: 85px 0;
  }

  .home-resource-card {
    padding: 34px 30px;
  }

  .home-resource-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
