@font-face {
  font-family: "AA Beauty Archivo";
  src: url("/assets/fonts/atlas/archivo-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "AA Beauty Newsreader";
  src: url("/assets/fonts/atlas/newsreader-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "AA Beauty Mono";
  src: url("/assets/fonts/atlas/ibm-plex-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

body.aa-beauty-worknote-page {
  --abw-bg: #f4f4f1;
  --abw-paper: #fbfbf8;
  --abw-ink: #090a0b;
  --abw-muted: #656760;
  --abw-rule: #c3c4bd;
  --abw-soft: #e8e8e2;
  --abw-inverse: #090a0b;
  --abw-inverse-ink: #f5f5f1;
  margin: 0;
  background: var(--abw-bg) !important;
  color: var(--abw-ink) !important;
  font-family: "AA Beauty Archivo", Arial, sans-serif;
}
html.dark body.aa-beauty-worknote-page,
html[data-theme="dark"] body.aa-beauty-worknote-page {
  --abw-bg: #0b0c0c;
  --abw-paper: #111212;
  --abw-ink: #f4f4ef;
  --abw-muted: #aaa9a1;
  --abw-rule: #3b3c39;
  --abw-soft: #191a19;
  --abw-inverse: #f2f2ed;
  --abw-inverse-ink: #090a0b;
}
body.aa-beauty-worknote-page main {
  background: var(--abw-bg) !important;
  color: var(--abw-ink) !important;
}
body.aa-beauty-worknote-page .abw-page,
body.aa-beauty-worknote-page .abw-page * {
  box-sizing: border-box;
}
body.aa-beauty-worknote-page .abw-page {
  overflow: clip;
  background: var(--abw-bg);
  color: var(--abw-ink);
}
body.aa-beauty-worknote-page ::selection {
  background: var(--abw-ink);
  color: var(--abw-bg);
}
body.aa-beauty-worknote-page a:focus-visible,
body.aa-beauty-worknote-page button:focus-visible,
body.aa-beauty-worknote-page [tabindex]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.abw-shell {
  width: min(92vw, 1760px);
  margin-inline: auto;
}
.abw-mono {
  font-family: "AA Beauty Mono", ui-monospace, monospace;
  font-size: 0.69rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.abw-copy {
  max-width: 70ch;
  margin: 0;
  color: var(--abw-muted);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.65;
}
.abw-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 20px;
  border: 1px solid var(--abw-ink);
  background: var(--abw-ink);
  color: var(--abw-bg) !important;
  font-family: "AA Beauty Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.abw-button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--abw-ink) !important;
}
.abw-link {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.abw-link:hover {
  text-decoration-style: double;
}

.abw-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  min-height: min(780px, calc(100svh - 80px));
  border-bottom: 1px solid var(--abw-rule);
  background-color: var(--abw-bg);
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 42px,
    color-mix(in srgb, var(--abw-ink) 7%, transparent) 43px
  );
}
.abw-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 118px) clamp(24px, 4vw, 78px);
  border-right: 1px solid var(--abw-rule);
}
.abw-hero h1 {
  max-width: 11.5ch;
  margin: 0 0 30px;
  font-size: clamp(3.7rem, 6.4vw, 6rem);
  font-stretch: 70%;
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-wrap: balance;
}
.abw-hero-accent {
  display: block;
  margin-top: 0.13em;
  color: var(--abw-ink);
  font-family: "AA Beauty Newsreader", Georgia, serif;
  font-size: 1.04em;
  font-style: italic;
  font-weight: 420;
  letter-spacing: -0.035em;
  line-height: 0.88;
}
.abw-hero-copy > .abw-copy {
  max-width: 58ch;
  color: var(--abw-ink);
}
.abw-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.abw-note-stage {
  position: relative;
  min-height: 620px;
  padding: 70px clamp(28px, 4vw, 70px);
  background: var(--abw-soft);
}
.abw-note-stage::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid var(--abw-rule);
  pointer-events: none;
}
.abw-note-card {
  position: absolute;
  left: 10%;
  width: 78%;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--abw-ink);
  background: var(--abw-paper);
  color: var(--abw-ink);
  box-shadow: 8px 10px 0 color-mix(in srgb, var(--abw-ink) 88%, transparent);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.25s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  transform-origin: center;
}
.abw-note-card:nth-child(1) {
  top: 12%;
  transform: rotate(-4deg);
  z-index: 1;
}
.abw-note-card:nth-child(2) {
  top: 31%;
  left: 15%;
  transform: rotate(2.5deg);
  z-index: 2;
}
.abw-note-card:nth-child(3) {
  top: 51%;
  left: 8%;
  transform: rotate(-1deg);
  z-index: 3;
}
.abw-note-stage:has(.abw-note-card.is-active) .abw-note-card:not(.is-active) {
  filter: grayscale(1);
  opacity: 0.42;
}
.abw-note-card:focus-visible,
.abw-note-card.is-active {
  z-index: 8;
  transform: rotate(0) scale(1.025);
  box-shadow: 10px 14px 0 color-mix(in srgb, var(--abw-ink) 88%, transparent);
}
.abw-note-card small {
  font-family: "AA Beauty Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.abw-note-card strong {
  display: block;
  margin: 38px 0 26px;
  font-size: clamp(1.6rem, 2.2vw, 2.45rem);
  font-stretch: 80%;
  line-height: 1.05;
}
.abw-note-card em {
  font-family: "AA Beauty Newsreader", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-style: italic;
}
.abw-note-detail {
  display: none;
  color: var(--abw-muted);
  font-size: 0.93rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.abw-note-card:focus-visible .abw-note-detail,
.abw-note-card.is-active .abw-note-detail {
  display: block;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

.abw-calendar-section {
  padding: clamp(80px, 10vw, 150px) 0;
  background: var(--abw-bg);
}
.abw-calendar-section .abw-section-head {
  grid-template-columns: 1fr;
}
.abw-calendar-section .abw-section-head h2 {
  max-width: 18ch;
}
.abw-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 7vw;
  margin-bottom: 50px;
}
.abw-section-head h2,
.abw-dark-title,
.abw-boundary h2,
.abw-faq h2,
.abw-related h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
  font-stretch: 72%;
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-wrap: balance;
}
.abw-calendar-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--abw-ink);
  scrollbar-color: var(--abw-ink) var(--abw-soft);
  scrollbar-width: thin;
}
.abw-calendar {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.abw-calendar th,
.abw-calendar td {
  height: 82px;
  padding: 18px;
  border-right: 1px solid var(--abw-rule);
  border-bottom: 1px solid var(--abw-rule);
  text-align: left;
}
.abw-calendar th:last-child,
.abw-calendar td:last-child {
  border-right: 0;
}
.abw-calendar thead th {
  height: 52px;
  color: var(--abw-muted);
  font-family: "AA Beauty Mono", monospace;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.abw-calendar tbody th {
  width: 100px;
  font-family: "AA Beauty Mono", monospace;
  font-size: 0.76rem;
  font-weight: 400;
}
.abw-calendar .abw-open {
  background: var(--abw-ink);
  color: var(--abw-bg);
}
.abw-calendar .abw-blocked {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.abw-calendar-note {
  width: max-content;
  max-width: 100%;
  margin: 28px 1% 0 auto;
  border-bottom: 1px solid;
  font-family: "AA Beauty Newsreader", Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  font-style: italic;
  line-height: 1.05;
  transform: rotate(-1.2deg);
}

.abw-rules {
  padding: clamp(90px, 11vw, 160px) 0;
  background: var(--abw-inverse);
  color: var(--abw-inverse-ink);
}
.abw-dark-title {
  max-width: 12ch;
}
.abw-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid
    color-mix(in srgb, var(--abw-inverse-ink) 70%, transparent);
  border-bottom: 1px solid
    color-mix(in srgb, var(--abw-inverse-ink) 70%, transparent);
}
.abw-rule {
  min-height: 250px;
  padding: 28px 22px;
  border-right: 1px solid
    color-mix(in srgb, var(--abw-inverse-ink) 45%, transparent);
}
.abw-rule:last-child {
  border-right: 0;
}
.abw-rule span {
  opacity: 0.55;
}
.abw-rule h3 {
  margin: 65px 0 12px;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-stretch: 80%;
  line-height: 1.08;
}
.abw-rule p {
  max-width: 28ch;
  margin: 0;
  color: color-mix(in srgb, var(--abw-inverse-ink) 67%, transparent);
  line-height: 1.55;
}
.abw-rules-note {
  margin: 55px 0 0;
  font-family: "AA Beauty Newsreader", Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.8rem);
  font-style: italic;
}

.abw-boundary {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border-top: 1px solid var(--abw-rule);
  border-bottom: 1px solid var(--abw-rule);
}
.abw-boundary > article {
  min-height: 560px;
  padding: clamp(70px, 7vw, 120px) max(4vw, 24px);
}
.abw-boundary > article + article {
  border-left: 1px solid var(--abw-rule);
}
.abw-boundary > article:first-child {
  background: var(--abw-paper);
}
.abw-boundary > article:last-child {
  background: var(--abw-inverse);
  color: var(--abw-inverse-ink);
}
.abw-boundary > article:last-child .abw-copy,
.abw-boundary > article:last-child .abw-boundary-list li {
  color: color-mix(in srgb, var(--abw-inverse-ink) 68%, transparent);
}
.abw-boundary > article:last-child .abw-boundary-list,
.abw-boundary > article:last-child .abw-boundary-list li {
  border-color: color-mix(in srgb, var(--abw-inverse-ink) 28%, transparent);
}
.abw-boundary > article:last-child .abw-boundary-list span {
  color: var(--abw-inverse-ink);
}
.abw-boundary h2 {
  max-width: 12ch;
  margin: 20px 0 28px;
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
}
.abw-boundary-list {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--abw-rule);
  list-style: none;
}
.abw-boundary-list li {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--abw-rule);
  color: var(--abw-muted);
  line-height: 1.45;
}
.abw-boundary-list span {
  min-width: 2.2rem;
  color: var(--abw-ink);
  font-family: "AA Beauty Mono", monospace;
  font-size: 0.68rem;
}

