:root {
  --plum: #481c3e;
  --ink: #281c29;
  --muted: #665b65;
  --line: #e9e2e8;
  --pink: #f7edf2;
  --white: #fff;
  --accent: #aa416d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}
h2 {
  font-size: clamp(2.1rem, 3.3vw, 3.5rem);
}
h3 {
  font-size: 1.8rem;
}
em {
  font-weight: 400;
  color: var(--accent);
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button {
  font: inherit;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: bold;
  flex-shrink: 0;
}
.brand svg {
  width: 42px;
  height: 42px;
}
.brand-bottom {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-top: 4px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
}
.site-header nav > a:hover,
.site-header [aria-current="page"] {
  color: var(--accent);
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid #ccb8c6;
  border-radius: 5px;
  color: var(--plum);
  display: flex;
  gap: 18px;
}
.menu-toggle {
  display: none;
}
.home-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  padding-block: 62px 66px;
  align-items: center;
}
.hero-copy {
  padding: 14px 48px 14px 0;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
  font-weight: 600;
  color: var(--plum);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-copy h1 {
  margin-bottom: 26px;
}
.lead {
  font-size: 1.075rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 530px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: var(--plum);
  color: #fff;
  padding: 15px 24px;
  border-radius: 5px;
  font-size: 0.9rem;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #682854;
  transform: translateY(-2px);
}
.hero-copy .button {
  margin-top: 12px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--muted);
}
.mini-rule {
  width: 35px;
  height: 1px;
  background: #b796ac;
}
.hero-visual {
  position: relative;
  padding-bottom: 25px;
}
.hero-photo {
  width: 100%;
  height: 580px;
  border-radius: 140px 10px 10px 10px;
  object-position: 48% center;
}
.image-tag {
  position: absolute;
  bottom: 0;
  right: 26px;
  background: var(--pink);
  padding: 21px 30px;
  border: 6px solid #fff;
  min-width: 260px;
}
.image-tag span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 6px;
}
.image-tag strong {
  font:
    1.6rem Georgia,
    serif;
  font-weight: 400;
}
.principle-strip {
  border-block: 1px solid var(--line);
  background: #fbf9fb;
}
.principle-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-block: 21px;
  gap: 18px;
}
.principle-strip span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section {
  padding-block: 88px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading p:last-child {
  max-width: 345px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
.cards-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.guide-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: white;
}
.guide-card:hover {
  border-color: #b796ac;
  box-shadow: 0 12px 32px #481c3e0c;
}
.image-card > img {
  width: 100%;
  aspect-ratio: 1.55;
  height: auto;
}
.card-copy {
  padding: 29px 28px 26px;
}
.card-copy .eyebrow {
  font-size: 0.69rem;
  margin-bottom: 15px;
  display: block;
}
.card-copy h3 {
  margin-bottom: 16px;
  line-height: 1.2;
}
.card-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 27px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--plum);
  border-bottom: 1px solid #c2a6b9;
  padding-bottom: 5px;
}
.text-link:hover {
  color: var(--accent);
}
.values-section {
  background: var(--plum);
  color: white;
  padding-block: 76px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.values-section .eyebrow {
  color: #e2b9d0;
}
.values-section em {
  color: #eec5da;
}
.values-section h2 {
  line-height: 1.16;
  margin-bottom: 24px;
}
.values-section p {
  max-width: 490px;
  color: #e0cfdb;
}
.values-section .text-link {
  color: white;
  margin-top: 12px;
}
.values-list > div {
  display: flex;
  gap: 27px;
  padding-block: 22px;
  border-bottom: 1px solid #ffffff29;
}
.values-list > div:first-child {
  padding-top: 0;
}
.values-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.values-list > div > span {
  font:
    italic 1.35rem Georgia,
    serif;
  color: #d5a4c1;
  padding-top: 7px;
}
.values-list h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}
.values-list p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.cards-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.cards-two .guide-card {
  background: #fbf8fa;
}
.cards-two .card-copy {
  padding: 36px 38px;
}
.final-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--pink);
  margin-bottom: 88px;
  border-radius: 10px;
  overflow: hidden;
}
.final-feature > img {
  width: 100%;
  height: 510px;
  object-position: 50% center;
}
.final-feature > div {
  padding: 48px;
}
.final-feature h2 {
  line-height: 1.1;
  margin-bottom: 25px;
}
.final-feature p:not(.eyebrow) {
  color: var(--muted);
  max-width: 380px;
}
.final-feature .button {
  margin-top: 14px;
}
footer {
  border-top: 1px solid var(--line);
  padding-top: 55px;
  background: #faf9fa;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 45px;
}
.footer-brand {
  font-size: 1.55rem;
}
.footer-grid p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-block: 20px 12px;
}
.small {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-grid h2 {
  font:
    600 0.85rem Arial,
    sans-serif;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-grid > div > a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  font-size: 0.75rem;
  color: var(--muted);
}
.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 30px;
  flex-wrap: wrap;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-hero {
  padding-block: 44px 62px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 65px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.article-hero h1 {
  font-size: clamp(2.7rem, 4.2vw, 4.1rem);
  line-height: 1.08;
  margin-bottom: 25px;
}
.article-hero .eyebrow {
  margin-bottom: 20px;
}
.article-hero .lead {
  font-size: 1.05rem;
}
.article-photo {
  width: 100%;
  height: 370px;
  border-radius: 80px 8px 8px 8px;
}
.article-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 25px;
  margin-bottom: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.reading-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 740px);
  gap: 80px;
  justify-content: space-between;
  padding-block: 55px 65px;
}
.contents {
  align-self: start;
  position: sticky;
  top: 30px;
}
.contents .eyebrow {
  margin-bottom: 19px;
  font-size: 0.68rem;
}
.contents ol {
  padding-left: 18px;
  margin: 0;
}
.contents li {
  padding-left: 4px;
  margin-bottom: 13px;
  font-size: 0.87rem;
  line-height: 1.5;
  color: var(--muted);
}
.contents a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--plum);
}
.aside-note {
  margin-top: 35px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  font:
    italic 1.3rem/1.5 Georgia,
    serif;
  color: var(--plum);
}
.article-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #514653;
}
.article-body p {
  margin-bottom: 22px;
}
.article-body .article-intro {
  font-size: 1.22rem;
  line-height: 1.75;
  color: var(--ink);
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 39px;
}
.article-body section {
  margin-top: 38px;
}
.article-body h2 {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.related {
  border-top: 1px solid var(--line);
  padding-top: 55px;
}
.related h2 {
  margin-bottom: 30px;
}
.policy-hero {
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  max-width: 1280px;
}
.policy-hero h1 {
  max-width: 760px;
}
.policy-hero .lead {
  max-width: 750px;
}
.skip {
  position: absolute;
  top: -100px;
  left: 15px;
  background: var(--plum);
  color: white;
  padding: 12px 20px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
@media (min-width: 1600px) {
  .hero-photo {
    height: 630px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .site-header nav {
    gap: 20px;
  }
  .nav-cta {
    padding: 10px 12px;
  }
  .home-hero {
    grid-template-columns: 47% 53%;
    padding-block: 45px;
  }
  .hero-copy {
    padding-right: 30px;
  }
  .hero-photo {
    height: 540px;
  }
  .hero-copy h1 {
    font-size: 4.2rem;
  }
  .hero-copy .eyebrow {
    font-size: 0.65rem;
  }
  .values-grid {
    gap: 55px;
  }
  .card-copy {
    padding: 23px;
  }
  .card-copy h3 {
    font-size: 1.55rem;
  }
  .article-hero {
    gap: 40px;
  }
  .reading-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 45px;
  }
  .final-feature > div {
    padding: 35px;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    min-height: 80px;
  }
  .brand {
    font-size: 1.45rem;
  }
  .brand svg {
    width: 36px;
    height: 36px;
  }
  .brand-bottom {
    font-size: 0.69rem;
  }
  .menu-toggle {
    display: block;
    background: white;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 8px 12px;
    color: var(--plum);
    font-size: 0.9rem;
  }
  .menu-toggle span {
    margin-left: 8px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    align-items: stretch;
    gap: 0;
    background: white;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px #281c2910;
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
  }
  .site-header nav > a {
    padding: 12px;
  }
  .nav-cta {
    margin-top: 8px;
    max-width: 330px;
  }
  .home-hero {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 30px;
  }
  .hero-copy {
    padding-right: 0;
  }
  .hero-copy h1 {
    font-size: 3.4rem;
  }
  .hero-copy .lead {
    font-size: 0.95rem;
  }
  .hero-photo {
    height: 450px;
    border-top-left-radius: 90px;
  }
  .image-tag {
    right: 10px;
    min-width: 220px;
    padding: 16px 20px;
  }
  .image-tag strong {
    font-size: 1.35rem;
  }
  .hero-note {
    margin-top: 24px;
  }
  .principle-strip span {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading {
    gap: 25px;
    align-items: start;
  }
  .section-heading p:last-child {
    max-width: 260px;
    font-size: 0.9rem;
  }
  .section-heading h2 {
    font-size: 2.4rem;
  }
  .cards-three {
    gap: 16px;
  }
  .card-copy {
    padding: 20px 16px;
  }
  .card-copy h3 {
    font-size: 1.45rem;
  }
  .card-copy p {
    font-size: 0.9rem;
  }
  .values-grid {
    gap: 35px;
  }
  .values-section {
    padding-block: 55px;
  }
  .values-section h2 {
    font-size: 2.4rem;
  }
  .cards-two .card-copy {
    padding: 28px;
  }
  .final-feature > img {
    height: 440px;
  }
  .final-feature > div {
    padding: 26px;
  }
  .final-feature h2 {
    font-size: 2.5rem;
  }
  .final-feature .button {
    font-size: 0.8rem;
    gap: 16px;
    padding: 13px 18px;
  }
  .footer-grid {
    gap: 30px;
  }
  .footer-bottom {
    font-size: 0.69rem;
  }
  .article-hero {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .article-hero h1 {
    font-size: 2.8rem;
  }
  .article-photo {
    height: 340px;
  }
  .reading-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contents {
    position: static;
    padding: 24px;
    background: #fbf8fa;
    border-radius: 6px;
  }
  .contents ol {
    columns: 2;
    column-gap: 35px;
  }
  .contents li {
    break-inside: avoid;
  }
  .aside-note {
    display: none;
  }
  .article-body {
    max-width: 740px;
  }
  .policy-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 36px);
  }
  .home-hero {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-block: 30px 37px;
  }
  .hero-copy {
    padding-top: 5px;
  }
  .hero-copy h1 {
    font-size: 3.55rem;
    line-height: 1.02;
  }
  .hero-copy h1 br:last-of-type {
    display: none;
  }
  .hero-copy .eyebrow {
    font-size: 0.66rem;
    margin-bottom: 19px;
  }
  .hero-copy .lead {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .hero-note {
    display: none;
  }
  .hero-photo {
    height: auto;
    aspect-ratio: 1.12;
    object-position: center;
    border-radius: 65px 8px 8px 8px;
  }
  .hero-visual {
    padding-bottom: 20px;
  }
  .image-tag {
    padding: 15px 19px;
    right: 12px;
    min-width: 235px;
  }
  .principle-strip .container {
    gap: 10px;
    padding-block: 18px;
    justify-content: space-between;
  }
  .principle-strip span {
    font-size: 0.6rem;
    letter-spacing: 0;
    max-width: 100px;
    text-align: center;
  }
  .section {
    padding-block: 45px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading h2 {
    font-size: 2.3rem;
  }
  .section-heading p:last-child {
    margin-top: 20px;
    max-width: 100%;
    font-size: 0.96rem;
  }
  .cards-three,
  .cards-two,
  .values-grid,
  .final-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards-three {
    gap: 24px;
  }
  .image-card > img {
    aspect-ratio: 1.6;
  }
  .card-copy {
    padding: 26px;
  }
  .card-copy h3 {
    font-size: 1.9rem;
    max-width: 280px;
  }
  .card-copy p {
    font-size: 1rem;
  }
  .values-grid {
    gap: 35px;
  }
  .values-section {
    padding-block: 42px;
  }
  .values-section h2 {
    font-size: 2.45rem;
  }
  .values-list > div {
    gap: 22px;
  }
  .cards-two {
    gap: 18px;
  }
  .cards-two .card-copy {
    padding: 28px;
  }
  .final-feature {
    margin-bottom: 45px;
  }
  .final-feature > img {
    height: auto;
    aspect-ratio: 1.25;
  }
  .final-feature > div {
    padding: 30px 27px 35px;
  }
  .final-feature h2 {
    font-size: 2.7rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
    padding-bottom: 30px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid h2 {
    font-size: 0.8rem;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 0.85rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 0.75rem;
  }
  footer {
    padding-top: 35px;
  }
  .breadcrumb {
    padding-top: 22px;
    font-size: 0.75rem;
  }
  .article-hero {
    grid-template-columns: 1fr;
    padding-block: 28px 35px;
    gap: 25px;
  }
  .article-hero h1 {
    font-size: 2.75rem;
  }
  .article-hero .eyebrow {
    font-size: 0.68rem;
  }
  .article-photo {
    height: auto;
    aspect-ratio: 1.35;
    border-top-left-radius: 55px;
  }
  .article-meta {
    font-size: 0.7rem;
    gap: 8px;
  }
  .reading-layout {
    padding-top: 30px;
    padding-bottom: 45px;
  }
  .contents ol {
    columns: 1;
  }
  .contents {
    padding: 23px 24px;
  }
  .contents li {
    font-size: 0.9rem;
  }
  .article-body {
    font-size: 1.025rem;
    line-height: 1.8;
  }
  .article-body .article-intro {
    font-size: 1.13rem;
  }
  .article-body h2 {
    font-size: 1.9rem;
  }
  .related h2 {
    font-size: 2.25rem;
  }
  .button {
    max-width: 100%;
  }
  .eyebrow {
    font-size: 0.7rem;
  }
  .policy-hero h1 {
    font-size: 2.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media print {
  nav,
  .contents,
  .related,
  footer,
  .menu-toggle {
    display: none !important;
  }
  .container {
    width: 100%;
  }
  .article-hero,
  .reading-layout {
    display: block;
  }
  .article-photo {
    max-height: 220px;
    width: auto;
  }
  .article-body {
    max-width: none;
  }
  .site-header {
    position: static;
  }
}

/* Responsive account actions and article registration. */
.account-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.account-actions .button {
  justify-content: center;
  min-height: 48px;
  min-width: 104px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--plum);
}
.button-secondary {
  background: white;
  color: var(--plum);
}
.button-secondary:hover {
  background: var(--pink);
  color: var(--plum);
}
.nav-wrap {
  gap: 24px;
  flex-wrap: wrap;
}
.site-header nav {
  margin-left: auto;
  gap: 24px;
}
.site-header > .nav-wrap > .account-actions {
  flex-shrink: 0;
}
.hero-copy .account-actions {
  margin-block: 24px 18px;
}
.hero-copy .account-actions .button {
  margin-top: 0;
  min-width: 140px;
}
.hero-explore {
  min-height: 44px;
}
.article-register {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.article-register .button {
  min-height: 52px;
  min-width: 180px;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.home-hero > *,
.article-hero > *,
.reading-layout > * {
  min-width: 0;
}
.article-body,
.section-heading,
.footer-grid {
  overflow-wrap: break-word;
}
@media (max-width: 1100px) {
  .nav-wrap {
    padding-block: 16px;
    gap: 16px;
  }
  .menu-toggle {
    display: block;
    min-height: 44px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 8px 12px;
    color: var(--plum);
    font-size: 1rem;
    margin-left: auto;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    align-items: stretch;
    gap: 0;
    background: white;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px #281c2910;
    margin: 0;
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
  }
  .site-header nav > a {
    padding: 12px;
    min-height: 48px;
  }
  .hero-copy h1 {
    font-size: clamp(2.6rem, 5.8vw, 4.2rem);
  }
}
@media (max-width: 600px) {
  .site-header > .nav-wrap > .account-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .account-actions .button {
    padding: 12px 18px;
    min-width: 0;
  }
  .hero-copy .account-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero-copy .account-actions .button {
    min-width: 0;
  }
  .hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 3.55rem);
  }
  .article-hero h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
    overflow-wrap: break-word;
  }
  .article-register .button {
    width: 100%;
  }
  .brand-bottom {
    font-size: 0.75rem;
  }
}
@media print {
  .account-actions,
  .article-register {
    display: none !important;
  }
}
