/*
  Article conversion prototype.
  Scoped to one article so the remaining published pages keep their current layout
  until the prototype is approved.
*/

.article-prototype-v1 .article-prose > section + section {
  margin-top: 48px;
  padding-top: 46px;
  border-top: 1px solid rgba(227, 179, 94, 0.14);
}

.article-prototype-v1 .article-meta a {
  color: var(--ink);
  border-bottom: 1px solid rgba(227, 179, 94, 0.34);
  font-weight: 750;
}

.article-prototype-v1 .article-meta a:hover,
.article-prototype-v1 .article-meta a:focus-visible {
  color: var(--gold);
}

.article-prototype-v1 a:focus-visible {
  outline-color: var(--gold);
}

.article-prototype-v1 .article-takeaway {
  position: relative;
  margin-top: 56px;
  padding: 27px 28px 28px;
  border-color: rgba(227, 179, 94, 0.3);
  border-left: 3px solid var(--gold);
  background: linear-gradient(120deg, rgba(227, 179, 94, 0.1), rgba(249, 239, 225, 0.025) 70%);
  box-shadow: none;
}

.article-prototype-v1 .article-takeaway > strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-prototype-v1 .article-next-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
  gap: clamp(38px, 5vw, 72px);
  margin-top: clamp(68px, 8vw, 96px);
  padding: clamp(34px, 4.8vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 123, 50, 0.15), transparent 28rem),
    linear-gradient(135deg, rgba(249, 239, 225, 0.055), rgba(249, 239, 225, 0.018)),
    var(--panel);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 116px;
}

.article-prototype-v1 .article-next-step__intro,
.article-prototype-v1 .article-next-step__contact,
.article-prototype-v1 .article-next-step__teacher > div {
  min-width: 0;
}

.article-prototype-v1 .article-next-step__eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-prototype-v1 .article-next-step h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.3vw, 54px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.015em;
  scroll-margin-top: 116px;
}

.article-prototype-v1 .article-next-step__lead {
  max-width: 650px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.article-prototype-v1 .article-next-step__teacher {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(227, 179, 94, 0.16);
}

.article-prototype-v1 .article-next-step__portrait {
  display: block;
  width: 88px;
  height: 88px;
  overflow: hidden;
  background: #0b0907;
  border: 1px solid rgba(227, 179, 94, 0.24);
  border-radius: 50%;
}

.article-prototype-v1 .article-next-step__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.article-prototype-v1 .article-next-step__teacher span:first-child {
  display: block;
  margin-bottom: 4px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-prototype-v1 .article-next-step__teacher strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.article-prototype-v1 .article-next-step__teacher p {
  margin: 4px 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.article-prototype-v1 .article-next-step__teacher a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 7px 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.article-prototype-v1 .article-next-step__contact {
  align-self: stretch;
  padding-left: clamp(30px, 4vw, 52px);
  border-left: 1px solid rgba(227, 179, 94, 0.19);
}

.article-prototype-v1 .article-next-step__contact-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

.article-prototype-v1 .article-next-step__primary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  color: #120c05;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(227, 179, 94, 0.13);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.article-prototype-v1 .article-next-step__primary:hover,
.article-prototype-v1 .article-next-step__primary:focus-visible {
  color: #120c05;
  background: #efc372;
  border-color: #efc372;
  transform: translateY(-1px);
}

.article-prototype-v1 .article-next-step__direct-label {
  margin: 22px 0 5px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.article-prototype-v1 .article-next-step__channels {
  border-top: 1px solid rgba(227, 179, 94, 0.16);
}

.article-prototype-v1 .article-next-step__channels a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 2px;
  color: var(--ink);
  border-bottom: 1px solid rgba(227, 179, 94, 0.16);
  font-size: 15px;
  line-height: 1.35;
  transition: color 160ms ease, background-color 160ms ease;
}

.article-prototype-v1 .article-next-step__channels a:hover,
.article-prototype-v1 .article-next-step__channels a:focus-visible {
  color: var(--gold);
  background: rgba(227, 179, 94, 0.045);
}

.article-prototype-v1 .article-next-step__channels a > span:first-child {
  font-weight: 800;
}

.article-prototype-v1 .article-next-step__channels a > span:last-child {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.article-prototype-v1 .article-related {
  margin-top: clamp(62px, 8vw, 88px);
  padding-top: clamp(42px, 5vw, 58px);
  border-top: 1px solid rgba(227, 179, 94, 0.14);
}

.article-prototype-v1 .article-related .article-card {
  background: rgba(249, 239, 225, 0.032);
  border-color: rgba(227, 179, 94, 0.16);
  box-shadow: none;
}

@media (max-width: 920px) {
  .article-prototype-v1 .article-aside {
    display: none;
  }

  .article-prototype-v1 .article-next-step {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .article-prototype-v1 .article-next-step__contact {
    padding: 29px 0 0;
    border-top: 1px solid rgba(227, 179, 94, 0.19);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .article-prototype-v1 .article-prose > section + section {
    margin-top: 38px;
    padding-top: 36px;
  }

  .article-prototype-v1 .article-takeaway {
    margin-top: 44px;
    padding: 22px 20px 23px;
  }

  .article-prototype-v1 .article-next-step {
    gap: 25px;
    margin-top: 58px;
    padding: 28px 20px 26px;
  }

  .article-prototype-v1 .article-next-step h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .article-prototype-v1 .article-next-step__lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.62;
  }

  .article-prototype-v1 .article-next-step__teacher {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .article-prototype-v1 .article-next-step__portrait {
    width: 74px;
    height: 74px;
  }

  .article-prototype-v1 .article-next-step__teacher p {
    font-size: 13px;
  }

  .article-prototype-v1 .article-next-step__contact {
    padding-top: 24px;
  }

  .article-prototype-v1 .article-next-step__primary {
    min-height: 56px;
    padding: 14px 16px;
  }

  .article-prototype-v1 .article-next-step__channels a {
    min-height: 50px;
  }

  .article-prototype-v1 .article-related {
    margin-top: 56px;
    padding-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-prototype-v1 .article-next-step__primary:hover,
  .article-prototype-v1 .article-next-step__primary:focus-visible {
    transform: none;
  }
}
