@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2-variations");
}

:root {
  --gh-font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gh-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ntf-white: #ffffff;
  --ntf-black: #0a0a0a;
  --ntf-text: #111111;
  --ntf-muted: #666666;
  --ntf-soft: #f7f7f7;
  --ntf-border: #e5e5e5;
  --ntf-green: #22c55e;
  --ntf-green-soft: #ecfdf3;
  --ntf-danger: #b42318;
  --ntf-container: 1200px;
  --ntf-header-height: 76px;
  --ntf-radius-sm: 8px;
  --ntf-radius-md: 12px;
  --ntf-radius-lg: 20px;
  --ntf-shadow: 0 20px 60px rgba(10, 10, 10, 0.1);
  --ntf-transition: 180ms ease;
  --ntf-z-header: 40;
  --ntf-z-modal: 100;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ntf-header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ntf-white);
  color: var(--ntf-text);
  font-family: var(--gh-font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.ntf-scroll-locked {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

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

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

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

[id] {
  scroll-margin-top: calc(var(--ntf-header-height) + 20px);
}

.ntf-container {
  width: min(100% - 40px, var(--ntf-container));
  margin-inline: auto;
}

.ntf-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--ntf-radius-sm);
  background: var(--ntf-black);
  color: var(--ntf-white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(10, 10, 10, 0.28);
  outline-offset: 3px;
}

.ntf-header {
  position: sticky;
  top: 0;
  z-index: var(--ntf-z-header);
  min-height: var(--ntf-header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--ntf-border);
  backdrop-filter: blur(16px);
}

.ntf-header__inner {
  min-height: var(--ntf-header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.ntf-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.ntf-brand__image {
  width: 184px;
  height: auto;
  display: block;
}

.ntf-header__navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.ntf-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ntf-nav a,
.ntf-footer a,
.ntf-footer button {
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--ntf-transition);
}

.ntf-nav a:hover,
.ntf-nav a:focus-visible,
.ntf-footer a:hover,
.ntf-footer a:focus-visible,
.ntf-footer button:hover,
.ntf-footer button:focus-visible {
  color: var(--ntf-black);
}

.ntf-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ntf-button {
  min-height: 44px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--ntf-radius-md);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    background-color var(--ntf-transition),
    border-color var(--ntf-transition),
    color var(--ntf-transition),
    transform var(--ntf-transition);
}

.ntf-button--primary {
  background: var(--ntf-black);
  border-color: var(--ntf-black);
  color: var(--ntf-white);
}

.ntf-button--primary:hover {
  background: #252525;
  border-color: #252525;
  color: var(--ntf-white);
  transform: translateY(-1px);
}

.ntf-button--secondary {
  background: var(--ntf-white);
  border-color: #d6d6d6;
  color: var(--ntf-black);
}

.ntf-button--secondary:hover {
  background: var(--ntf-soft);
  border-color: #bdbdbd;
}

.ntf-header__actions .ntf-button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 600;
}

.ntf-menu-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  display: none;
  border: 1px solid var(--ntf-border);
  border-radius: var(--ntf-radius-sm);
  background: var(--ntf-white);
  cursor: pointer;
}

.ntf-menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--ntf-black);
  transition: transform var(--ntf-transition), opacity var(--ntf-transition);
}

.ntf-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ntf-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ntf-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ntf-footer {
  padding: 72px 0 24px;
  background: var(--ntf-soft);
  border-top: 1px solid var(--ntf-border);
}

.ntf-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 56px;
}

.ntf-footer__brand p {
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--ntf-muted);
  font-size: 14px;
}

.ntf-footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.ntf-footer__group h2 {
  margin: 0 0 5px;
  color: var(--ntf-black);
  font-size: 14px;
  font-weight: 800;
}

.ntf-footer__group button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ntf-footer__bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--ntf-border);
}

.ntf-footer__bottom p {
  margin: 0;
  color: #777777;
  font-size: 13px;
}

.ntf-consent-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: calc(var(--ntf-z-header) + 1);
  width: min(640px, calc(100% - 48px));
  max-height: calc(100dvh - 48px);
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  column-gap: 16px;
  align-items: start;
  overflow-y: auto;
  border: 1px solid var(--ntf-border);
  border-radius: 18px;
  background: var(--ntf-soft);
  color: var(--ntf-text);
}

