:root {
    --guide-canvas: #d9e4ea;
    --guide-paper: #faf9f5;
    --guide-white: #ffffff;
    --guide-ink: #142832;
    --guide-soft: #52636b;
    --guide-faint: #6f7b81;
    --guide-line: rgba(20, 40, 50, 0.14);
    --guide-line-strong: rgba(20, 40, 50, 0.26);
    --guide-sand: #dfc9b1;
    --guide-sand-soft: #f0e5d8;
    --guide-lavender: #e8e7f6;
    --guide-sky: #e6f0f4;
    --guide-dark: #142832;
    --guide-dark-soft: #203a46;
    --guide-success: #27634f;
    --guide-warning: #9a5421;
    --guide-radius-xl: 2rem;
    --guide-radius-lg: 1.25rem;
    --guide-radius-md: 0.8rem;
    --guide-shadow: 0 24px 70px rgba(30, 50, 60, 0.15);
    --guide-font: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

body {
    margin: 0;
    background: var(--guide-canvas);
    color: var(--guide-ink);
    font-family: var(--guide-font);
    font-size: 1rem;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-underline-offset: 0.18em;
}

button,
input,
select {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #39789a;
    outline-offset: 4px;
}

::selection {
    background: var(--guide-lavender);
    color: var(--guide-ink);
}

.guide-skip-link {
    position: fixed;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 100;
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    background: var(--guide-dark);
    color: #fff;
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.guide-skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.guide-shell {
    width: min(calc(100% - 3rem), 96rem);
    min-height: calc(100vh - 6rem);
    margin: 3rem auto;
    overflow: clip;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2.25rem;
    background: var(--guide-paper);
    box-shadow: var(--guide-shadow);
}

.guide-container {
    width: min(calc(100% - 3rem), 76rem);
    margin-inline: auto;
}

.guide-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--guide-line);
    background: rgba(250, 249, 245, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.guide-header__inner {
    display: flex;
    min-height: 5.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.guide-brand {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 0.65rem;
    color: var(--guide-ink);
    font-size: 1.06rem;
    font-weight: 760;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.guide-brand img {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.66rem;
}

.guide-brand small {
    display: block;
    color: var(--guide-soft);
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.guide-header__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-header__nav a:not(.guide-button),
.guide-header__nav button {
    border: 0;
    background: transparent;
    color: var(--guide-soft);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 680;
    text-decoration: none;
}

.guide-header__nav a:not(.guide-button):hover,
.guide-header__nav button:hover {
    color: var(--guide-ink);
}

.guide-language {
    display: inline-flex;
    min-height: 2.6rem;
    padding: 0.35rem 0.65rem;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid var(--guide-line-strong);
    border-radius: 999px;
    background: var(--guide-white);
}

.guide-language a {
    padding: 0.2rem 0.32rem;
    border-radius: 999px;
}

.guide-language a[aria-current="page"] {
    background: var(--guide-dark);
    color: #fff;
}

.guide-button {
    display: inline-flex;
    min-height: 2.9rem;
    padding: 0.72rem 1.08rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--guide-dark);
    border-radius: 999px;
    background: transparent;
    color: var(--guide-ink);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 720;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.guide-button:hover {
    transform: translateY(-2px);
}

.guide-button--dark {
    background: var(--guide-dark);
    color: #fff;
}

.guide-button--dark:hover {
    background: var(--guide-dark-soft);
}

.guide-button--light {
    border-color: #fff;
    background: #fff;
    color: var(--guide-ink);
}

.guide-menu-toggle {
    display: none;
}

.guide-layout {
    display: grid;
    width: min(calc(100% - 3rem), 76rem);
    margin: 0 auto;
    align-items: start;
    gap: clamp(2rem, 5vw, 5.5rem);
    grid-template-columns: 15rem minmax(0, 1fr);
}

.guide-sidebar {
    position: sticky;
    top: 7.2rem;
    max-height: calc(100vh - 8.5rem);
    padding: 3.8rem 0 3rem;
    overflow-y: auto;
}

.guide-sidebar__label {
    margin: 0 0 0.9rem;
    color: var(--guide-faint);
    font-size: 0.7rem;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.guide-sidebar ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0.3rem;
    list-style: none;
}

.guide-sidebar li + li {
    margin-top: 1.15rem;
}

.guide-sidebar li li + li {
    margin-top: 0;
}

.guide-sidebar__category {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--guide-ink);
    font-size: 0.78rem;
    font-weight: 760;
}

.guide-sidebar a {
    display: block;
    padding: 0.25rem 0;
    color: var(--guide-soft);
    font-size: 0.83rem;
    line-height: 1.35;
    text-decoration: none;
}

.guide-sidebar a:hover,
.guide-sidebar a[aria-current="page"] {
    color: var(--guide-ink);
    font-weight: 700;
}

.guide-sidebar a[aria-current="page"] {
    padding-inline-start: 0.7rem;
    border-inline-start: 2px solid var(--guide-bronze, #72563c);
}

.guide-content {
    min-width: 0;
    padding: 4.8rem 0 5.5rem;
}

.guide-home-hero {
    display: grid;
    margin-bottom: 3.5rem;
    align-items: end;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.7fr);
}

.guide-eyebrow {
    display: flex;
    margin: 0 0 1rem;
    align-items: center;
    gap: 0.65rem;
    color: #72563c;
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.guide-eyebrow::before {
    width: 1.45rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.guide-home-hero h1,
.guide-article h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    font-weight: 620;
    letter-spacing: -0.07em;
    line-height: 0.95;
    text-wrap: balance;
}

.guide-home-hero__intro {
    max-width: 24rem;
    margin: 0 0 0.3rem auto;
    color: var(--guide-soft);
    font-size: 1.04rem;
}

.guide-search {
    display: flex;
    max-width: 42rem;
    margin: 0 0 4rem;
    align-items: stretch;
    gap: 0.55rem;
}

.guide-search label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.guide-search input {
    min-width: 0;
    flex: 1;
    min-height: 3.3rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--guide-line-strong);
    border-radius: 0.8rem;
    background: var(--guide-white);
    font-size: 0.98rem;
}

.guide-search input::placeholder {
    color: var(--guide-faint);
}

.guide-search button {
    flex: none;
}

.guide-search-results {
    margin: -2.7rem 0 3rem;
    padding: 1rem;
    border: 1px solid var(--guide-line);
    border-radius: var(--guide-radius-md);
    background: var(--guide-white);
}

.guide-search-results[hidden] {
    display: none;
}

.guide-search-results h2 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
}

.guide-search-results ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0.55rem;
    list-style: none;
}

.guide-search-results a {
    display: block;
    padding: 0.7rem;
    border-radius: 0.6rem;
    text-decoration: none;
}

.guide-search-results a:hover {
    background: var(--guide-sky);
}

.guide-search-result__title {
    display: block;
    font-weight: 750;
}

.guide-search-result__summary {
    display: block;
    color: var(--guide-soft);
    font-size: 0.86rem;
}

.guide-search-result__category {
    display: block;
    margin-top: 0.15rem;
    color: var(--guide-faint);
    font-size: 0.72rem;
    font-weight: 700;
}

.guide-home-callout {
    margin: 2rem 0 3.3rem;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border-radius: var(--guide-radius-xl);
    background: var(--guide-lavender);
}

.guide-home-callout h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.guide-home-callout p {
    max-width: 40rem;
    margin: 0 0 1.35rem;
    color: var(--guide-soft);
}

.guide-section-heading {
    display: flex;
    margin: 3.7rem 0 1.25rem;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.guide-section-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.guide-article-grid {
    display: grid;
    gap: 0.85rem;
}

.guide-card {
    display: grid;
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--guide-line);
    border-radius: var(--guide-radius-lg);
    background: var(--guide-white);
    gap: 0.8rem;
    grid-template-columns: 1fr auto;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.guide-card:hover {
    border-color: var(--guide-line-strong);
    box-shadow: 0 0.9rem 2rem rgba(30, 50, 60, 0.08);
    transform: translateY(-2px);
}

.guide-card__body {
    min-width: 0;
}

.guide-card__title {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.14rem;
    font-weight: 760;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.guide-card__summary {
    display: block;
    color: var(--guide-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}

.guide-card__meta,
.guide-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.42rem 0.8rem;
    color: var(--guide-faint);
    font-size: 0.76rem;
    font-weight: 650;
}

.guide-article__details {
    display: grid;
    max-width: 48rem;
    margin: 1.2rem 0 0;
    padding: 0;
    border: 1px solid var(--guide-line);
    border-radius: var(--guide-radius-lg);
    background: var(--guide-white);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
}

.guide-article__details > div {
    min-width: 0;
    padding: 0.95rem 1rem;
}

.guide-article__details > div + div {
    border-left: 1px solid var(--guide-line);
}

.guide-article__details > div:nth-child(n + 3) {
    border-top: 1px solid var(--guide-line);
}

.guide-article__details dt {
    margin-bottom: 0.35rem;
    color: var(--guide-faint);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.guide-article__details dd {
    margin: 0;
    color: var(--guide-ink);
    font-size: 0.88rem;
    line-height: 1.5;
}

.guide-article__details .guide-platforms {
    gap: 0.28rem;
}

.guide-card__arrow {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    align-self: center;
    place-items: center;
    border: 1px solid var(--guide-line);
    border-radius: 50%;
    color: var(--guide-ink);
    font-size: 1.2rem;
}

.guide-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.guide-platform {
    display: inline-flex;
    padding: 0.22rem 0.55rem;
    border: 1px solid var(--guide-line);
    border-radius: 999px;
    background: var(--guide-sand-soft);
    color: var(--guide-ink);
    font-size: 0.7rem;
    font-weight: 720;
    line-height: 1.35;
}

.guide-article__crumbs {
    display: flex;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
    gap: 0.4rem;
    color: var(--guide-faint);
    font-size: 0.82rem;
}

.guide-article__crumbs a {
    color: var(--guide-soft);
}

.guide-article__header {
    margin-bottom: 2rem;
}

.guide-article h1 {
    max-width: 14ch;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.guide-article__summary {
    max-width: 43rem;
    margin: 1.25rem 0 1.1rem;
    color: var(--guide-soft);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.55;
}

.guide-article__body {
    max-width: 48rem;
}

.guide-article__body > :first-child {
    margin-top: 0;
}

.guide-article__body h2 {
    margin: 2.7rem 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.045em;
    line-height: 1.08;
    text-wrap: balance;
}

.guide-article__body h3 {
    margin: 2rem 0 0.5rem;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.guide-article__body p,
.guide-article__body li,
.guide-article__body dd {
    color: #30434c;
}

.guide-article__body a {
    color: #2a6078;
    font-weight: 650;
}

.guide-lead {
    margin: 0 0 1.7rem;
    color: var(--guide-ink) !important;
    font-size: clamp(1.18rem, 2.2vw, 1.5rem);
    line-height: 1.5;
}

.guide-steps {
    display: grid;
    margin: 1rem 0 1.5rem;
    padding: 0;
    counter-reset: guide-step;
    gap: 0.75rem;
    list-style: none;
}

.guide-steps li {
    position: relative;
    min-height: 2.4rem;
    padding: 0.1rem 0 0.1rem 3rem;
    counter-increment: guide-step;
}

.guide-steps li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--guide-dark);
    color: #fff;
    content: counter(guide-step);
    font-size: 0.8rem;
    font-weight: 760;
    place-items: center;
}

.guide-definition-list {
    display: grid;
    margin: 1.2rem 0 1.6rem;
    gap: 0.7rem;
}

.guide-definition-list div {
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--guide-sand);
    border-radius: 0 var(--guide-radius-md) var(--guide-radius-md) 0;
    background: var(--guide-sand-soft);
}

.guide-definition-list dt {
    font-weight: 780;
}

.guide-definition-list dd {
    margin: 0.15rem 0 0;
}

.guide-callout {
    margin: 1.7rem 0;
    padding: 1rem 1.15rem;
    border-left: 4px solid #8daab5;
    border-radius: 0 var(--guide-radius-md) var(--guide-radius-md) 0;
    background: var(--guide-sky);
}

.guide-callout p {
    margin: 0;
}

.guide-callout--tip {
    border-left-color: var(--guide-success);
    background: #e3f0ea;
}

.guide-callout--warning {
    border-left-color: var(--guide-warning);
    background: #f7eadf;
}

.guide-visual {
    max-width: 46rem;
    margin: 2rem 0 2.4rem;
}

.guide-visual__frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--guide-line);
    border-radius: var(--guide-radius-xl);
    background: #111;
    box-shadow: 0 1.4rem 3rem rgba(20, 40, 50, 0.16);
}

.guide-visual__frame img {
    width: 100%;
}

.guide-visual--phone .guide-visual__frame {
    width: min(100%, 23rem);
    margin-inline: auto;
}

.guide-visual--desktop .guide-visual__frame {
    background: var(--guide-white);
}

.guide-marker {
    position: absolute;
    top: var(--guide-marker-y);
    left: var(--guide-marker-x);
    display: grid;
    width: 1.85rem;
    height: 1.85rem;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #a45891;
    box-shadow: 0 0.2rem 0.7rem rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    place-items: center;
    transform: translate(-50%, -50%);
}

.guide-marker--dashboard-1 { top: 19%; left: 50%; }
.guide-marker--dashboard-2 { top: 58%; left: 50%; }
.guide-marker--dashboard-3 { top: 91%; left: 50%; }
.guide-marker--relationships-1 { top: 15%; left: 50%; }
.guide-marker--relationships-2 { top: 50%; left: 48%; }
.guide-marker--relationships-3 { top: 78%; left: 50%; }
.guide-marker--scene-1 { top: 28%; left: 22%; }
.guide-marker--scene-2 { top: 45%; left: 58%; }
.guide-marker--scene-3 { top: 69%; left: 81%; }
.guide-marker--storyboard-1 { top: 18%; left: 50%; }
.guide-marker--storyboard-2 { top: 50%; left: 50%; }
.guide-marker--storyboard-3 { top: 84%; left: 50%; }

.guide-visual__caption {
    margin: 0.75rem 0 0;
    color: var(--guide-soft);
    font-size: 0.88rem;
}

.guide-visual__key {
    display: grid;
    margin: 0.8rem 0 0;
    padding: 0;
    gap: 0.25rem 1rem;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    list-style: none;
}

.guide-visual__key li {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    color: var(--guide-soft);
    font-size: 0.8rem;
}

.guide-visual__key b {
    color: var(--guide-ink);
}

.guide-inline-figure {
    margin: 2rem 0;
    padding: 1.25rem 1.4rem;
    border-radius: var(--guide-radius-lg);
    background: var(--guide-lavender);
}

.guide-inline-figure blockquote {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 560;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.guide-inline-figure figcaption {
    margin-top: 0.65rem;
    color: var(--guide-soft);
    font-size: 0.84rem;
}

.guide-table {
    width: 100%;
    margin: 1.2rem 0 1.7rem;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.guide-table th,
.guide-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--guide-line);
    text-align: left;
    vertical-align: top;
}

.guide-table thead th {
    background: var(--guide-sky);
    font-weight: 760;
}

.guide-table tbody th {
    font-weight: 750;
}

.guide-small-note {
    color: var(--guide-faint) !important;
    font-size: 0.86rem;
}

.guide-related {
    max-width: 48rem;
    margin-top: 3.3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--guide-line);
}

.guide-related h2,
.guide-feedback h2 {
    margin: 0 0 0.8rem;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.guide-related ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0.55rem;
    list-style: none;
}

.guide-related a {
    display: block;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--guide-line);
    border-radius: var(--guide-radius-md);
    background: var(--guide-white);
    text-decoration: none;
}

