/* ============================================================
   Asset-category pages (Retail, Industrial, Office, ...)
   Builds on who-we-work-with.css — only the extras live here.
   ============================================================ */

/* ── Hero spacing ── */
.cc-asset .cc-ww-hero__right {
  padding-top: 6px;
}

.cc-asset .cc-ww-hero__subtitle {
  margin-top: 34px;
}

.cc-asset .cc-ww-hero__btn {
  margin-top: 48px;
}

/* Follow-on hero paragraphs sit under the first at a calmer size. */
.cc-asset .cc-asset-hero__text--more {
  margin-top: 18px;
}

/* The shared hero block is 853px tall for the Who We Work With artwork. These
   pages lead with a transaction photo instead, which at that height fills the
   whole viewport — scale it back to a banner. */
.cc-asset .cc-ww-image__wrap {
  height: clamp(280px, 34vw, 520px);
}

.cc-asset .cc-asset-hero__link {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Content sections ──
   These pages are far more copy-heavy than the page this grid was built for.
   The 492px measure inside a ~966px column left a wide empty gutter beside
   every text-only section, so the copy runs wider here. The section rhythm
   itself is now shared — see .cc-ww-section in who-we-work-with.css. */
.cc-asset .cc-ww-section__grid {
  gap: 0 120px;
}

.cc-asset .cc-ww-section__intro {
  max-width: 620px;
}

/* The old pages ran several paragraphs per section; the base style assumes
   one, so restore the rhythm between them. */
.cc-asset .cc-ww-section__intro + .cc-ww-section__intro {
  margin-top: 18px;
}

/* ── Links inside body copy ──
   Carried across from the old pages and re-pointed at the new pages. Without
   this they inherit a grey lighter than the body text and recede instead of
   reading as links. */
.cc-asset .cc-ww-hero__text a,
.cc-asset .cc-ww-section__intro a,
.cc-asset .cc-asset-list a,
.cc-asset .cc-ww-accordion__answer a,
.cc-asset .cc-faq__answer a {
  color: var(--cc-dark-parchment);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.cc-asset .cc-ww-hero__text a:hover,
.cc-asset .cc-ww-section__intro a:hover,
.cc-asset .cc-asset-list a:hover,
.cc-asset .cc-ww-accordion__answer a:hover,
.cc-asset .cc-faq__answer a:hover {
  color: var(--cc-ink);
}

/* ── Bulleted considerations lists ── */

.cc-asset .cc-asset-list {
  list-style: none;
  /* Match the copy measure so bullets don't run wider than the paragraphs. */
  max-width: 620px;
  margin: 24px 0 0;
  padding: 0;
}

.cc-asset .cc-asset-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-family: var(--cc-font-body);
  font-size: 14px;
  line-height: 1.48;
  letter-spacing: 0.28px;
  color: var(--cc-ink-2);
}

.cc-asset .cc-asset-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cc-archive);
}

/* ── Standalone CTA line ── */

.cc-asset-callout {
  padding: 0 var(--cc-gutter);
  width: 100%;
  max-width: var(--cc-max-width);
  margin: 90px auto 0;
}

.cc-asset-callout__rule {
  height: 0;
  border-top: var(--cc-hairline, 0.5px) solid var(--cc-archive);
  margin-bottom: 44px;
}

.cc-asset .cc-asset-callout__text {
  font-family: var(--cc-font-heading);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.25;
  color: var(--cc-ink);
  max-width: 900px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Transactions grid ── */

.cc-asset-pf {
  padding: 0 var(--cc-gutter);
  width: 100%;
  max-width: var(--cc-max-width);
  margin: 110px auto 0;
}

.cc-asset-pf__rule {
  height: 0;
  border-top: var(--cc-hairline, 0.5px) solid var(--cc-archive);
  margin-bottom: 46px;
}

.cc-asset .cc-asset-pf__heading {
  font-family: var(--cc-font-heading);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: var(--cc-ink);
  margin-bottom: 44px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cc-asset-pf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}

.cc-asset .cc-asset-pf__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.cc-asset-pf__img {
  display: block;
  width: 100%;
  aspect-ratio: 472 / 352;
  overflow: hidden;
  margin-bottom: 20px;
}

.cc-asset-pf__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cc-asset .cc-asset-pf__card:hover .cc-asset-pf__img img {
  transform: scale(1.03);
}

.cc-asset .cc-asset-pf__title {
  font-family: var(--cc-font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--cc-ink-2);
  margin-bottom: 14px;
}

.cc-asset .cc-asset-pf__link {
  font-family: var(--cc-font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cc-dark-parchment);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  margin-top: auto;
}

.cc-asset-pf__all {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.cc-asset .cc-asset-pf__all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 472px;
  max-width: 100%;
  height: 54px;
  background: var(--cc-bg);
  border: var(--cc-hairline, 0.5px) solid var(--cc-archive);
  color: var(--cc-archive);
  font-family: var(--cc-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.cc-asset .cc-asset-pf__all-link:hover {
  background: var(--cc-dark-parchment);
  color: var(--cc-bg);
}

.cc-asset .cc-asset-pf__all-link:focus:not(:hover),
.cc-asset .cc-asset-pf__all-link:active {
  outline: none;
  background: var(--cc-bg);
  color: var(--cc-archive);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cc-asset-pf__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 21px;
  }

  .cc-asset .cc-asset-callout__text {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .cc-asset-pf,
  .cc-asset-callout {
    margin-top: 70px;
  }

  .cc-asset-pf__grid {
    grid-template-columns: 1fr;
    gap: 34px 0;
  }

  .cc-asset .cc-asset-pf__heading {
    font-size: 24px;
  }

  .cc-asset .cc-asset-callout__text {
    font-size: 24px;
  }
}