.abw-evidence {
  padding: clamp(90px, 10vw, 150px) 0;
  border-bottom: 1px solid var(--abw-rule);
  background: var(--abw-paper);
}
.abw-evidence-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 8vw;
}
.abw-evidence h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
  font-stretch: 72%;
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-wrap: balance;
}
.abw-evidence-intro {
  max-width: 58ch;
  margin: 26px 0 0;
  color: var(--abw-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.abw-evidence-list {
  border-top: 2px solid var(--abw-ink);
}
.abw-evidence-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--abw-rule);
}
.abw-evidence-item h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  font-stretch: 80%;
  line-height: 1.1;
}
.abw-evidence-item p {
  max-width: 60ch;
  margin: 0;
  color: var(--abw-muted);
  line-height: 1.6;
}

.abw-flow {
  padding: clamp(90px, 10vw, 150px) 0;
}
.abw-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 2px solid var(--abw-ink);
}
.abw-flow-step {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--abw-rule);
  border-bottom: 1px solid var(--abw-rule);
}
.abw-flow-step:last-child {
  border-right: 0;
}
.abw-flow-step h3 {
  margin: 70px 0 18px;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-stretch: 78%;
  line-height: 1;
}
.abw-flow-step p {
  margin: 0;
  color: var(--abw-muted);
  line-height: 1.6;
}