.ntf-consent-banner h2 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
}

.ntf-consent-banner > p:not(.ntf-consent-banner__status) {
  margin: 8px 0 0;
  color: var(--ntf-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.ntf-consent-banner a {
  color: var(--ntf-black);
  font-weight: 700;
  text-underline-offset: 3px;
}

.ntf-consent-banner__status {
  margin: 8px 0 0;
  color: var(--ntf-danger);
  font-size: 14px;
  font-weight: 700;
}

.ntf-consent-banner__status:empty {
  display: none;
}

.ntf-consent-banner__actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 8px;
}

.ntf-consent-banner__actions > .ntf-button {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.ntf-consent-banner__preferences {
  min-height: 36px;
  border-color: var(--ntf-black);
  background: transparent;
}

.ntf-consent-banner__preferences:hover {
  border-color: var(--ntf-black);
  background: var(--ntf-white);
}

.ntf-consent-global-status {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: calc(var(--ntf-z-header) + 1);
  width: min(560px, calc(100% - 48px));
  margin: 0;
  padding: 16px;
  border: 1px solid var(--ntf-border);
  border-radius: var(--ntf-radius-md);
  background: var(--ntf-soft);
  color: var(--ntf-danger);
  font-size: 14px;
  font-weight: 700;
}

.ntf-consent-global-status:empty {
  display: none;
}

.ntf-modal {
  position: fixed;
  inset: 0;
  z-index: var(--ntf-z-modal);
  padding: 16px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(10, 10, 10, 0.72);
  opacity: 0;
  transition: opacity var(--ntf-transition);
}

.ntf-modal.is-open {
  opacity: 1;
}

.ntf-modal__dialog {
  position: relative;
  width: min(100%, 600px);
  max-width: 600px;
  max-height: calc(100dvh - 32px);
  padding: 24px;
  overflow-y: auto;
  background: var(--ntf-white);
  border: 1px solid var(--ntf-border);
  border-radius: var(--ntf-radius-lg);
  box-shadow: var(--ntf-shadow);
  transform: translateY(10px);
  transition: transform var(--ntf-transition);
}

.ntf-modal.is-open .ntf-modal__dialog {
  transform: translateY(0);
}

.ntf-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  margin: 0 0 -40px auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--ntf-border);
  border-radius: 50%;
  background: var(--ntf-white);
  color: var(--ntf-black);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  transform: translateX(12px);
}

.ntf-modal__header {
  padding-right: 38px;
}

.ntf-modal__header h2 {
  margin: 0;
  color: var(--ntf-black);
  font-size: clamp(1.75rem, 4vw, 2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.ntf-modal__header p {
  margin: 14px 0 0;
  color: var(--ntf-muted);
}

.ntf-test-form {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.ntf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ntf-field label {
  color: var(--ntf-black);
  font-size: 13px;
  font-weight: 700;
}

.ntf-field input:not([type="checkbox"]),
.ntf-field select {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #d8d8d8;
  border-radius: var(--ntf-radius-sm);
  background: var(--ntf-white);
  color: var(--ntf-black);
  font-size: 0.9375rem;
}

.ntf-field input:not([type="checkbox"]):focus,
.ntf-field select:focus {
  border-color: var(--ntf-black);
  outline: 3px solid rgba(10, 10, 10, 0.08);
}

.ntf-field input[aria-invalid="true"],
.ntf-field select[aria-invalid="true"] {
  border: 2px solid var(--ntf-danger);
  background: #fff7f6;
}

.ntf-field--consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  row-gap: 0;
}

.ntf-field--consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--ntf-black);
}

.ntf-field--consent label {
  color: #444444;
  font-weight: 500;
  line-height: 1.45;
}

.ntf-test-form__submit,
.ntf-test-form__notice,
[data-ntf-turnstile],
[data-ntf-form-status],
[data-ntf-form-success] {
  grid-column: 1 / -1;
}

[data-ntf-turnstile] {
  min-width: 0;
}

