:root {
  --orange: #ff8a25;
  --paper: #f8f8fb;
  --ink: #39344c;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Poppins", "Avenir Next", Avenir, ui-rounded, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  font: inherit;
}

p {
  font-weight: 400;
}

a {
  color: inherit;
}

.page {
  min-height: 100svh;
  background: var(--paper);
}

.intro-screen {
  padding-bottom: clamp(68px, 5.6vw, 84px);
  overflow: hidden;
}

.orange-panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: clamp(330px, 36vw, 456px);
  background: var(--orange);
}

.logo {
  width: min(46vw, 930px);
  min-width: 520px;
  margin-top: clamp(58px, 6.7vw, 42px);
}

.wave-stack {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(110px, 13vw, 205px);
  overflow: hidden;
  pointer-events: none;
}

.wave-layer,
.wave-cutout {
  position: absolute;
  bottom: 0;
  display: block;
  height: 100%;
}

.wave-layer {
  left: 0;
  width: 100%;
  opacity: 0.9;
  will-change: transform;
}

.wave-layer--bright {
  z-index: 1;
  color: #f47d1d;
  animation: wave-drift-right 13s ease-in-out infinite alternate;
}

.wave-layer--light {
  z-index: 2;
  color: #ffa244;
  opacity: 0.82;
  animation: wave-drift-left 10s ease-in-out infinite alternate;
}

.wave-cutout {
  right: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  color: var(--paper);
}

.wave-layer path,
.wave-cutout path {
  fill: currentColor;
}

@keyframes wave-drift-right {
  from {
    transform: translate3d(-2.5%, 0, 0);
  }

  to {
    transform: translate3d(2.5%, 0, 0);
  }
}

@keyframes wave-drift-left {
  from {
    transform: translate3d(2%, 0, 0);
  }

  to {
    transform: translate3d(-3%, 0, 0);
  }
}

.intro-copy {
  width: min(1430px, calc(100% - 72px));
  margin: clamp(54px, 6.3vw, 104px) auto 0;
  text-align: center;
}

.intro-copy p {
  margin: 0 auto;
  max-width: 1060px;
  color: var(--ink);
  font-size: clamp(1.14rem, 1.38vw, 1.58rem);
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: 0;
}

.accent-line {
  display: block;
  width: min(770px, 58vw);
  height: 3px;
  margin: clamp(36px, 3.4vw, 52px) auto 0;
  background: linear-gradient(
    90deg,
    rgba(246, 142, 47, 0),
    rgba(246, 142, 47, 0.86) 50%,
    rgba(246, 142, 47, 0)
  );
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: clamp(28px, 3vw, 42px);
  border: 3px solid var(--orange);
  border-radius: 999px;
  padding: 0 28px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.rekviziti-card {
  width: min(920px, 100%);
  margin: clamp(28px, 3vw, 42px) auto 0;
  border: 1px solid rgba(57, 52, 76, 0.06);
  border-radius: 18px;
  padding: clamp(22px, 2.3vw, 32px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(40, 36, 58, 0.08);
  scroll-margin-top: 24px;
}

.rekviziti-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.12;
}

.rekviziti-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  text-align: left;
}

.rekviziti-card dl > div {
  min-width: 0;
}

.rekviziti-card dt {
  margin: 0 0 4px;
  color: rgba(57, 52, 76, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rekviziti-card dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 500;
  line-height: 1.35;
}

.rekviziti-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 22px;
  border: 2px solid rgba(255, 138, 37, 0.76);
  border-radius: 999px;
  padding: 0 22px;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.rekviziti-copy:hover,
.rekviziti-copy:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(40, 36, 58, 0.08);
  transform: translateY(-1px);
}

.content-section {
  padding: clamp(54px, 5.4vw, 78px) 24px clamp(76px, 7vw, 112px);
  background: #fff;
  text-align: center;
}

.content-section--paper {
  background: var(--paper);
}