.guide-related a:hover {
    border-color: var(--guide-line-strong);
    background: var(--guide-sky);
}

.guide-feedback {
    max-width: 48rem;
    margin-top: 3.3rem;
    padding: 1.25rem;
    border-radius: var(--guide-radius-lg);
    background: var(--guide-sand-soft);
}

.guide-feedback__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.guide-feedback__actions button {
    min-width: 5rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--guide-line-strong);
    border-radius: 999px;
    background: var(--guide-white);
    cursor: pointer;
    font-weight: 700;
}

.guide-feedback__actions button:hover,
.guide-feedback__actions button[aria-pressed="true"] {
    border-color: var(--guide-dark);
    background: var(--guide-dark);
    color: #fff;
}

.guide-feedback__thanks[hidden] {
    display: none;
}

.guide-feedback__thanks {
    margin: 0.75rem 0 0;
    color: var(--guide-success);
    font-size: 0.9rem;
    font-weight: 700;
}

.guide-footer {
    padding: 3.2rem 0;
    border-top: 1px solid var(--guide-line);
    background: var(--guide-dark);
    color: #fff;
}

.guide-footer__grid {
    display: grid;
    align-items: start;
    gap: 2rem;
    grid-template-columns: 1fr auto;
}

.guide-footer .guide-brand {
    color: #fff;
}

