.popt {
  --popt-bg: #010409;
  --popt-fg: #fff;
  --popt-mut: #c8c8c8;
  --popt-acc: #a3c618;
  --popt-max: 1600px;
  --popt-font: "Finlandica Text", "Finlandica", sans-serif;
  background: var(--popt-bg);
  color: var(--popt-fg);
  font-family: var(--popt-font);
  padding: 32px 0 56px;
}

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

.popt-in {
  width: 100%;
  max-width: var(--popt-max);
  margin: 0 auto;
  padding: 0 16px;
}

.popt-box {
  position: relative;
  min-height: 32px;
}

.popt-txt {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.popt-txt,
.popt-txt p,
.popt-txt em,
.popt-txt span,
.popt-txt strong,
.popt-txt b,
.popt-txt li,
.popt-txt h1,
.popt-txt h2,
.popt-txt h3,
.popt-txt h4 {
  color: #fff !important;
}

.popt-txt.is-clip {
  max-height: 180px;
}

.popt-txt.is-fold::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(1, 4, 9, 0) 0%, var(--popt-bg) 88%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.popt-txt.is-clip::after {
  opacity: 1;
}

.popt-txt h1,
.popt-txt h2,
.popt-txt h3,
.popt-txt h4 {
  margin: 0 0 16px;
  color: var(--popt-fg);
  font-weight: 600;
  line-height: 1.25;
}

.popt-txt h1,
.popt-txt h2 {
  font-size: clamp(24px, 2.2vw, 32px);
}

.popt-txt h3 {
  margin-top: 24px;
  font-size: 18px;
}

.popt-txt p {
  margin: 0 0 14px;
}

.popt-txt ul,
.popt-txt ol {
  margin: 0 0 14px;
  padding: 0 0 0 20px;
}

.popt-txt li {
  margin: 0 0 6px;
}

.popt-txt a {
  color: var(--popt-acc);
  text-decoration: none;
}

.popt-txt a:hover,
.popt-txt a:focus-visible {
  text-decoration: underline;
}

.popt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 20px auto 0;
  padding: 12px 28px;
  border: 0;
  border-radius: 8px;
  background: var(--popt-acc);
  color: #151d05;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.popt-btn:hover,
.popt-btn:focus-visible {
  background: #b5d62a;
}

.popt-btn[hidden] {
  display: none;
}

.popt-lock {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(204, 0, 0, 0.3);
  text-align: center;
}

.popt-lock span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -24px;
  color: #fff;
  font: bold 48px Arial, sans-serif;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .popt {
    padding: 24px 0 40px;
  }

  .popt-txt {
    font-size: 15px;
  }
}