.abw-faq {
  padding: clamp(90px, 10vw, 150px) 0;
  background: var(--abw-paper);
}
.abw-faq h2 {
  max-width: 11ch;
  margin-bottom: 55px;
}
.abw-faq details {
  border-top: 1px solid var(--abw-rule);
}
.abw-faq details:last-child {
  border-bottom: 1px solid var(--abw-rule);
}
.abw-faq summary {
  position: relative;
  padding: 26px 56px 26px 0;
  cursor: pointer;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 650;
  list-style: none;
}
.abw-faq summary::-webkit-details-marker {
  display: none;
}
.abw-faq summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  font-family: "AA Beauty Mono", monospace;
  font-weight: 400;
}
.abw-faq details[open] summary::after {
  content: "−";
}
.abw-faq-answer {
  max-width: 70ch;
  padding: 0 0 28px;
  color: var(--abw-muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.abw-related {
  padding: clamp(80px, 9vw, 130px) 0;
}
.abw-related h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
}
.abw-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--abw-ink);
}
.abw-related a {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border-right: 1px solid var(--abw-rule);
  border-bottom: 1px solid var(--abw-rule);
  color: var(--abw-ink);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.abw-related a:last-child {
  border-right: 0;
}
.abw-related a:hover,
.abw-related a:focus-visible {
  background: var(--abw-ink);
  color: var(--abw-bg);
}
.abw-related strong {
  max-width: 16ch;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-stretch: 80%;
  line-height: 1.08;
}

.abw-close {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--abw-inverse);
  color: var(--abw-inverse-ink);
}
.abw-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: 8vw;
}
.abw-close h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.6rem, 6.1vw, 6rem);
  font-stretch: 70%;
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-wrap: balance;
}
.abw-close-accent {
  display: block;
  margin-top: 0.14em;
  font-family: "AA Beauty Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 380;
  line-height: 0.9;
}
.abw-close .abw-copy {
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--abw-inverse-ink) 74%, transparent);
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.55;
}
body.aa-beauty-worknote-page .abw-close a.abw-button {
  min-height: 68px;
  padding-inline: 28px;
  border-color: var(--abw-inverse-ink) !important;
  background: var(--abw-inverse-ink) !important;
  color: var(--abw-inverse) !important;
  -webkit-text-fill-color: var(--abw-inverse) !important;
  font-size: 0.84rem !important;
}
body.aa-beauty-worknote-page .abw-close a.abw-button:hover {
  background: transparent !important;
  color: var(--abw-inverse-ink) !important;
  -webkit-text-fill-color: var(--abw-inverse-ink) !important;
}
html:not(.dark):not([data-theme="dark"])
  body.aa-beauty-worknote-page
  .abw-close
  a.abw-button {
  color: var(--abw-inverse) !important;
  -webkit-text-fill-color: var(--abw-inverse) !important;
}
html:not(.dark):not([data-theme="dark"])
  body.aa-beauty-worknote-page
  .abw-close
  a.abw-button:hover {
  color: var(--abw-inverse-ink) !important;
  -webkit-text-fill-color: var(--abw-inverse-ink) !important;
}