.guide-footer .guide-brand small,
.guide-footer p,
.guide-footer a:not(.guide-button) {
    color: #c5d1d5;
}

.guide-footer p {
    max-width: 27rem;
    margin: 0.75rem 0 0;
    font-size: 0.86rem;
}

.guide-footer nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 1.2rem;
    list-style: none;
}

.guide-footer nav a {
    font-size: 0.86rem;
    text-decoration: none;
}

.guide-footer nav a:hover {
    color: #fff;
}

.guide-consent {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 50;
    width: min(31rem, calc(100% - 2.5rem));
    padding: 1.15rem;
    border: 1px solid var(--guide-line-strong);
    border-radius: var(--guide-radius-lg);
    background: var(--guide-white);
    box-shadow: 0 1.2rem 3rem rgba(20, 40, 50, 0.2);
}

.guide-consent[hidden] {
    display: none;
}

.guide-consent h2 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    letter-spacing: -0.025em;
}

.guide-consent p {
    margin: 0 0 0.8rem;
    color: var(--guide-soft);
    font-size: 0.86rem;
    line-height: 1.5;
}

.guide-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.guide-consent__actions .guide-button {
    min-height: 2.5rem;
    padding-inline: 0.85rem;
    font-size: 0.82rem;
}

.guide-consent__privacy {
    display: inline-block;
    margin-top: 0.7rem;
    color: #2a6078;
    font-size: 0.78rem;
    font-weight: 650;
}

