.cc-collections-page .cc-collections-hero {
  min-height: 540px;
  --cc-hero-overlay: linear-gradient(90deg, rgba(17, 38, 39, .82), rgba(17, 38, 39, .38));
}

.cc-collections-page .cc-collections-hero h1 {
  color: #fff;
}

.cc-collections-directory {
  position: relative;
  overflow: hidden;
  padding: 112px 0 128px;
  background: #f8f7f2;
}

.cc-collections-directory::before {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(35, 181, 176, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(35, 181, 176, .03), 0 0 0 148px rgba(35, 181, 176, .02);
  content: "";
  pointer-events: none;
}

.cc-collections-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.cc-collections-intro .cc-action-eyebrow {
  color: var(--cc-teal);
}

.cc-collections-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--cc-ink);
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .96;
}

.cc-collections-intro > p {
  margin: 0 0 5px;
  color: var(--cc-muted);
  font-size: 17px;
  line-height: 1.7;
}

.cc-collections-filters {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 18px;
  border: 1px solid #e1e0da;
  background: rgba(255, 255, 255, .72);
}

.cc-collections-filters button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--cc-ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.cc-collections-filters button span {
  display: inline-grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--cc-muted);
  background: #f1f0eb;
  font-size: 10px;
}

.cc-collections-filters button:hover,
.cc-collections-filters button:focus-visible,
.cc-collections-filters button.is-active {
  border-color: var(--cc-teal);
  color: #fff;
  background: var(--cc-teal);
}

.cc-collections-filters button.is-active span,
.cc-collections-filters button:hover span,
.cc-collections-filters button:focus-visible span {
  color: var(--cc-ink);
  background: #fff;
}

.cc-collections-result-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 52px;
}

.cc-collections-result-bar p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-collections-result-bar strong {
  color: var(--cc-ink);
}

.cc-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.cc-collection-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e1e0da;
  background: #fff;
  box-shadow: 0 14px 38px rgba(22, 45, 48, .07);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cc-collection-card[hidden] {
  display: none;
}

.cc-collection-card:hover,
.cc-collection-card:focus-within {
  border-color: rgba(35, 181, 176, .55);
  box-shadow: 0 22px 48px rgba(22, 45, 48, .13);
  transform: translateY(-6px);
}

.cc-collection-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.38 / 1;
  background: #e9ebe8;
}

.cc-collection-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(13, 29, 30, .45));
  content: "";
}

.cc-collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.cc-collection-card:hover .cc-collection-card__media img,
.cc-collection-card:focus-within .cc-collection-card__media img {
  transform: scale(1.045);
}

.cc-collection-card__media > span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cc-collection-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 24px;
}

.cc-collection-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cc-teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cc-collection-card__status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cc-teal);
  box-shadow: 0 0 0 4px rgba(35, 181, 176, .12);
}

.cc-collection-card h3 {
  margin: 15px 0 12px;
  color: var(--cc-ink);
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.cc-collection-card h3 a {
  text-decoration: none;
}

.cc-collection-card h3 a:hover,
.cc-collection-card h3 a:focus {
  color: var(--cc-teal);
}

.cc-collection-card__body > p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 15px;
  line-height: 1.6;
}

.cc-collection-card__progress {
  margin-top: auto;
  padding-top: 26px;
}

.cc-collection-card__progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #ecebe6;
}

.cc-collection-card__progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cc-orange), var(--cc-teal));
}

.cc-collection-card__amounts {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
}

.cc-collection-card__amounts > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.cc-collection-card__amounts > span:last-child {
  align-items: flex-end;
  text-align: right;
}

.cc-collection-card__amounts small {
  color: #899397;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cc-collection-card__amounts strong {
  color: var(--cc-ink);
  font-size: 14px;
  font-weight: 700;
}

.cc-collection-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 21px;
  padding-top: 19px;
  border-top: 1px solid #ecebe6;
}

.cc-collection-card__footer > span {
  color: var(--cc-muted);
  font-size: 12px;
  font-weight: 600;
}

.cc-collection-card__footer > a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cc-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cc-collection-card__footer > a > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--cc-orange);
  transition: background-color .2s ease;
}

.cc-collection-card__footer > a:hover > span,
.cc-collection-card__footer > a:focus > span {
  background: var(--cc-teal);
}

.cc-collections-more {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.cc-collections-more[hidden] {
  display: none;
}

.cc-collections-more button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 13px;
  padding: 14px 25px;
  border: 1px solid var(--cc-ink);
  border-radius: 0;
  color: var(--cc-ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}

.cc-collections-more button:hover,
.cc-collections-more button:focus-visible {
  color: #fff;
  background: var(--cc-ink);
}

.cc-collections-empty {
  padding: 70px 30px;
  border: 1px solid #e1e0da;
  background: #fff;
  text-align: center;
}

.cc-collections-cta {
  padding: 100px 0;
  color: var(--cc-ink);
  background: transparent;
}

.cc-collections-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
}

.cc-collections-cta__inner > div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--cc-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cc-collections-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--cc-ink);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.cc-collections-cta .cc-button {
  min-width: 190px;
  background: var(--cc-orange);
}

.cc-collections-cta .cc-button:hover,
.cc-collections-cta .cc-button:focus {
  background: var(--cc-teal);
}

@media (max-width: 1024px) {
  .cc-collections-directory {
    padding: 92px 0 104px;
  }

  .cc-collections-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cc-collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-collections-cta__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .cc-collections-page .cc-action-shell,
  .cc-collections-page .cc-action-hero__content {
    width: calc(100% - 30px);
  }

  .cc-collections-page .cc-collections-hero {
    min-height: 470px;
  }

  .cc-collections-page .cc-collections-hero h1 {
    font-size: clamp(46px, 15vw, 62px);
  }

  .cc-collections-directory {
    padding: 72px 0 84px;
  }

  .cc-collections-intro {
    margin-bottom: 38px;
  }

  .cc-collections-intro h2 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .cc-collections-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
  }

  .cc-collections-filters button {
    justify-content: space-between;
    padding-inline: 11px;
    font-size: 11px;
  }

  .cc-collections-result-bar {
    justify-content: flex-start;
  }

  .cc-collections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cc-collection-card:hover,
  .cc-collection-card:focus-within {
    transform: none;
  }

  .cc-collection-card__body {
    padding: 25px 23px 22px;
  }

  .cc-collection-card h3 {
    font-size: 28px;
  }

  .cc-collections-cta {
    padding: 78px 0 84px;
  }

  .cc-collections-cta h2 {
    font-size: 42px;
  }

  .cc-collections-cta .cc-button {
    width: 100%;
  }
}
