/* Clockwork Insight article system: editorial rhythm with flexible media. */
.InsightSingle__hero {
  background: var(--cw-blue);
  color: var(--cw-mint);
  min-height: auto;
  padding: clamp(130px, 11vw, 180px) clamp(20px, 4vw, 64px) clamp(46px, 5vw, 72px);
}

.InsightSingle__back {
  color: inherit;
  display: inline-block;
  font-size: 15px;
  margin: 0 0 clamp(32px, 4vw, 56px);
  text-decoration: none;
}

.InsightSingle__back:hover,
.InsightSingle__back:focus-visible {
  text-decoration: underline;
  text-underline-offset: .3em;
}

.InsightSingle__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
}

.InsightSingle__hero h1 {
  font-size: clamp(58px, 7.5vw, 124px);
  letter-spacing: -.06em;
  line-height: .89;
  max-width: 14ch;
  overflow-wrap: anywhere;
}

.InsightSingle__standfirst {
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1.12;
  margin: clamp(32px, 4.5vw, 64px) 0 0 auto;
  max-width: 28ch;
}

.InsightSingle__meta {
  align-items: end;
  border-top: 1px solid currentColor;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: 18px;
}

.InsightSingle__author {
  align-items: center;
  display: flex;
  gap: 13px;
}

.InsightSingle__author img {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.InsightSingle__author span {
  display: grid;
  gap: 3px;
}

.InsightSingle__author b,
.InsightSingle__author small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.InsightSingle__author small {
  opacity: .75;
}

.InsightSingle__details {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px 24px;
  justify-content: flex-end;
}

.InsightSingle__details a {
  color: inherit;
  text-decoration: none;
}

.InsightSingle__heroMedia {
  background: var(--cw-mint);
  margin: 0;
  padding: clamp(20px, 4vw, 64px);
}

.InsightSingle__heroMedia > img,
.InsightSingle__heroMedia .InsightSingle__video {
  border-radius: clamp(18px, 2.2vw, 34px);
  display: block;
  height: min(72vh, 820px);
  overflow: hidden;
  width: 100%;
}

.InsightSingle__heroMedia > img {
  object-fit: cover;
}

.InsightSingle__heroMedia > figcaption {
  font-size: 12px;
  line-height: 1.35;
  margin-top: 10px;
  opacity: .68;
}

.InsightSingle__video {
  aspect-ratio: 16 / 9;
  background: #0e0e0e;
  position: relative;
}

.InsightSingle__video video,
.InsightSingle__video iframe {
  border: 0;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.InsightSingle__layout {
  align-items: start;
  background: var(--cw-white);
  display: grid;
  gap: clamp(48px, 7vw, 118px);
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
  padding: clamp(78px, 10vw, 150px) clamp(20px, 7vw, 118px);
}

.InsightSingle__aside {
  align-self: start;
  display: grid;
  gap: 42px;
  position: sticky;
  top: 125px;
}

.InsightSingle__summary {
  border-top: 2px solid var(--cw-ink);
  padding-top: 16px;
}

.InsightSingle__summary > p,
.InsightSingle__audience > span,
.InsightSingle__share > span {
  font-size: 12px;
  letter-spacing: .09em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.InsightSingle__summary ol {
  counter-reset: summary;
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.InsightSingle__summary li {
  counter-increment: summary;
  font-size: 16px;
  line-height: 1.35;
  padding-left: 30px;
  position: relative;
}

.InsightSingle__summary li::before {
  content: counter(summary, decimal-leading-zero);
  font-size: 11px;
  left: 0;
  letter-spacing: .06em;
  position: absolute;
  top: .35em;
}

.InsightSingle__audience,
.InsightSingle__share {
  border-top: 1px solid rgba(23, 23, 23, .35);
  display: grid;
  gap: 8px;
  padding-top: 16px;
}

.InsightSingle__audience b,
.InsightSingle__share a {
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.InsightSingle__share a:hover,
.InsightSingle__share a:focus-visible {
  text-decoration: underline;
  text-underline-offset: .25em;
}

.InsightSingle__flow {
  min-width: 0;
}

.InsightSingle__content {
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 800px;
}

.InsightSingle__content > * {
  max-width: 100%;
}

.InsightSingle__content > p {
  margin: 0 0 1.25em;
}

.InsightSingle__content > p:first-child {
  font-size: clamp(25px, 2.4vw, 36px);
  letter-spacing: -.025em;
  line-height: 1.22;
  margin-bottom: 1.4em;
}

.InsightSingle__content > p:last-child {
  margin-bottom: 0;
}

.InsightSingle__content h2 {
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: .98;
  margin: 1.8em 0 .5em;
}

.InsightSingle__content h3 {
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.04;
}

.InsightSingle__content ul,
.InsightSingle__content ol {
  padding-left: 1.15em;
}

.InsightSingle__content li {
  margin-bottom: .55em;
  padding-left: .35em;
}

.InsightSingle__content blockquote,
.InsightSingle__content .wp-block-pullquote {
  border: 0;
  color: var(--cw-blue);
  font-size: clamp(32px, 4.2vw, 58px);
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: clamp(70px, 10vw, 130px) 0;
  padding: 0;
}

.InsightSingle__content figure {
  margin: clamp(48px, 7vw, 90px) 0;
}

.InsightSingle__content figcaption,
.InsightSection figcaption {
  font-size: 13px;
  line-height: 1.35;
  margin-top: 10px;
}

.InsightSingle__content .wp-block-image img,
.InsightSingle__content .wp-block-video video,
.InsightSingle__content .wp-block-embed iframe {
  border-radius: 22px;
  display: block;
  height: auto;
  width: 100%;
}

.InsightSingle__content .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
}

.InsightSingle__content .wp-block-embed iframe {
  height: 100%;
}

.InsightSingle__content .alignwide {
  margin-left: max(-12vw, -170px);
  max-width: none;
  width: min(calc(100% + 24vw), 1120px);
}

.InsightSingle__content .alignfull {
  left: 50%;
  margin-left: -50vw;
  max-width: none;
  position: relative;
  width: 100vw;
}

.InsightSection {
  border-top: 1px solid rgba(23, 23, 23, .3);
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  margin: clamp(90px, 13vw, 180px) 0 0;
  padding-top: 24px;
}

.InsightSection--withMedia {
  align-items: start;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.InsightSection--reverse .InsightSection__copy {
  order: 2;
}

.InsightSection--reverse .InsightSection__media {
  order: 1;
}

.InsightSection__eyebrow {
  font-size: 12px;
  letter-spacing: .09em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.InsightSection h2 {
  font-size: clamp(40px, 4.7vw, 72px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
  margin: 0 0 32px;
}

.InsightSection__body {
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.52;
}

.InsightSection__body > *:first-child {
  margin-top: 0;
}

.InsightSection__media {
  margin: 0;
  min-width: 0;
}

.InsightSection__media > img,
.InsightSection__media .InsightSingle__video {
  border-radius: clamp(18px, 2vw, 28px);
  display: block;
  height: auto;
  overflow: hidden;
  width: 100%;
}

.InsightSection__quote {
  background: var(--cw-blue);
  border: 0;
  border-radius: clamp(20px, 2.2vw, 32px);
  color: var(--cw-mint);
  grid-column: 1 / -1;
  margin: clamp(28px, 5vw, 70px) 0 0;
  padding: clamp(32px, 5vw, 72px);
}

.InsightSection__quote p {
  font-size: clamp(35px, 5vw, 72px);
  letter-spacing: -.05em;
  line-height: .98;
  margin: 0;
  max-width: 20ch;
}

.InsightSection__quote cite {
  display: block;
  font-size: 15px;
  font-style: normal;
  margin-top: 36px;
}

.InsightSources {
  border-top: 2px solid var(--cw-ink);
  margin-top: clamp(90px, 12vw, 160px);
  padding-top: 20px;
}

.InsightSources h2 {
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 0 0 36px;
}

.InsightSources ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 1.2em;
}

.InsightSources a {
  color: inherit;
  text-underline-offset: .25em;
}

.InsightSingle__closing {
  background: var(--cw-blue);
  color: var(--cw-mint);
  padding: clamp(76px, 10vw, 150px) clamp(20px, 7vw, 118px);
}

.InsightSingle__closing > p {
  font-size: 13px;
  letter-spacing: .09em;
  margin: 0 0 clamp(55px, 8vw, 110px);
  text-transform: uppercase;
}

.InsightSingle__closing h2 {
  font-size: clamp(55px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .88;
  margin: 0;
  max-width: 12ch;
}

.InsightSingle__closing a {
  border-top: 1px solid currentColor;
  color: inherit;
  display: flex;
  font-size: clamp(18px, 2vw, 27px);
  gap: 30px;
  justify-content: space-between;
  margin-top: clamp(65px, 9vw, 120px);
  padding-top: 18px;
  text-decoration: none;
}

.InsightSingle__closing a:hover,
.InsightSingle__closing a:focus-visible {
  color: #fff;
}

@media (max-width: 980px) {
  .InsightSingle__layout {
    gap: 52px;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    padding-left: 32px;
    padding-right: 32px;
  }

  .InsightSection--withMedia {
    grid-template-columns: 1fr;
  }

  .InsightSection--reverse .InsightSection__copy,
  .InsightSection--reverse .InsightSection__media {
    order: initial;
  }

  .InsightSingle__content .alignwide {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .InsightSingle__hero {
    padding-top: 112px;
  }

  .InsightSingle__back {
    margin-bottom: 32px;
  }

  .InsightSingle__meta {
    align-items: start;
    display: grid;
  }

  .InsightSingle__details {
    justify-content: flex-start;
  }

  .InsightSingle__heroMedia > img,
  .InsightSingle__heroMedia .InsightSingle__video {
    height: auto;
  }

  .InsightSingle__layout {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .InsightSingle__aside {
    border-bottom: 1px solid rgba(23, 23, 23, .3);
    grid-template-columns: 1fr 1fr;
    padding-bottom: 44px;
    position: static;
  }

  .InsightSingle__summary {
    grid-column: 1 / -1;
  }

  .InsightSingle__content .alignfull {
    left: auto;
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 460px) {
  .InsightSingle__aside {
    grid-template-columns: 1fr;
  }

  .InsightSingle__author small {
    max-width: 28ch;
  }
}