@media (max-width: 900px) {
    .guide-shell {
        width: min(calc(100% - 1.5rem), 96rem);
        margin: 0.75rem auto;
        border-radius: 1.5rem;
    }

    .guide-container,
    .guide-layout {
        width: min(calc(100% - 2rem), 76rem);
    }

    .guide-header__inner {
        min-height: 4.7rem;
    }

    .guide-header__nav {
        gap: 0.5rem;
    }

    .guide-header__nav > a:not(.guide-button) {
        display: none;
    }

    .guide-menu-toggle {
        display: inline-flex;
        min-height: 2.6rem;
        padding: 0.55rem 0.7rem;
        align-items: center;
        border: 1px solid var(--guide-line-strong);
        border-radius: 999px;
    }

    .guide-layout {
        display: block;
    }

    .guide-sidebar {
        position: static;
        max-height: none;
        padding: 1rem 0 0;
    }

    .guide-sidebar[data-collapsed="true"] .guide-sidebar__content {
        display: none;
    }

    .guide-sidebar__content {
        padding: 1rem;
        border: 1px solid var(--guide-line);
        border-radius: var(--guide-radius-md);
        background: var(--guide-white);
    }

    .guide-sidebar__label {
        display: none;
    }

    .guide-content {
        padding-top: 2.6rem;
    }
}