.large-events {
  padding-top: clamp(54px, 5.4vw, 78px);
}

.section-line {
  display: block;
  width: min(770px, 58vw);
  height: 3px;
  margin: 0 auto clamp(46px, 5vw, 68px);
  background: linear-gradient(
    90deg,
    rgba(246, 142, 47, 0),
    rgba(246, 142, 47, 0.72) 50%,
    rgba(246, 142, 47, 0)
  );
}

.content-section h2,
.division-section h2 {
  margin: 0 0 clamp(38px, 4vw, 58px);
  color: var(--ink);
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.content-section p {
  width: min(1040px, 100%);
  margin: 0 auto;
  color: #656565;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  white-space: pre-line;
}

.content-section--compact {
  padding-bottom: clamp(58px, 6vw, 90px);
}

.content-section--compact p {
  max-width: 720px;
}

.content-section a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: clamp(22px, 2.3vw, 32px);
  border: 2px solid rgba(255, 138, 37, 0.72);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(40, 36, 58, 0.06);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.content-section .section-link {
  color: var(--ink);
}

.section-link:hover,
.section-link:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 16px 32px rgba(40, 36, 58, 0.1);
  transform: translateY(-1px);
}

.division-section {
  padding: clamp(54px, 5.4vw, 78px) 24px clamp(82px, 8vw, 128px);
  background: var(--paper);
  text-align: center;
}

.division-section--white {
  background: #fff;
}

.division-section > p {
  margin: -18px auto clamp(48px, 5vw, 70px);
  color: var(--ink);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.5;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.division-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 24px 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(40, 36, 58, 0.09);
}

.division-card p {
  min-height: 44px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.25;
}

.division-logo-image {
  display: block;
  width: min(100%, 330px);
  height: 62px;
  object-fit: contain;
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(57, 52, 76, 0.06);
  padding: clamp(44px, 5vw, 74px) 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 0.9fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-copy {
  min-width: 0;
}

.footer-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.footer-logo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: center;
}

.footer-logo-strip img {
  max-height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: clamp(34px, 4vw, 52px) auto 0;
  border-top: 1px solid rgba(57, 52, 76, 0.09);
  padding-top: 22px;
  color: rgba(57, 52, 76, 0.7);
  font-size: 0.82rem;
}

.footer-legal p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-legal a,
.footer-legal button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--orange);
  outline: none;
}

.footer-logo-button,
.modal-close-button,
.modal-zip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.footer-logo-button {
  border: 2px solid var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 138, 37, 0.25);
  cursor: pointer;
}

.logo-modal {
  --bs-modal-width: min(1180px, calc(100vw - 44px));
  color: var(--ink);
  font-family:
    "Poppins", "Avenir Next", Avenir, ui-rounded, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.logo-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(20, 18, 30, 0.22);
}

.logo-modal .modal-header {
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.4vw, 32px);
  border-bottom: 1px solid rgba(57, 52, 76, 0.09);
}

.logo-modal .modal-title {
  color: var(--ink);
  font-size: clamp(1.3rem, 1.55vw, 1.85rem);
  font-weight: 500;
  line-height: 1.1;
}

.modal-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-copy-button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(57, 52, 76, 0.12);
  border-radius: 50%;
  padding: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.modal-copy-button:hover,
.modal-copy-button:focus-visible {
  border-color: rgba(255, 138, 37, 0.7);
  background: rgba(255, 138, 37, 0.07);
  color: var(--orange);
  outline: none;
}

.modal-copy-button i {
  font-size: 1.18rem;
  line-height: 1;
}

.logo-modal .btn-close {
  opacity: 0.46;
}

.logo-modal .modal-body {
  padding: clamp(18px, 2.2vw, 28px);
}

.logo-download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: clamp(14px, 1.5vw, 22px) clamp(16px, 1.8vw, 26px);
}

.logo-download-card {
  min-width: 0;
}