@media (min-width: 1024px) {
  .abw-rules .abw-dark-title,
  .abw-faq h2,
  .abw-related h2 {
    max-width: none;
    margin-inline: auto;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(1.9rem, 3.15vw, 3.8rem);
    line-height: 1;
  }
  .abw-faq h2 {
    margin-bottom: 62px;
  }
  .abw-related h2 {
    margin-bottom: 0;
  }
}

@media (max-width: 1023.98px) {
  .abw-shell {
    width: min(100% - 40px, 920px);
  }
  .abw-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .abw-hero-copy {
    min-height: 650px;
    border-right: 0;
    border-bottom: 1px solid var(--abw-rule);
  }
  .abw-note-stage {
    min-height: 510px;
  }
  .abw-rule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .abw-rule:nth-child(2) {
    border-right: 0;
  }
  .abw-rule:nth-child(-n + 2) {
    border-bottom: 1px solid
      color-mix(in srgb, var(--abw-inverse-ink) 45%, transparent);
  }
  .abw-section-head,
  .abw-close-grid,
  .abw-evidence-grid {
    grid-template-columns: 1fr;
  }
  .abw-section-head .abw-copy {
    margin-top: 20px;
  }
  .abw-flow-grid,
  .abw-related-grid {
    grid-template-columns: 1fr;
  }
  .abw-flow-step,
  .abw-related a {
    border-right: 0;
  }
  .abw-close-grid > div:last-child {
    max-width: 620px;
  }
}