@media (max-width: 650px) {
    body {
        font-size: 0.96rem;
    }

    .guide-container,
    .guide-layout {
        width: min(calc(100% - 1.25rem), 76rem);
    }

    .guide-header__inner {
        gap: 0.5rem;
    }

    .guide-brand {
        font-size: 0.94rem;
    }

    .guide-brand img {
        width: 2.1rem;
        height: 2.1rem;
    }

    .guide-header__nav .guide-button {
        display: none;
    }

    .guide-language {
        min-height: 2.4rem;
        padding: 0.25rem 0.45rem;
        font-size: 0.8rem;
    }

    .guide-home-hero {
        display: block;
        margin-bottom: 2.2rem;
    }

    .guide-home-hero h1 {
        max-width: 11ch;
        font-size: clamp(2.75rem, 14vw, 4.6rem);
    }

    .guide-home-hero__intro {
        margin: 1.2rem 0 0;
    }

    .guide-search {
        display: grid;
        margin-bottom: 2.8rem;
    }

    .guide-search button {
        width: 100%;
    }

    .guide-card {
        grid-template-columns: 1fr;
    }

    .guide-card__arrow {
        display: none;
    }

    .guide-article h1 {
        max-width: 12ch;
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .guide-article__details {
        grid-template-columns: 1fr;
    }

    .guide-article__details > div + div {
        border-left: 0;
        border-top: 1px solid var(--guide-line);
    }

    .guide-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .guide-footer__grid {
        display: block;
    }

    .guide-footer nav ul {
        justify-content: flex-start;
        margin-top: 1.4rem;
    }

    .guide-consent {
        right: 0.65rem;
        bottom: 0.65rem;
        width: calc(100% - 1.3rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    body {
        background: #fff;
    }

    .guide-shell {
        width: 100%;
        margin: 0;
        border: 0;
        box-shadow: none;
    }

    .guide-header,
    .guide-sidebar,
    .guide-search,
    .guide-feedback,
    .guide-related,
    .guide-consent,
    .guide-footer {
        display: none !important;
    }

    .guide-layout {
        width: 100%;
    }

    .guide-content {
        padding: 0;
    }
}