.logo-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin-bottom: 10px;
  border-radius: 7px;
  padding: 12px 14px;
  background: #fafafd;
}

.logo-preview--dark {
  background: #303033;
}

.logo-preview img {
  width: auto;
  max-width: calc(100% - 4px);
  max-height: 30px;
  object-fit: contain;
}

.logo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.logo-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 1px solid rgba(255, 96, 61, 0.18);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 96, 61, 0.08);
  color: #f05b3e;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.logo-modal .modal-footer {
  gap: 10px;
  padding: clamp(16px, 2vw, 24px) clamp(20px, 2.4vw, 32px);
  border-top: 1px solid rgba(57, 52, 76, 0.09);
}

.modal-close-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.modal-zip-button {
  border: 2px solid #f45f44;
  background: #f45f44;
  color: #fff;
  box-shadow: 0 14px 30px rgba(244, 95, 68, 0.2);
}

.cookie-policy-modal {
  --bs-modal-width: min(820px, calc(100vw - 32px));
  color: var(--ink);
  font-family:
    "Poppins", "Avenir Next", Avenir, ui-rounded, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-policy-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(20, 18, 30, 0.22);
}

.cookie-policy-modal .modal-header {
  align-items: flex-start;
  padding: 24px clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(57, 52, 76, 0.09);
}

.policy-kicker {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-policy-modal .modal-title {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
}

.cookie-policy-modal .modal-body {
  padding: clamp(24px, 3vw, 36px);
}

.policy-updated {
  margin: 0 0 26px;
  color: rgba(57, 52, 76, 0.58);
  font-size: 0.78rem;
}

.policy-section + .policy-section {
  margin-top: 28px;
}

.policy-section h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.policy-section p {
  margin: 0;
  color: #656565;
  font-size: 0.92rem;
  line-height: 1.65;
}

.policy-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid rgba(57, 52, 76, 0.09);
  border-radius: 7px;
}

.policy-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: #5f5f65;
  font-size: 0.78rem;
  line-height: 1.45;
}

.policy-table th,
.policy-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(57, 52, 76, 0.08);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: #f7f7fa;
  color: var(--ink);
  font-weight: 700;
}

.policy-table tbody tr:last-child td {
  border-bottom: 0;
}

.policy-table code {
  color: var(--ink);
  font-size: 0.75rem;
}

.policy-modal-footer {
  gap: 10px;
  padding: 18px clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(57, 52, 76, 0.09);
}