@media (max-width: 767.98px) {
  .abw-shell {
    width: min(100% - 32px, 680px);
  }
  .abw-hero-copy {
    min-height: auto;
    padding: 72px 20px 64px;
  }
  .abw-hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.7rem);
    line-height: 0.98;
    text-wrap: pretty;
  }
  .abw-hero-accent {
    font-size: 1em;
    line-height: 0.98;
  }
  .abw-note-stage {
    display: flex;
    min-height: 0;
    gap: 16px;
    overflow-x: auto;
    padding: 38px 18px 46px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--abw-ink) var(--abw-soft);
    scrollbar-width: thin;
  }
  .abw-note-stage::before {
    display: none;
  }
  .abw-note-card,
  .abw-note-card:nth-child(1),
  .abw-note-card:nth-child(2),
  .abw-note-card:nth-child(3),
  .abw-note-card:focus-visible,
  .abw-note-card.is-active {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    flex: 0 0 min(84vw, 360px);
    min-height: 310px;
    transform: none;
    filter: none;
    opacity: 1;
    scroll-snap-align: center;
  }
  .abw-note-detail,
  .abw-note-card:focus-visible .abw-note-detail,
  .abw-note-card.is-active .abw-note-detail {
    display: block;
    margin-top: 14px;
    opacity: 1;
    transform: none;
  }
  .abw-calendar-section,
  .abw-rules,
  .abw-flow,
  .abw-faq,
  .abw-related,
  .abw-close {
    padding-block: 78px;
  }
  .abw-section-head h2,
  .abw-dark-title,
  .abw-boundary h2,
  .abw-evidence h2,
  .abw-faq h2,
  .abw-related h2 {
    font-size: clamp(2.45rem, 11.2vw, 4rem);
    font-stretch: 76%;
    line-height: 0.98;
    overflow-wrap: break-word;
    hyphens: auto;
    text-wrap: pretty;
  }
  .abw-calendar-wrap {
    margin-right: 0;
    overflow: visible;
    border-top: 0;
  }
  .abw-calendar {
    display: block;
    min-width: 0;
  }
  .abw-calendar thead {
    display: none;
  }
  .abw-calendar tbody {
    display: grid;
    gap: 12px;
  }
  .abw-calendar tbody tr {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--abw-rule);
    background: var(--abw-paper);
  }
  .abw-calendar tbody th,
  .abw-calendar tbody td {
    width: auto;
    height: auto;
    min-height: 54px;
    padding: 14px;
    border: 0;
    border-bottom: 1px solid var(--abw-rule);
  }
  .abw-calendar tbody th {
    display: flex;
    grid-row: 1 / 4;
    align-items: center;
    border-right: 1px solid var(--abw-rule);
    border-bottom: 0;
  }
  .abw-calendar tbody td {
    display: grid;
    grid-template-columns: minmax(62px, 0.32fr) minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }
  .abw-calendar tbody td:last-child {
    border-bottom: 0;
  }
  .abw-calendar tbody td::before {
    content: attr(data-label);
    color: var(--abw-muted);
    font-family: "AA Beauty Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .abw-calendar tbody tr:has(.abw-open) {
    border-color: var(--abw-ink);
    background: var(--abw-ink);
    color: var(--abw-bg);
  }
  .abw-calendar tbody tr:has(.abw-open) .abw-open {
    background: transparent;
    color: inherit;
  }
  .abw-calendar tbody tr:has(.abw-open) td::before {
    color: color-mix(in srgb, var(--abw-bg) 65%, transparent);
  }
  .abw-calendar-note {
    width: auto;
    margin: 30px auto 0;
    text-align: center;
    transform: none;
  }
  .abw-rule-grid {
    grid-template-columns: 1fr;
  }
  .abw-rule,
  .abw-rule:nth-child(2) {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid
      color-mix(in srgb, var(--abw-inverse-ink) 45%, transparent);
  }
  .abw-rule:last-child {
    border-bottom: 0;
  }
  .abw-rule h3 {
    margin-top: 42px;
  }
  .abw-boundary {
    grid-template-columns: 1fr;
  }
  .abw-boundary > article {
    min-height: 0;
    padding: 72px 20px;
  }
  .abw-boundary > article + article {
    border-top: 1px solid var(--abw-rule);
    border-left: 0;
  }
  .abw-evidence {
    padding-block: 78px;
  }
  .abw-evidence-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .abw-flow-step {
    min-height: 245px;
    padding-inline: 8px;
  }
  .abw-related a {
    min-height: 190px;
    padding-inline: 8px;
  }
  .abw-close h2 {
    font-size: clamp(3.05rem, 13.5vw, 4.7rem);
    line-height: 0.98;
    overflow-wrap: break-word;
    hyphens: auto;
    text-wrap: pretty;
  }
  .abw-close-accent {
    line-height: 0.98;
  }
  .abw-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .abw-button,
  .abw-note-card,
  .abw-note-detail {
    transition: none !important;
  }
}