[data-ntf-form-status] {
  margin: 0;
  color: var(--ntf-danger);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

[data-ntf-form-status]:not(:empty) {
  padding: 10px 12px;
  border-left: 3px solid var(--ntf-danger);
  background: #fff7f6;
}

[data-ntf-form-success]:not([hidden]) {
  padding: 12px;
  border: 1px solid #a7e3bc;
  border-radius: var(--ntf-radius-sm);
  background: var(--ntf-green-soft);
  color: #176b37;
  font-weight: 700;
  line-height: 1.45;
}

.ntf-test-form__submit {
  width: 100%;
  margin-top: 4px;
}

.ntf-test-form__submit:disabled {
  cursor: not-allowed;
  background: #dedede;
  border-color: #dedede;
  color: #757575;
  transform: none;
}

.ntf-test-form__notice {
  margin: -6px 0 0;
  color: var(--ntf-muted);
  font-size: 12px;
  text-align: center;
}

.ntf-content-shell {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  padding: 80px 0 96px;
}

.ntf-content-header {
  max-width: 780px;
  margin-bottom: 48px;
}

.ntf-content-header h1 {
  margin: 0;
  color: var(--ntf-black);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.ntf-content-header p {
  margin: 18px 0 0;
  color: var(--ntf-muted);
  font-size: 18px;
}

.ntf-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ntf-post-card {
  min-width: 0;
  overflow: hidden;
  background: var(--ntf-white);
  border: 1px solid var(--ntf-border);
  border-radius: var(--ntf-radius-md);
}

.ntf-post-card__image {
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: var(--ntf-soft);
}

.ntf-post-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ntf-post-card__body {
  padding: 22px;
}

.ntf-post-card__meta {
  color: var(--ntf-muted);
  font-size: 12px;
  font-weight: 700;
}

.ntf-post-card h2 {
  margin: 10px 0 0;
  color: var(--ntf-black);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.ntf-post-card h2 a {
  text-decoration: none;
}

.ntf-post-card p {
  margin: 12px 0 0;
  color: var(--ntf-muted);
  font-size: 14px;
}

.ntf-article {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
  padding: 72px 0 96px;
}

.ntf-article__header {
  margin-bottom: 38px;
}

.ntf-article__header h1 {
  margin: 12px 0 0;
  color: var(--ntf-black);
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.ntf-article__meta {
  color: var(--ntf-muted);
  font-size: 13px;
}

.ntf-article__feature-image {
  width: min(100% - 40px, 1120px);
  margin: 0 auto 48px;
  display: block;
  border-radius: var(--ntf-radius-lg);
}

.ntf-article__content {
  color: #242424;
  font-size: 18px;
  line-height: 1.78;
}

.ntf-article__content h2,
.ntf-article__content h3 {
  color: var(--ntf-black);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.ntf-article__content h2 {
  margin: 2.2em 0 0.7em;
  font-size: 32px;
}

.ntf-article__content h3 {
  margin: 1.8em 0 0.6em;
  font-size: 24px;
}

.ntf-article__content a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ntf-article__content img {
  height: auto;
  border-radius: var(--ntf-radius-md);
}

.ntf-glossary {
  width: min(100% - 40px, 960px);
  margin-inline: auto;
  padding: 80px 0 96px;
}

.ntf-glossary__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.ntf-glossary__header h1 {
  margin: 0;
  color: var(--ntf-black);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.ntf-glossary__header p {
  margin: 18px 0 0;
  color: var(--ntf-muted);
  font-size: 18px;
}

.ntf-glossary__alphabet ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.ntf-glossary__alphabet li > a,
.ntf-glossary__alphabet li > span {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  position: relative;
  z-index: 0;
}

.ntf-glossary__alphabet li > a::before,
.ntf-glossary__alphabet li > span::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ntf-border);
  border-radius: var(--ntf-radius-sm);
  background: var(--ntf-soft);
  z-index: -1;
}

.ntf-glossary__alphabet li > a {
  color: var(--ntf-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ntf-glossary__alphabet li > a:hover,
.ntf-glossary__alphabet li > a:focus-visible {
  color: var(--ntf-white);
}

.ntf-glossary__alphabet li > a:hover::before,
.ntf-glossary__alphabet li > a:focus-visible::before {
  border-color: var(--ntf-black);
  background: var(--ntf-black);
}

.ntf-glossary__alphabet li > span {
  color: #9a9a9a;
}

.ntf-glossary__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ntf-glossary__content {
  margin-top: 48px;
}

.ntf-glossary__letter-section {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 32px;
  border-top: 1px solid var(--ntf-border);
}

.ntf-glossary__letter-section h2,
.ntf-glossary__other-section h2 {
  margin: 0;
  color: var(--ntf-black);
  font-size: 32px;
}

.ntf-glossary__letter-section ul,
.ntf-glossary__other-section ul,
.ntf-glossary__fallback-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ntf-glossary-term {
  padding: 0 0 28px;
}

.ntf-glossary-term + .ntf-glossary-term {
  padding-top: 28px;
  border-top: 1px solid var(--ntf-border);
}

.ntf-glossary-term h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.ntf-glossary-term h3 a,
.ntf-glossary-term__back,
.ntf-glossary-term__breadcrumb a {
  color: var(--ntf-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ntf-glossary-term p {
  margin: 10px 0 0;
  color: var(--ntf-muted);
  line-height: 1.65;
}

.ntf-glossary-entry {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
  padding: 72px 0 96px;
}

.ntf-glossary-term__breadcrumb {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ntf-muted);
  font-size: 14px;
}

.ntf-glossary-entry .ntf-article__header p {
  margin: 18px 0 0;
  color: var(--ntf-muted);
  font-size: 18px;
  line-height: 1.6;
}

.ntf-glossary-term__back {
  margin-top: 48px;
  display: inline-block;
}

.gh-content > .kg-width-wide {
  width: min(calc(100vw - 40px), 1040px);
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.gh-content > .kg-width-full {
  width: 100vw;
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.ntf-pagination {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ntf-pagination a {
  font-weight: 700;
  text-decoration: none;
}

.ntf-404 {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: 72px 20px;
  text-align: center;
}

.ntf-404__code {
  margin: 0;
  color: var(--ntf-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.ntf-404 h1 {
  margin: 12px 0 0;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.ntf-404 p {
  max-width: 560px;
  margin: 20px auto 28px;
  color: var(--ntf-muted);
}

@media (max-width: 1100px) {
  .ntf-menu-toggle {
    display: block;
  }

  .ntf-header__navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    margin: 0;
    padding: 20px max(20px, calc((100% - var(--ntf-container)) / 2));
    display: none;
    align-items: stretch;
    background: var(--ntf-white);
    border-bottom: 1px solid var(--ntf-border);
    box-shadow: 0 18px 32px rgba(10, 10, 10, 0.08);
  }

  .ntf-header__navigation.is-open {
    display: block;
  }

  .ntf-nav,
  .ntf-header__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ntf-nav {
    gap: 0;
  }

  .ntf-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #efefef;
    font-size: 16px;
  }

  .ntf-header__actions {
    margin-top: 18px;
    gap: 10px;
  }

  .ntf-footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --ntf-header-height: 68px;
  }

  .ntf-container {
    width: min(100% - 32px, var(--ntf-container));
  }

  .ntf-brand__image {
    width: 153px;
    height: auto;
  }

  .ntf-footer {
    padding-top: 56px;
  }

  .ntf-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ntf-footer__brand {
    grid-column: 1 / -1;
  }

  .ntf-post-grid {
    grid-template-columns: 1fr;
  }

  .ntf-glossary {
    width: min(100% - 32px, 960px);
    padding: 56px 0 72px;
  }

  .ntf-glossary__letter-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .ntf-consent-banner {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    padding: 10px;
    display: block;
  }

  .ntf-consent-global-status {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .ntf-consent-banner__actions {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ntf-consent-banner__actions > .ntf-button,
  .ntf-consent-banner__preferences {
    min-height: 40px;
  }

  .ntf-consent-banner__preferences {
    grid-column: auto;
  }

  .ntf-modal {
    padding: 16px;
  }

  .ntf-modal__dialog {
    width: 100%;
    padding: 20px;
    border-radius: 18px;
  }

  .ntf-modal__header h2 {
    font-size: 1.75rem;
  }

  .ntf-test-form {
    grid-template-columns: 1fr;
  }

  .ntf-test-form > * {
    grid-column: 1;
  }

  .ntf-test-form__submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ntf-footer__grid {
    grid-template-columns: 1fr;
  }

  .ntf-footer__brand {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .ntf-consent-banner__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ntf-consent-banner__preferences {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