.policy-reset-button,
.policy-close-button,
.cookie-policy-button,
.cookie-acknowledge-button {
  min-height: 40px;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.policy-reset-button,
.cookie-policy-button {
  border: 1px solid rgba(57, 52, 76, 0.14);
  background: #fff;
  color: var(--ink);
}

.policy-close-button,
.cookie-acknowledge-button {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1040;
  pointer-events: none;
}

.cookie-notice-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(900px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(57, 52, 76, 0.1);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 54px rgba(30, 27, 43, 0.18);
  pointer-events: auto;
}

.cookie-notice-icon {
  color: var(--orange);
  font-size: 1.55rem;
  line-height: 1;
}

.cookie-notice-copy h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.cookie-notice-copy p {
  margin: 0;
  color: #656565;
  font-size: 0.8rem;
  line-height: 1.5;
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-policy-button:hover,
.cookie-policy-button:focus-visible,
.policy-reset-button:hover,
.policy-reset-button:focus-visible {
  border-color: rgba(255, 138, 37, 0.7);
  color: var(--orange);
  outline: none;
}

.cookie-acknowledge-button:hover,
.cookie-acknowledge-button:focus-visible,
.policy-close-button:hover,
.policy-close-button:focus-visible {
  background: #ed7714;
  color: #fff;
  outline: none;
}

@media (max-width: 900px) {
  .orange-panel {
    height: 320px;
  }

  .logo {
    width: min(72vw, 560px);
    min-width: 0;
    margin-top: 88px;
  }

  .intro-copy {
    width: min(100% - 36px, 720px);
    margin-top: 84px;
  }

  .intro-copy p {
    font-size: clamp(1.08rem, 3.6vw, 1.45rem);
  }

  .content-section,
  .division-section {
    min-height: auto;
    padding-top: 54px;
  }

  .content-section h2,
  .division-section h2 {
    margin-bottom: 34px;
  }

  .content-section p {
    max-width: 720px;
    line-height: 1.18;
  }

  .division-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-logo-strip {
    width: min(560px, 100%);
  }

  .footer-logo-strip img {
    justify-self: center;
  }

  .footer-actions {
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal p,
  .footer-legal nav {
    justify-content: center;
  }

  .cookie-notice-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cookie-notice-actions {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .orange-panel {
    height: 265px;
  }

  .logo {
    width: min(78vw, 360px);
    margin-top: 72px;
  }

  .wave-stack {
    height: 88px;
  }

  .intro-copy {
    width: min(100% - 28px, 440px);
    margin-top: 64px;
  }

  .intro-copy p {
    font-size: clamp(1rem, 4.8vw, 1.2rem);
    line-height: 1.5;
  }

  .accent-line {
    width: 72vw;
    margin-top: 52px;
  }

  .outline-button {
    min-height: 40px;
    margin-top: 26px;
    border-width: 2px;
    padding: 0 22px;
    font-size: 0.95rem;
  }

  .content-section,
  .division-section {
    padding: 46px 18px 88px;
  }

  .section-line {
    width: 72vw;
    margin-bottom: 36px;
  }

  .content-section h2,
  .division-section h2 {
    font-size: clamp(2.5rem, 13vw, 3.45rem);
    margin-bottom: 30px;
  }

  .content-section p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .division-section > p {
    margin-top: -12px;
    margin-bottom: 34px;
  }

  .division-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .division-card {
    min-height: 140px;
  }

  .rekviziti-card {
    padding: 20px;
  }

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

  .footer-logo-strip {
    grid-template-columns: 1fr;
  }

  .footer-logo-button,
  .modal-close-button,
  .modal-zip-button {
    width: 100%;
  }

  .footer-legal nav {
    gap: 14px;
  }

  .logo-modal {
    --bs-modal-width: calc(100vw - 18px);
  }

  .logo-download-grid {
    grid-template-columns: 1fr;
  }

  .logo-modal .modal-footer {
    justify-content: center;
  }

  .cookie-policy-modal {
    --bs-modal-width: calc(100vw - 18px);
  }

  .cookie-notice {
    right: 9px;
    bottom: 9px;
    left: 9px;
  }

  .cookie-notice-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .cookie-notice-icon {
    display: none;
  }

  .cookie-notice-actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-policy-button,
  .cookie-acknowledge-button {
    width: 100%;
  }

  .policy-modal-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .policy-reset-button,
  .policy-close-button {
    width: 100%;
  }

  .policy-table-wrap {
    overflow: visible;
    border: 0;
  }

  .policy-table {
    min-width: 0;
  }

  .policy-table thead {
    display: none;
  }

  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .policy-table tr {
    border: 1px solid rgba(57, 52, 76, 0.09);
    border-radius: 7px;
    padding: 10px 12px;
  }

  .policy-table tr + tr {
    margin-top: 10px;
  }

  .policy-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    border: 0;
    padding: 5px 0;
  }

  .policy-table td::before {
    color: var(--ink);
    font-weight: 700;
  }

  .policy-table td:nth-child(1)::before {
    content: "Nosaukums";
  }

  .policy-table td:nth-child(2)::before {
    content: "Veids";
  }

  .policy-table td:nth-child(3)::before {
    content: "Nolūks";
  }

  .policy-table td:nth-child(4)::before {
    content: "Termiņš";
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-layer {
    animation: none;
  }
}
