@font-face {
  font-family: "Figtree";
  src: url("./assets/figtree-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("./assets/figtree-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --page-bg: #171715;
  --page-fg: #f6f4ef;
  --accent: #c87546;
  --link: #e1a779;
  --footer-fg: #1d1c1a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--page-fg);
  background: var(--page-bg);
  font-family: "Figtree", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

.site-header {
  min-height: 105px;
  padding: 10px clamp(18px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #142f40;
  background: #ffffff;
}

.brand {
  width: 175px;
  height: 82px;
  display: block;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.home-button {
  min-width: 118px;
  min-height: 56px;
  border: 1px solid #b88a36;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #142f40;
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.home-button:hover,
.home-button:focus-visible {
  color: #ffffff;
  background: #142f40;
  outline: none;
}

.legal-hero {
  width: 100%;
  display: block;
  overflow: hidden;
  background: #111110;
}

.legal-hero img {
  width: 100%;
  max-height: 560px;
  display: block;
  object-fit: cover;
}

.legal-main {
  min-height: 50vh;
  padding: 64px clamp(24px, 8vw, 150px) 88px;
}

.block-content {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.inner-article-page + .inner-article-page {
  margin-top: 48px;
}

.heading-top,
.inner-page-content,
.inner-page-information {
  width: 100%;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 600;
}

h2,
h3,
.info-title {
  margin-bottom: 20px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  font-weight: 600;
}

p,
li {
  font-size: 16px;
}

.info-item + .info-item {
  margin-top: 20px;
}

.desc {
  padding-left: 24px;
}

.desc li + li {
  margin-top: 10px;
}

.alpha {
  list-style-type: lower-alpha;
}

.lower-alpha-list {
  list-style-type: lower-alpha;
}

a {
  color: var(--link);
  overflow-wrap: anywhere;
}

.legal-main a:hover,
.legal-main a:focus-visible {
  color: #ffffff;
}

.mb-1 {
  margin-bottom: 16px;
}

.mb-2 {
  margin-bottom: 32px;
}

.mt-1 {
  margin-top: 16px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-center img {
  width: min(100%, 700px);
  height: auto;
}

.btn {
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent);
}

.w-full {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border: 1px solid #66645f;
  text-align: left;
  vertical-align: top;
}

.legal-footer {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  color: var(--footer-fg);
  background: #ffffff;
  font-size: 13.92px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.legal-footer a {
  color: inherit;
}

.legal-footer a[aria-current="page"] {
  font-weight: 600;
}

@media (max-width: 767px) {
  .site-header {
    min-height: 104px;
    padding: 10px 16px;
  }

  .brand {
    width: 132px;
    height: 76px;
  }

  .home-button {
    min-width: 88px;
    min-height: 52px;
  }

  .legal-hero img {
    max-height: none;
    aspect-ratio: 1;
    object-fit: cover;
  }

  .legal-main {
    padding: 48px 24px 64px;
  }

  .inner-article-page + .inner-article-page {
    margin-top: 38px;
  }

  p,
  li {
    font-size: 15px;
  }

  .desc {
    padding-left: 21px;
  }

  #forms [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

