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

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%
}

.hd {
  position: relative;
  background: #fff;
  border-bottom: 2px solid #FFC76E;
  box-shadow: 2px 6px 20px 0 #3438391a;
  z-index: 100
}

.hd__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 80px
}

.hd__brand {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #343839 0%, #4a5052 100%);
  padding: 14px 28px;
  margin-left: 28px;
  border-radius: 0 0 10px 0;
  border-right: 4px solid #FFC76E;
  position: relative;
  flex-shrink: 0;
  order: 2
}

.hd__brand-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 6px 3px 6px 3px;
  box-shadow: 2px 3px 5px 0 #3438390d 2px 6px 20px 0 #3438391a;
  padding: 6px
}

.hd__brand-logo-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.hd__brand-name {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 19px;
  font-weight: 700;
  color: #FFC76E;
  letter-spacing: 0;
  line-height: 1.2;
  margin-left: 14px
}

.hd__nav-area {
  display: flex;
  align-items: center;
  flex: 1;
  order: 1;
  padding: 14px 28px
}

.hd__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px;
  flex-wrap: wrap
}

.hd__menu-item {
  position: relative
}

.hd__menu-item:hover .hd__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.hd__menu-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #343839;
  text-decoration: none;
  padding: 14px;
  border-radius: 6px;
  line-height: 1.2;
  transition: background-color .25s ease-in-out, color .25s ease-in-out;
  position: relative;
  min-height: 44px
}

.hd__menu-link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #FFC76E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px
}

.hd__menu-link:hover {
  background: #fff8ee;
  color: #343839
}

.hd__menu-link:hover::after {
  transform: scaleX(1)
}

.hd__menu-link:focus {
  outline: 3px solid;
  outline-color: #FFC76E;
  outline-offset: 2px
}

.hd__menu-link--has-sub {
  gap: 6px
}

.hd__menu-link--has-sub .hd__arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  flex-shrink: 0
}

.hd__submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 3px 10px 10px 10px;
  box-shadow: 2px 8px 60px 0 #3438391f;
  border-top: 3px solid #FFC76E;
  list-style: none;
  margin: 0;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out;
  z-index: 200
}

.hd__submenu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent
}

.hd__submenu-link {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #343839;
  text-decoration: none;
  padding: 14px;
  border-radius: 6px;
  line-height: 1.6;
  transition: background-color .28s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px
}

.hd__submenu-link:hover {
  background: #fff8ee
}

.hd__submenu-link:focus {
  outline: 3px solid #FFC76E;
  outline-offset: 2px
}

.hd__contact-strip {
  display: flex;
  align-items: center;
  order: 3;
  padding: 14px 28px 14px 14px;
  gap: 14px;
  flex-shrink: 0
}

.hd__contact-link {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  color: #343839;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 2px solid #FDD2A5;
  border-radius: 28px;
  line-height: 1.2;
  transition: border-color .3s cubic-bezier(0.4, 0, 0.2, 1), background-color .3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  white-space: nowrap
}

.hd__contact-link:hover {
  border-color: #FFC76E;
  background: #fff8ee
}

.hd__contact-link:focus {
  outline: 3px solid #FFC76E;
  outline-offset: 2px
}

.hd__contact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFC76E;
  flex-shrink: 0
}

@media (max-width: 1024px) {
  .hd__inner {
    flex-wrap: wrap;
    min-height: auto
  }

  .hd__brand {
    order: 1;
    margin-left: 14px;
    border-radius: 0 0 10px 0
  }

  .hd__contact-strip {
    order: 2;
    margin-left: auto
  }

  .hd__nav-area {
    order: 3;
    width: 100%;
    padding: 6px 14px 14px;
    border-top: 1px solid #FDD2A5
  }
}

@media (max-width: 640px) {
  .hd__brand-name {
    font-size: 15px
  }

  .hd__contact-strip {
    padding: 14px
  }

  .hd__menu-link {
    padding: 14px 6px;
    font-size: 15px
  }
}

@media (max-width: 360px) {
  .hd__contact-link span {
    display: none
  }

  .hd__brand {
    margin-left: 6px;
    padding: 14px
  }
}

.ft {
  background: #343839;
  padding: 56px 0 28px;
  position: relative
}

.ft__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 28px
}

.ft__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap
}

.ft__brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0
}

.ft__logo-box {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 6px 3px 6px 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 2px 3px 5px 0 #3438390d 2px 6px 20px 0 #ffc76e1a
}

.ft__logo-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.ft__brand-label {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 19px;
  font-weight: 700;
  color: #FFC76E;
  line-height: 1.2
}

.ft__brand-tagline {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #FDD2A5;
  line-height: 1.6;
  max-width: 220px
}

.ft__links-col {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ft__links-label {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #FFC76E;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0
}

.ft__links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ft__links-link {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #FDD2A5;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .28s ease-in-out, border-color .28s ease-in-out
}

.ft__links-link:hover {
  color: #FFC76E;
  border-bottom-color: #FFC76E
}

.ft__links-link:focus {
  outline: 3px solid #FFC76E;
  outline-offset: 2px;
  border-radius: 3px
}

.ft__contact-col {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ft__contact-label {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #FFC76E;
  line-height: 1.2;
  text-transform: uppercase
}

.ft__contact-email {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  color: #FDD2A5;
  text-decoration: none;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .25s ease-in-out
}

.ft__contact-email:hover {
  color: #FFC76E
}

.ft__contact-email:focus {
  outline: 3px solid #FFC76E;
  outline-offset: 2px;
  border-radius: 3px
}

.ft__contact-addr {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #FDD2A5;
  line-height: 1.6;
  font-style: normal
}

.ft__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #FFC76E 30%, #FDD2A5 70%, transparent 100%);
  opacity: .25
}

.ft__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px
}

.ft__copyright {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  color: #FDD2A5;
  line-height: 1.2;
  opacity: .7
}

.ft__bottom-logo-box {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 2px 3px 5px 0 #ffc76e0d
}

.ft__bottom-logo-box img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block
}

@media (max-width: 1024px) {
  .ft__inner {
    padding: 0 28px
  }
}

@media (max-width: 640px) {
  .ft__inner {
    padding: 0 14px
  }

  .ft__top {
    flex-direction: column;
    gap: 28px
  }

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

@media (max-width: 360px) {
  .ft {
    padding: 28px 0 14px
  }
}

.ck-tray {
  position: fixed;
  bottom: 28px;
  left: 0;
  right: 0;
  margin: auto;
  width: 340px;
  max-width: calc(100vw - 28px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 8px 60px 0 #3438391f 2px 6px 20px 0 #3438391a;
  border-top: 3px solid #FFC76E;
  z-index: 4000;
  display: none;
  padding: 28px;
  transform: translateX(120%);
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck-tray--visible {
  transform: translateX(0)
}

.ck-tray__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px
}

.ck-tray__body {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #343839;
  line-height: 1.6;
  margin-bottom: 14px
}

.ck-tray__detail {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #343839;
  line-height: 1.6;
  margin-bottom: 14px;
  opacity: .75
}

.ck-tray__settings {
  display: none;
  margin-bottom: 14px;
  gap: 14px;
  flex-direction: column
}

.ck-tray__settings--open {
  display: flex
}

.ck-tray__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.ck-tray__toggle-label {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #343839;
  line-height: 1.2
}

.ck-tray__toggle-input {
  width: 36px;
  height: 20px;
  accent-color: #FFC76E;
  cursor: pointer
}

.ck-tray__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.ck-tray__btn {
  flex: 1;
  min-width: 80px;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #343839;
  background: transparent;
  border: 2px solid #FFC76E;
  border-radius: 6px;
  padding: 14px;
  cursor: pointer;
  line-height: 1.2;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  transition: color .25s ease-in-out
}

.ck-tray__btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #FFC76E;
  transition: height .28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.ck-tray__btn:hover::before {
  height: 100%
}

.ck-tray__btn:hover {
  color: #343839
}

.ck-tray__btn span {
  position: relative;
  z-index: 1
}

.ck-tray__btn:focus {
  outline: 3px solid #FFC76E;
  outline-offset: 2px
}

.ck-tray__settings-link {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #343839;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 14px;
  line-height: 1.6
}

.ck-tray__settings-link:focus {
  outline: 3px solid #FFC76E;
  outline-offset: 2px;
  border-radius: 3px
}

.doc-box {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 96px;
  color: #343839
}

.doc-box h1 {
  font-size: 41px;
  line-height: 1.2;
  color: #343839;
  padding-bottom: 14px;
  border-bottom: 3px solid #FFC76E;
  margin-bottom: 28px;
  margin-top: 0
}

.doc-box h2 {
  font-size: 31px;
  line-height: 1.2;
  color: #343839;
  margin-top: 56px;
  margin-bottom: 14px
}

.doc-box h3 {
  font-size: 24px;
  line-height: 1.6;
  color: #343839;
  margin-top: 28px;
  margin-bottom: 14px
}

.doc-box h4 {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin-top: 28px;
  margin-bottom: 6px
}

.doc-box h5 {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin-top: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.doc-box h6 {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin-top: 14px;
  margin-bottom: 6px;
  opacity: .75
}

.doc-box p {
  font-size: 19px;
  line-height: 2;
  color: #343839;
  margin-top: 0;
  margin-bottom: 28px;
  max-width: 72ch
}

.doc-box ul {
  font-size: 19px;
  line-height: 2;
  color: #343839;
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 28px;
  list-style: none
}

.doc-box ol {
  font-size: 19px;
  line-height: 2;
  color: #343839;
  margin-top: 0;
  margin-bottom: 28px;
  padding-left: 28px;
  list-style: none;
  counter-reset: policy-counter
}

.doc-box ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  max-width: 72ch
}

.doc-box ul li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: .85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFC76E;
  transform: translateY(-50%)
}

.doc-box ol li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  max-width: 72ch;
  counter-increment: policy-counter
}

.doc-box ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -14px;
  top: 0;
  font-size: 15px;
  line-height: 2;
  color: #FFC76E;
  font-weight: 700
}

.doc-box ul ul,
.doc-box ol ol,
.doc-box ul ol,
.doc-box ol ul {
  margin-top: 6px;
  margin-bottom: 6px
}

.doc-box em,
.doc-box i {
  font-style: italic;
  color: #343839
}

.doc-box a {
  color: #343839;
  text-decoration: underline;
  text-decoration-color: #FFC76E;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .25s ease-in-out, text-decoration-color .25s ease-in-out
}

.doc-box a:hover {
  color: #FFC76E;
  text-decoration-color: #FDD2A5
}

.doc-box a:focus-visible {
  outline: 2px solid #FFC76E;
  outline-offset: 3px;
  border-radius: 3px
}

.doc-box hr {
  border: none;
  border-top: 2px solid #FDD2A5;
  margin-top: 56px;
  margin-bottom: 56px;
  width: 100%
}

.doc-box div {
  margin-bottom: 28px
}

@media (max-width: 1280px) {
  .doc-box {
    padding: 56px
  }
}

@media (max-width: 1024px) {
  .doc-box {
    padding: 56px 28px
  }

  .doc-box h1 {
    font-size: 31px
  }

  .doc-box h2 {
    font-size: 24px
  }

  .doc-box h3 {
    font-size: 19px
  }
}

@media (max-width: 640px) {
  .doc-box {
    padding: 28px 14px
  }

  .doc-box h1 {
    font-size: 24px
  }

  .doc-box h2 {
    font-size: 19px;
    margin-top: 28px
  }

  .doc-box h3 {
    font-size: 15px
  }

  .doc-box p,
  .doc-box ul,
  .doc-box ol {
    font-size: 15px;
    line-height: 1.6
  }

  .doc-box hr {
    margin-top: 28px;
    margin-bottom: 28px
  }
}

@media (max-width: 360px) {
  .doc-box {
    padding: 14px 6px
  }

  .doc-box h1 {
    font-size: 19px
  }
}

.jrnl-det {
  max-width: 1440px;
  margin: 0 auto;
  background: #fff;
  overflow-x: clip
}

.jrnl-det .breadcrumb-bar {
  padding: 14px 56px;
  background: #fff;
  border-bottom: 1px solid #FFC76E;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.jrnl-det .breadcrumb-bar__link {
  font-size: 15px;
  color: #343839;
  text-decoration: none;
  line-height: 1.6;
  transition: color .25s ease-in-out;
  font-variant: small-caps;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em
}

.jrnl-det .breadcrumb-bar__link:hover {
  color: #FFC76E
}

.jrnl-det .breadcrumb-bar__sep {
  display: flex;
  align-items: center
}

.jrnl-det .breadcrumb-bar__sep svg {
  width: 12px;
  height: 12px;
  stroke: #FFC76E;
  fill: none;
  stroke-width: 2
}

.jrnl-det .breadcrumb-bar__current {
  font-size: 13px;
  color: #FFC76E;
  line-height: 1.6;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .04em
}

.jrnl-det .post-top {
  display: grid;
  grid-template-columns: 1fr 320px;
  min-height: 520px;
  padding: 56px 56px 28px;
  gap: 56px;
  position: relative;
  background: linear-gradient(to bottom, #FDD2A5 0%, #fff 100%)
}

.jrnl-det .post-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0
}

.jrnl-det .post-top__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 28px
}

.jrnl-det .post-top__meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.jrnl-det .post-top__tag {
  font-size: 13px;
  color: #343839;
  background: #FFC76E;
  padding: 6px 14px;
  border-radius: 3px;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2
}

.jrnl-det .post-top__cat {
  font-size: 13px;
  color: #343839;
  border: 1px solid #343839;
  padding: 6px 14px;
  border-radius: 3px;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2
}

.jrnl-det .post-top__readtime {
  font-size: 15px;
  color: #343839;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 6px
}

.jrnl-det .post-top__readtime svg {
  width: 16px;
  height: 16px;
  stroke: #343839;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0
}

.jrnl-det .post-top__views {
  font-size: 15px;
  color: #343839;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 6px
}

.jrnl-det .post-top__views svg {
  width: 16px;
  height: 16px;
  stroke: #343839;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0
}

.jrnl-det .post-top__h1 {
  font-size: 41px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #343839;
  paint-order: stroke fill;
  margin: 0;
  animation: blurIn .4s cubic-bezier(0.4, 0, 0.2, 1) both
}

.jrnl-det .post-top__lead {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0;
  max-width: 640px;
  animation: blurIn .35s cubic-bezier(0.4, 0, 0.2, 1) .1s both
}

.jrnl-det .post-top__img-strip {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 0 #3438391f;
  align-self: stretch;
  animation: blurIn .4s cubic-bezier(0.4, 0, 0.2, 1) .15s both
}

.jrnl-det .post-top__img-strip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at 0% 0%, #fdd2a5b3 0%, transparent 70%);
  pointer-events: none
}

.jrnl-det .post-top__img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.jrnl-det .post-top__corner {
  position: absolute;
  top: 28px;
  left: 56px;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 2
}

.jrnl-det .post-top__corner svg {
  width: 28px;
  height: 28px;
  stroke: #FFC76E;
  fill: none;
  stroke-width: 2
}

@keyframes blurIn {
  from {
    filter: blur(8px);
    opacity: 0
  }

  to {
    filter: blur(0);
    opacity: 1
  }
}

.jrnl-det .post-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  padding: 56px;
  background: #fff;
  position: relative
}

.jrnl-det .post-body__divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #FFC76E 30%, transparent 100%);
  margin-bottom: 28px
}

.jrnl-det .post-body__article {
  min-width: 0;
  animation: blurIn .4s cubic-bezier(0.4, 0, 0.2, 1) .2s both
}

.jrnl-det .post-body__article p {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0 0 28px
}

.jrnl-det .post-body__article h2 {
  font-size: 31px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.2px #343839;
  margin: 28px 0 14px
}

.jrnl-det .post-body__article h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #343839;
  margin: 28px 0 14px
}

.jrnl-det .post-body__article h4 {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 14px 0 6px
}

.jrnl-det .post-body__article del {
  color: #999;
  text-decoration: line-through
}

.jrnl-det .post-body__article ins {
  color: #343839;
  text-decoration: underline;
  text-decoration-color: #FFC76E
}

.jrnl-det .post-body__article table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  box-shadow: 2px 3px 5px 0 #3438390d;
  border-radius: 6px;
  overflow: hidden
}

.jrnl-det .post-body__article th {
  background: #343839;
  color: #FDD2A5;
  padding: 14px;
  text-align: left;
  font-size: 15px;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .04em
}

.jrnl-det .post-body__article td {
  padding: 14px;
  border-bottom: 1px solid #FDD2A5;
  vertical-align: top
}

.jrnl-det .post-body__article tr:last-child td {
  border-bottom: none
}

.jrnl-det .post-body__article caption {
  font-size: 15px;
  color: #343839;
  padding: 6px 0;
  text-align: left;
  font-style: italic
}

.jrnl-det .post-body__article time {
  font-size: 15px;
  color: #343839;
  font-variant: small-caps
}

.jrnl-det .post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: blurIn .4s cubic-bezier(0.4, 0, 0.2, 1) .25s both
}

.jrnl-det .sidebar-card {
  background: linear-gradient(to bottom, #FDD2A5 0%, #fff 100%);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 2px 6px 20px 0 #ffc76e1a;
  position: relative
}

.jrnl-det .sidebar-card__corner {
  position: absolute;
  top: 10px;
  right: 10px;
  pointer-events: none
}

.jrnl-det .sidebar-card__corner svg {
  width: 20px;
  height: 20px;
  stroke: #FFC76E;
  fill: none;
  stroke-width: 2
}

.jrnl-det .sidebar-card__label {
  font-size: 13px;
  color: #343839;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 14px;
  line-height: 1.2
}

.jrnl-det .sidebar-card__tag {
  display: inline-block;
  font-size: 15px;
  color: #343839;
  background: #FFC76E;
  padding: 6px 14px;
  border-radius: 3px;
  line-height: 1.6
}

.jrnl-det .sidebar-card__stat {
  font-size: 41px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #343839;
  margin: 0 0 6px
}

.jrnl-det .sidebar-card__stat-desc {
  font-size: 15px;
  color: #343839;
  line-height: 1.6;
  margin: 0
}

.jrnl-det .sidebar-cta-card {
  background: #343839;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 2px 6px 20px 0 #3438391a;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.jrnl-det .sidebar-cta-card__label {
  font-size: 13px;
  color: #FDD2A5;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2
}

.jrnl-det .sidebar-cta-card__text {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  margin: 0
}

.jrnl-det .sidebar-cta-card__btn {
  display: inline-block;
  font-size: 15px;
  color: #343839;
  background: #FFC76E;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1.2;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .06em;
  position: relative;
  overflow: hidden;
  transition: color .25s ease-in-out;
  text-align: center
}

.jrnl-det .sidebar-cta-card__btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FDD2A5;
  transition: height .35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.jrnl-det .sidebar-cta-card__btn:hover::before {
  height: 100%
}

.jrnl-det .sidebar-cta-card__btn span {
  position: relative;
  z-index: 1
}

.jrnl-det .sidebar-icon-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px
}

.jrnl-det .sidebar-icon-anchor svg {
  width: 96px;
  height: 96px;
  stroke: #FFC76E;
  fill: none;
  stroke-width: 1;
  opacity: .4
}

.jrnl-det .post-bottom {
  background: linear-gradient(to bottom, #FDD2A5 0%, #fff 100%);
  padding: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 0.6fr;
  gap: 56px;
  position: relative
}

.jrnl-det .post-bottom__corner-tl {
  position: absolute;
  top: 14px;
  left: 14px;
  pointer-events: none
}

.jrnl-det .post-bottom__corner-tl svg {
  width: 24px;
  height: 24px;
  stroke: #FFC76E;
  fill: none;
  stroke-width: 2
}

.jrnl-det .post-bottom__label {
  font-size: 13px;
  color: #343839;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  margin: 0 0 14px
}

.jrnl-det .post-bottom__summary {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0 0 28px
}

.jrnl-det .post-bottom__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #343839;
  text-decoration: none;
  border-bottom: 2px solid #FFC76E;
  padding-bottom: 6px;
  transition: color .25s ease-in-out, border-color .25s ease-in-out;
  position: relative
}

.jrnl-det .post-bottom__link-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out
}

.jrnl-det .post-bottom__link:hover .post-bottom__link-arrow {
  opacity: 1;
  transform: translateX(0)
}

.jrnl-det .post-bottom__link:hover {
  color: #FFC76E;
  border-color: #343839
}

.jrnl-det .post-bottom__key-col {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.jrnl-det .post-bottom__key-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 2px 3px 5px 0 #3438390d
}

.jrnl-det .post-bottom__key-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #FFC76E;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center
}

.jrnl-det .post-bottom__key-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: #343839;
  fill: none;
  stroke-width: 2
}

.jrnl-det .post-bottom__key-item-text {
  font-size: 15px;
  color: #343839;
  line-height: 1.6;
  margin: 0
}

.jrnl-det .post-bottom__tag-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start
}

.jrnl-det .post-bottom__tag-col-label {
  font-size: 13px;
  color: #343839;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2
}

.jrnl-det .post-bottom__tag-pill {
  display: inline-block;
  font-size: 15px;
  color: #343839;
  background: #FFC76E;
  padding: 6px 14px;
  border-radius: 28px;
  line-height: 1.6
}

.jrnl-det .post-bottom__tag-pill--outline {
  background: transparent;
  border: 1px solid #343839;
  border-radius: 28px
}

.jrnl-det .post-bottom__divider-line {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 28px 0 0
}

.jrnl-det .post-bottom__divider-line::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #FFC76E;
  flex-shrink: 0
}

.jrnl-det .post-bottom__divider-line::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #FFC76E, transparent);
  margin-left: 6px
}

@media (max-width: 1024px) {
  .jrnl-det .post-top {
    grid-template-columns: 1fr;
    padding: 56px 28px 28px;
    gap: 28px
  }

  .jrnl-det .post-top__img-strip {
    height: 320px;
    width: 100%
  }

  .jrnl-det .post-body {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px
  }

  .jrnl-det .post-bottom {
    grid-template-columns: 1fr 1fr;
    padding: 28px;
    gap: 28px
  }

  .jrnl-det .post-bottom__tag-col {
    grid-column: span 2
  }

  .jrnl-det .breadcrumb-bar {
    padding: 14px 28px
  }
}

@media (max-width: 640px) {
  .jrnl-det .post-top {
    padding: 28px 14px 14px;
    gap: 14px
  }

  .jrnl-det .post-top__h1 {
    font-size: 31px
  }

  .jrnl-det .post-top__lead {
    font-size: 19px
  }

  .jrnl-det .post-body {
    padding: 14px;
    gap: 14px
  }

  .jrnl-det .post-bottom {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px
  }

  .jrnl-det .post-bottom__tag-col {
    grid-column: span 1
  }

  .jrnl-det .breadcrumb-bar {
    padding: 14px
  }
}

@media (max-width: 360px) {
  .jrnl-det .post-top__h1 {
    font-size: 24px
  }

  .jrnl-det .post-top__meta-row {
    gap: 6px
  }
}

.srv {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.srv__schema {
  display: none
}

.srv__lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #343839;
  position: relative
}

.srv__lead-txt {
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1
}

.srv__lead-deco {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  opacity: .09;
  pointer-events: none
}

.srv__lead-deco svg {
  width: 100%;
  height: 100%
}

.srv__lead-kicker {
  font-size: 15px;
  line-height: 1.6;
  color: #FFC76E;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  margin-bottom: 28px;
  display: block
}

.srv__lead-h1 {
  font-size: 70px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #FDD2A5;
  text-stroke: 1.5px #FDD2A5;
  margin: 0 0 28px
}

.srv__lead-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #FFC76E;
  text-decoration: none;
  border-bottom: 1px solid #ffc76e59;
  padding-bottom: 6px;
  transition: color .25s ease-in-out, border-color .25s ease-in-out;
  width: fit-content
}

.srv__lead-action:hover {
  color: #FDD2A5;
  border-color: #FDD2A5
}

.srv__lead-action-arrow {
  display: inline-block;
  width: 16px;
  height: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out
}

.srv__lead-action:hover .srv__lead-action-arrow {
  opacity: 1;
  transform: translateX(0)
}

.srv__lead-img-col {
  position: relative;
  overflow: hidden
}

.srv__lead-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.srv__lead-img-tint {
  position: absolute;
  inset: 0;
  background: #34383973;
  pointer-events: none
}

@media (max-width: 1024px) {
  .srv__lead {
    grid-template-columns: 1fr
  }

  .srv__lead-img-col {
    height: 320px
  }

  .srv__lead-h1 {
    font-size: 41px
  }

  .srv__lead-txt {
    padding: 56px 28px
  }
}

@media (max-width: 640px) {
  .srv__lead-h1 {
    font-size: 31px
  }

  .srv__lead-txt {
    padding: 56px 14px
  }
}

.srv__about {
  background: #fff;
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start
}

.srv__about-label {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .07em;
  margin-bottom: 14px;
  display: block
}

.srv__about-h2 {
  font-size: 41px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1px #343839;
  text-stroke: 1px #343839;
  margin: 0 0 28px
}

.srv__about-para {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin: 0 0 14px
}

.srv__about-para strong {
  font-weight: 700
}

.srv__about-right {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.srv__stat {
  background: linear-gradient(0deg, #FFC76E 0%, #fff 100%);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 2px 6px 20px 0 #3438391a
}

.srv__stat-num {
  font-size: 41px;
  line-height: 1.2;
  color: #343839;
  font-weight: 700;
  display: block
}

.srv__stat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  display: block
}

@media (max-width: 1024px) {
  .srv__about {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px
  }
}

@media (max-width: 640px) {
  .srv__about {
    padding: 56px 14px
  }
}

.srv__process {
  background: #343839;
  padding: 96px 56px;
  position: relative;
  overflow: hidden
}

.srv__process-deco-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.srv__process-diamonds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .06
}

.srv__process-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1
}

.srv__process-h2 {
  font-size: 41px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1px #FDD2A5;
  text-stroke: 1px #FDD2A5;
  margin: 0;
  max-width: 540px
}

.srv__process-note {
  font-size: 15px;
  line-height: 1.6;
  color: #fdd2a5b3;
  max-width: 280px;
  text-align: right
}

.srv__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1
}

.srv__step {
  background: #ffffff0d;
  border-radius: 10px;
  padding: 28px;
  border: 1px solid #fdd2a526;
  transition: background .35s cubic-bezier(0.4, 0, 0.2, 1), border-color .35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.srv__step:hover {
  background: #ffc76e1a;
  border-color: #ffc76e66
}

.srv__step-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  inset: 0;
  background: #ffc76e14;
  border-radius: 10px;
  pointer-events: none
}

.srv__step:hover .srv__step-clip {
  clip-path: inset(0 0% 0 0)
}

.srv__step-num {
  font-size: 31px;
  line-height: 1.2;
  color: #FFC76E;
  font-weight: 700;
  display: block;
  margin-bottom: 14px
}

.srv__step-h4 {
  font-size: 19px;
  line-height: 1.6;
  color: #FDD2A5;
  margin: 0 0 14px
}

.srv__step-p {
  font-size: 15px;
  line-height: 1.6;
  color: #fdd2a5bf;
  margin: 0
}

@media (max-width: 1024px) {
  .srv__steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .srv__process {
    padding: 56px 28px
  }

  .srv__process-top {
    flex-direction: column;
    align-items: flex-start
  }

  .srv__process-note {
    text-align: left
  }
}

@media (max-width: 640px) {
  .srv__steps {
    grid-template-columns: 1fr
  }

  .srv__process {
    padding: 56px 14px
  }
}

.srv__expert {
  background: linear-gradient(0deg, #FFC76E 0%, #fff 100%);
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start
}

.srv__expert-img-wrap {
  position: relative
}

.srv__expert-portrait-box {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 8px 60px 0 #3438391f;
  margin-bottom: 28px
}

.srv__expert-portrait-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.srv__expert-img-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.srv__img-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 180px;
  box-shadow: 2px 6px 20px 0 #3438391a;
  cursor: default
}

.srv__img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv__img-card:hover img {
  transform: scale(1.04)
}

.srv__img-caption {
  position: absolute;
  inset: 0;
  background: #343839b8;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .35s ease-in-out;
  border-radius: 10px
}

.srv__img-card:hover .srv__img-caption {
  opacity: 1
}

.srv__img-caption-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #FDD2A5
}

.srv__expert-right {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.srv__expert-h2 {
  font-size: 41px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1px #343839;
  text-stroke: 1px #343839;
  margin: 0
}

.srv__expert-bio {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.srv__expert-name {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  font-weight: 700
}

.srv__expert-role {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  opacity: .7
}

.srv__expert-body {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.srv__expert-p {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin: 0
}

.srv__expert-p strong {
  font-weight: 700
}

.srv__topics {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.srv__topic-item {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  padding: 6px 14px;
  background: #3438390f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 14px
}

.srv__topic-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFC76E;
  flex-shrink: 0
}

.srv__enroll-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  text-decoration: none;
  border-bottom: 1px solid #34383959;
  padding-bottom: 6px;
  width: fit-content;
  transition: color .25s ease-in-out, border-color .25s ease-in-out
}

.srv__enroll-link:hover {
  color: #FFC76E;
  border-color: #FFC76E
}

.srv__enroll-arrow {
  display: inline-block;
  width: 16px;
  height: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out
}

.srv__enroll-link:hover .srv__enroll-arrow {
  opacity: 1;
  transform: translateX(0)
}

@media (max-width: 1024px) {
  .srv__expert {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px
  }

  .srv__expert-img-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap
  }

  .srv__expert-portrait-box {
    margin-bottom: 0;
    width: 140px;
    height: 140px
  }

  .srv__expert-img-gallery {
    flex-direction: row;
    flex: 1
  }

  .srv__img-card {
    flex: 1;
    min-width: 120px
  }
}

@media (max-width: 640px) {
  .srv__expert {
    padding: 56px 14px
  }

  .srv__expert-img-wrap {
    flex-direction: column
  }

  .srv__expert-img-gallery {
    flex-direction: column;
    width: 100%
  }

  .srv__expert-h2 {
    font-size: 31px
  }
}

@media (max-width: 360px) {
  .srv__lead-h1 {
    font-size: 24px
  }

  .srv__about-h2,
  .srv__process-h2,
  .srv__expert-h2 {
    font-size: 24px
  }
}

.jrnl {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.jrnl .posts-feed {
  padding: 56px 56px 96px
}

.jrnl .feed__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px
}

.jrnl .feed__label-line {
  width: 40px;
  height: 2px;
  background: #FFC76E;
  display: block
}

.jrnl .feed__label-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #343839
}

.jrnl .feed__heading {
  font-size: 41px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #343839;
  text-stroke: 1.5px #343839;
  margin-bottom: 56px;
  max-width: 680px
}

.jrnl .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

.jrnl .post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 6px 20px 0 #3438391a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1), transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.jrnl .post-card:hover {
  box-shadow: 2px 8px 60px 0 #3438391f;
  transform: translateY(-3px)
}

.jrnl .post-card--featured {
  grid-column: 1 / -1;
  flex-direction: row
}

.jrnl .card__img-wrap {
  overflow: hidden;
  flex-shrink: 0
}

.jrnl .post-card--featured .card__img-wrap {
  width: 480px;
  height: 320px
}

.jrnl .post-card:not(.post-card--featured) .card__img-wrap {
  width: 100%;
  height: 220px
}

.jrnl .card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.4);
  transition: filter .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.jrnl .post-card:hover .card__img {
  filter: saturate(1)
}

.jrnl .card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1
}

.jrnl .card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.jrnl .card__tag {
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  background: #FDD2A5;
  border-radius: 3px;
  padding: 6px 14px;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .06em
}

.jrnl .card__category {
  font-size: 15px;
  color: #343839;
  opacity: .6;
  border-radius: 3px;
  padding: 6px 14px;
  border: 1px solid #34383933
}

.jrnl .card__title {
  font-size: 24px;
  line-height: 1.2;
  color: #343839;
  font-weight: 700;
  margin: 0
}

.jrnl .card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  opacity: .75;
  margin: 0
}

.jrnl .card__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #3438391a
}

.jrnl .card__readtime {
  font-size: 15px;
  color: #343839;
  opacity: .55;
  display: flex;
  align-items: center;
  gap: 6px
}

.jrnl .card__readtime-icon {
  width: 14px;
  height: 14px;
  border: 1.5px solid #FFC76E;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.jrnl .card__readtime-icon::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 5px;
  background: #FFC76E;
  transform: translateY(-1px)
}

.jrnl .card__views {
  font-size: 15px;
  color: #343839;
  opacity: .55;
  display: flex;
  align-items: center;
  gap: 6px
}

.jrnl .card__views-icon {
  width: 16px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.jrnl .card__views-icon svg {
  width: 16px;
  height: 10px
}

.jrnl .card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  overflow: hidden
}

.jrnl .card__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #FFC76E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.jrnl .card__link:hover::after {
  transform: scaleX(1)
}

.jrnl .card__link-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out
}

.jrnl .card__link:hover .card__link-arrow {
  opacity: 1;
  transform: translateX(0)
}

.jrnl .card__link-arrow svg {
  width: 14px;
  height: 14px
}

.jrnl .zigzag-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.jrnl .zigzag-divider svg {
  display: block;
  width: 100%
}

.jrnl .intro-strip {
  background: linear-gradient(0deg, #fff 0%, #FDD2A5 100%);
  padding: 96px 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.jrnl .intro-strip__left {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.jrnl .intro-strip__eyebrow {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .08em;
  color: #343839;
  display: flex;
  align-items: center;
  gap: 14px
}

.jrnl .intro-strip__eyebrow::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #FFC76E;
  border-radius: 3px;
  transform: rotate(45deg);
  flex-shrink: 0
}

.jrnl .intro-strip__heading {
  font-size: 41px;
  line-height: 1.2;
  color: #343839;
  margin: 0
}

.jrnl .intro-strip__para {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0
}

.jrnl .intro-strip__para strong {
  font-weight: 700
}

.jrnl .intro-strip__right {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.jrnl .intro-strip__stat-row {
  display: flex;
  flex-direction: row;
  gap: 28px
}

.jrnl .intro-strip__stat {
  flex: 1;
  background: #ffffffb3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 2px 3px 5px 0 #ffc76e0d;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.jrnl .intro-strip__stat-num {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 700;
  color: #343839
}

.jrnl .intro-strip__stat-label {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  opacity: .65
}

.jrnl .intro-strip__note {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  opacity: .7;
  padding: 14px;
  border-top: 1.5px solid #34383926
}

.jrnl .curved-connector {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 28px
}

.jrnl .curved-connector svg {
  width: 100%;
  max-width: 600px
}

.jrnl .topic-band {
  background: #343839;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px
}

.jrnl .topic-band__heading {
  font-size: 31px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #FDD2A5;
  text-stroke: 1.5px #FDD2A5;
  margin: 0;
  max-width: 560px
}

.jrnl .topic-band__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0
}

.jrnl .topic-band__item {
  background: #ffffff0d;
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #fdd2a526;
  transition: background .35s cubic-bezier(0.4, 0, 0.2, 1), border-color .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.jrnl .topic-band__item:hover {
  background: #ffc76e1f;
  border-color: #ffc76e66
}

.jrnl .topic-band__item-mark {
  width: 32px;
  height: 32px;
  background: #FFC76E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.jrnl .topic-band__item-mark svg {
  width: 18px;
  height: 18px
}

.jrnl .topic-band__item-title {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #FDD2A5;
  margin: 0
}

.jrnl .topic-band__item-text {
  font-size: 15px;
  line-height: 1.6;
  color: #fdd2a5bf;
  margin: 0
}

.jrnl .cta-strip {
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  background: #fff;
  position: relative
}

.jrnl .cta-strip__curve {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 56px;
  pointer-events: none
}

.jrnl .cta-strip__curve svg {
  display: block;
  width: 100%
}

.jrnl .cta-strip__heading {
  font-size: 31px;
  line-height: 1.2;
  color: #343839;
  margin: 0;
  max-width: 560px
}

.jrnl .cta-strip__text {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  opacity: .7;
  max-width: 480px;
  margin: 0
}

.jrnl .cta-strip__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid #343839;
  background: #fff;
  color: #343839;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: color .35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none
}

.jrnl .cta-strip__btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #343839;
  transition: height .35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.jrnl .cta-strip__btn:hover::before {
  height: 100%
}

.jrnl .cta-strip__btn:hover {
  color: #FFC76E
}

.jrnl .cta-strip__btn span {
  position: relative;
  z-index: 1
}

.jrnl .cta-strip__kbds {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  opacity: .5;
  font-size: 15px;
  color: #343839
}

@media (max-width: 1024px) {
  .jrnl .posts-feed {
    padding: 56px 28px 96px
  }

  .jrnl .cards-grid {
    grid-template-columns: 1fr
  }

  .jrnl .post-card--featured {
    flex-direction: column
  }

  .jrnl .post-card--featured .card__img-wrap {
    width: 100%;
    height: 260px
  }

  .jrnl .intro-strip {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px
  }

  .jrnl .topic-band {
    padding: 56px 28px
  }

  .jrnl .topic-band__list {
    grid-template-columns: 1fr
  }

  .jrnl .cta-strip {
    padding: 56px 28px
  }
}

@media (max-width: 640px) {
  .jrnl .posts-feed {
    padding: 28px 14px 56px
  }

  .jrnl .feed__heading {
    font-size: 31px
  }

  .jrnl .intro-strip {
    padding: 28px 14px
  }

  .jrnl .intro-strip__heading {
    font-size: 31px
  }

  .jrnl .intro-strip__stat-row {
    flex-direction: column;
    gap: 14px
  }

  .jrnl .topic-band {
    padding: 28px 14px
  }

  .jrnl .cta-strip {
    padding: 56px 14px
  }

  .jrnl .card__body {
    padding: 14px
  }
}

@media (max-width: 360px) {
  .jrnl .feed__heading {
    font-size: 24px
  }

  .jrnl .card__title {
    font-size: 19px
  }
}

.rt {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.rt__title-blk {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  background: linear-gradient(to top, #FFC76E, #fff);
  animation: grad-shift 8s ease-in-out infinite alternate;
  overflow: hidden
}

@keyframes grad-shift {
  0% {
    background: linear-gradient(to top, #FFC76E, #fff)
  }

  50% {
    background: linear-gradient(to top, #FDD2A5, #fff)
  }

  100% {
    background: linear-gradient(to top, #FFC76E, #FDD2A5)
  }
}

.rt__title-blk::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid #3438391f;
  pointer-events: none;
  z-index: 1
}

.rt__title-blk::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid #3438390f;
  pointer-events: none;
  z-index: 1
}

.rt__title-corner {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 2
}

.rt__title-corner svg {
  width: 100%;
  height: 100%
}

.rt__title-corner--bl {
  top: auto;
  bottom: 28px;
  right: auto;
  left: 28px
}

.rt__title-text {
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 3
}

.rt__title-accent {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #343839;
  letter-spacing: -2px;
  display: block
}

.rt__title-h1 {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 700;
  color: #343839;
  margin: 0
}

.rt__title-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  max-width: 480px;
  margin: 0
}

.rt__title-tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #343839;
  border-bottom: 2px solid #FFC76E;
  padding-bottom: 6px
}

.rt__title-img-col {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end
}

.rt__title-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden
}

.rt__title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
  display: block
}

.rt__divider-a {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.rt__divider-a svg {
  display: block;
  width: 100%
}

.rt__nums {
  background: #343839;
  padding: 96px 56px
}

.rt__nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 56px
}

.rt__nums-card {
  background: #ffc76e14;
  border-radius: 10px;
  padding: 28px;
  border-right: 3px solid #FFC76E;
  box-shadow: 2px 3px 5px 0 #ffc76e0d;
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s ease-in-out;
  animation: border-glow 3s ease-in-out infinite
}

.rt__nums-card:nth-child(2) {
  animation-delay: .6s
}

.rt__nums-card:nth-child(3) {
  animation-delay: 1.2s
}

.rt__nums-card:nth-child(4) {
  animation-delay: 1.8s
}

@keyframes border-glow {

  0%,
  100% {
    box-shadow: 2px 3px 5px 0 #ffc76e0d
  }

  50% {
    box-shadow: 2px 6px 20px 0 #ffc76e2e
  }
}

.rt__nums-card:hover {
  box-shadow: 2px 8px 60px 0 #ffc76e1f
}

.rt__nums-num {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #FFC76E;
  display: block
}

.rt__nums-label {
  font-size: 15px;
  line-height: 1.6;
  color: #FDD2A5;
  display: block;
  margin-top: 6px
}

.rt__nums-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #fff;
  margin: 0
}

.rt__nums-hd {
  font-size: 31px;
  line-height: 1.2;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #FFC76E;
  margin: 0 0 28px;
  text-align: center
}

.rt__nums-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center
}

.rt__nums-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 6px 20px 0 #3438391a
}

.rt__nums-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block
}

.rt__nums-txt {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.rt__nums-p {
  font-size: 19px;
  line-height: 1.6;
  color: #fff;
  margin: 0
}

.rt__nums-p strong {
  color: #FFC76E;
  font-weight: 700
}

.rt__divider-b {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #343839
}

.rt__divider-b svg {
  display: block;
  width: 100%
}

.rt__exp {
  background: #fff;
  padding: 96px 56px;
  position: relative
}

.rt__exp-inner {
  max-width: 1200px;
  margin: 0 auto
}

.rt__exp-hd {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #343839;
  margin: 0 0 56px
}

.rt__exp-flow {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
  overflow-x: auto
}

.rt__flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative
}

.rt__flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: #FFC76E;
  z-index: 2
}

.rt__flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -14px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #FFC76E;
  z-index: 3
}

.rt__flow-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFC76E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 900;
  color: #343839;
  flex-shrink: 0;
  box-shadow: 2px 3px 5px 0 #3438390d
}

.rt__flow-txt {
  margin-top: 14px;
  text-align: center;
  padding: 0 6px
}

.rt__flow-name {
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  line-height: 1.6;
  display: block
}

.rt__flow-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0
}

.rt__exp-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px
}

.rt__exp-card {
  border-radius: 10px;
  padding: 28px;
  background: #f5f1ec;
  box-shadow: 2px 3px 5px 0 #3438390d;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 3px solid #FDD2A5;
  transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.rt__exp-card:hover {
  box-shadow: 2px 6px 20px 0 #3438391a
}

.rt__exp-card-lbl {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #343839;
  border-bottom: 2px solid #FFC76E;
  padding-bottom: 6px
}

.rt__exp-card-p {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin: 0
}

.rt__exp-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 56px;
  box-shadow: 2px 6px 20px 0 #3438391a
}

.rt__exp-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block
}

.rt__divider-c {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #fff
}

.rt__divider-c svg {
  display: block;
  width: 100%
}

.rt__cond {
  padding: 96px 56px;
  position: relative;
  overflow: hidden
}

.rt__cond-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.rt__cond-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.rt__cond-overlay {
  position: absolute;
  inset: 0;
  background: #fdd2a5e0;
  z-index: 1
}

.rt__cond-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto
}

.rt__cond-hd {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #343839;
  margin: 0 0 56px
}

.rt__cond-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px
}

.rt__cmp-col {
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.rt__cmp-col--yes {
  background: #ffffffd1;
  box-shadow: 2px 6px 20px 0 #3438391a;
  border-right: 3px solid #FFC76E
}

.rt__cmp-col--no {
  background: #34383912;
  box-shadow: 2px 3px 5px 0 #3438390d;
  border-right: 3px solid #3438394d
}

.rt__cmp-head {
  font-size: 19px;
  font-weight: 700;
  color: #343839;
  line-height: 1.2;
  padding-bottom: 6px;
  border-bottom: 2px solid #FFC76E
}

.rt__cmp-col--no .rt__cmp-head {
  border-bottom-color: #34383940
}

.rt__cmp-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #343839
}

.rt__cmp-icon {
  flex-shrink: 0;
  margin-top: 2px
}

.rt__cond-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start
}

.rt__cond-prof {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #ffffffd1;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 2px 6px 20px 0 #3438391a
}

.rt__cond-portrait {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 2px 3px 5px 0 #3438390d
}

.rt__cond-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.rt__cond-prof-name {
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  text-align: center
}

.rt__cond-prof-role {
  font-size: 15px;
  color: #343839;
  line-height: 1.6;
  text-align: center;
  margin: 0
}

.rt__cond-txt {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.rt__cond-p {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0
}

.rt__cond-p strong {
  font-weight: 700
}

.rt__cond-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  text-decoration: none;
  border-bottom: 2px solid #FFC76E;
  padding-bottom: 6px;
  transition: color .25s ease-in-out, border-color .25s ease-in-out;
  position: relative
}

.rt__cond-link:hover {
  color: #FFC76E;
  border-color: #343839
}

.rt__cond-link-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out
}

.rt__cond-link:hover .rt__cond-link-arrow {
  opacity: 1;
  transform: translateX(0)
}

@media (max-width: 1280px) {
  .rt__nums-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .rt__cond-bottom {
    grid-template-columns: 1fr 1fr 1fr
  }

  .rt__cond-prof {
    grid-column: span 1
  }

  .rt__cond-txt {
    grid-column: span 2
  }
}

@media (max-width: 1024px) {
  .rt__title-blk {
    grid-template-columns: 1fr
  }

  .rt__title-img-col {
    display: none
  }

  .rt__title-text {
    padding: 56px 28px
  }

  .rt__nums {
    padding: 56px 28px
  }

  .rt__nums-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .rt__nums-bottom {
    grid-template-columns: 1fr
  }

  .rt__exp {
    padding: 56px 28px
  }

  .rt__exp-cols {
    grid-template-columns: 1fr 1fr
  }

  .rt__cond {
    padding: 56px 28px
  }

  .rt__cond-compare {
    grid-template-columns: 1fr
  }

  .rt__cond-bottom {
    grid-template-columns: 1fr 1fr
  }

  .rt__cond-prof {
    grid-column: span 1
  }

  .rt__cond-txt {
    grid-column: span 1
  }

  .rt__flow-step:not(:last-child)::after {
    display: none
  }

  .rt__flow-step:not(:last-child)::before {
    display: none
  }

  .rt__exp-flow {
    flex-direction: column;
    gap: 14px
  }

  .rt__flow-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px
  }

  .rt__flow-txt {
    margin-top: 0;
    text-align: left
  }
}

@media (max-width: 640px) {
  .rt__title-accent {
    font-size: 41px
  }

  .rt__title-h1 {
    font-size: 31px
  }

  .rt__title-text {
    padding: 56px 14px
  }

  .rt__nums {
    padding: 56px 14px
  }

  .rt__nums-grid {
    grid-template-columns: 1fr
  }

  .rt__nums-num {
    font-size: 41px
  }

  .rt__exp {
    padding: 56px 14px
  }

  .rt__exp-cols {
    grid-template-columns: 1fr
  }

  .rt__exp-hd {
    font-size: 31px
  }

  .rt__cond {
    padding: 56px 14px
  }

  .rt__cond-hd {
    font-size: 31px
  }

  .rt__cond-bottom {
    grid-template-columns: 1fr
  }

  .rt__cond-prof {
    grid-column: span 1
  }

  .rt__cond-txt {
    grid-column: span 1
  }
}

@media (max-width: 360px) {
  .rt__title-accent {
    font-size: 31px
  }

  .rt__title-h1 {
    font-size: 24px
  }

  .rt__nums-hd {
    font-size: 24px
  }

  .rt__exp-hd {
    font-size: 24px
  }

  .rt__cond-hd {
    font-size: 24px
  }
}

.abt-pg {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
  container-type: inline-size
}

.abt-pg .dot-trail {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center
}

.abt-pg .dot-trail__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFC76E;
  opacity: .5
}

.abt-pg .dot-trail__dot--lg {
  width: 10px;
  height: 10px;
  opacity: .8
}

.abt-pg .dot-trail__dot--sm {
  width: 4px;
  height: 4px;
  opacity: .3
}

.abt-pg .zigzag-divider {
  width: 100%;
  height: 18px;
  display: block;
  overflow: hidden
}

.abt-pg .label-accent {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #343839
}

.abt-pg .pg-lead {
  position: relative;
  padding: 96px 56px;
  background: linear-gradient(to top, #FFC76E 0%, #fff 100%);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  overflow: hidden
}

.abt-pg .pg-lead__deco {
  position: absolute;
  top: 28px;
  right: 56px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  pointer-events: none
}

.abt-pg .pg-lead__deco-col {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.abt-pg .pg-lead__deco-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #343839;
  opacity: .15
}

.abt-pg .pg-lead__left {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.abt-pg .pg-lead__eyebrow {
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .1em
}

.abt-pg .pg-lead__h1 {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #343839;
  margin: 0
}

.abt-pg .pg-lead__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 19px;
  font-weight: 600;
  color: #343839;
  text-decoration: none;
  border-bottom: 2px solid #FFC76E;
  padding-bottom: 6px;
  transition: color .25s ease-in-out, border-color .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-pg .pg-lead__link:hover {
  color: #FFC76E;
  border-color: #343839
}

.abt-pg .pg-lead__link-arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease-in-out, transform .25s ease-in-out
}

.abt-pg .pg-lead__link:hover .pg-lead__link-arrow {
  opacity: 1;
  transform: translateX(0)
}

.abt-pg .pg-lead__right {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.abt-pg .pg-lead__dots-path {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 6px
}

.abt-pg .pg-lead__trail-dot {
  border-radius: 50%;
  background: #FFC76E
}

.abt-pg .pg-lead__trail-dot:nth-child(1) {
  width: 4px;
  height: 4px;
  opacity: .3
}

.abt-pg .pg-lead__trail-dot:nth-child(2) {
  width: 6px;
  height: 6px;
  opacity: .5
}

.abt-pg .pg-lead__trail-dot:nth-child(3) {
  width: 8px;
  height: 8px;
  opacity: .7
}

.abt-pg .pg-lead__trail-dot:nth-child(4) {
  width: 10px;
  height: 10px;
  opacity: .9
}

.abt-pg .pg-lead__trail-dot:nth-child(5) {
  width: 6px;
  height: 6px;
  opacity: .5
}

.abt-pg .pg-lead__trail-dot:nth-child(6) {
  width: 4px;
  height: 4px;
  opacity: .3
}

.abt-pg .pg-lead__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  box-shadow: 2px 6px 20px 0 #3438391a
}

.abt-pg .pg-lead__stat-num {
  font-size: 41px;
  font-weight: 900;
  color: #343839;
  line-height: 1.2
}

.abt-pg .pg-lead__stat-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #FFC76E;
  margin-left: 6px;
  vertical-align: middle
}

.abt-pg .pg-lead__stat-label {
  font-size: 15px;
  color: #343839;
  line-height: 1.6
}

.abt-pg .story-blk {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  position: relative
}

.abt-pg .story-blk__bg-left {
  background: #343839;
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative
}

.abt-pg .story-blk__curl {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  opacity: .08;
  pointer-events: none
}

.abt-pg .story-blk__h2 {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #FFC76E;
  margin: 0
}

.abt-pg .story-blk__eyebrow {
  font-size: 15px;
  font-weight: 700;
  color: #FDD2A5;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .1em
}

.abt-pg .story-blk__para {
  font-size: 19px;
  line-height: 1.6;
  color: #FDD2A5;
  margin: 0
}

.abt-pg .story-blk__para strong {
  color: #FFC76E;
  font-weight: 700
}

.abt-pg .story-blk__right {
  position: relative;
  overflow: hidden
}

.abt-pg .story-blk__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFC76E 0%, #fff 60%);
  z-index: 0
}

.abt-pg .story-blk__img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden
}

.abt-pg .story-blk__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition: filter .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-pg .story-blk__img-wrap:hover .story-blk__img {
  filter: grayscale(0%) contrast(1)
}

.abt-pg .team-blk {
  padding: 96px 56px;
  background: #fff;
  position: relative
}

.abt-pg .team-blk__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 28px
}

.abt-pg .team-blk__h2 {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #343839;
  margin: 0
}

.abt-pg .team-blk__sub {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  max-width: 480px;
  margin: 0
}

.abt-pg .team-blk__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.abt-pg .team-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 6px 20px 0 #3438391a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1), transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-pg .team-card:hover {
  box-shadow: 2px 8px 60px 0 #3438391f;
  transform: translateY(-4px)
}

.abt-pg .team-card__img-wrap {
  aspect-ratio: 5/7;
  overflow: hidden;
  width: 100%
}

.abt-pg .team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(3px) grayscale(30%);
  transition: filter .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-pg .team-card__img-wrap:hover .team-card__img {
  filter: blur(0px) grayscale(0%)
}

.abt-pg .team-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1
}

.abt-pg .team-card__name {
  font-size: 19px;
  font-weight: 700;
  color: #343839;
  margin: 0
}

.abt-pg .team-card__role {
  font-size: 15px;
  color: #343839;
  opacity: .7;
  margin: 0
}

.abt-pg .team-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin: 14px 0 0
}

.abt-pg .team-card--text-only {
  background: linear-gradient(to top, #FDD2A5 0%, #fff 100%);
  justify-content: center
}

.abt-pg .team-card--text-only .team-card__body {
  padding: 56px 28px;
  gap: 14px
}

.abt-pg .team-card__quote {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0;
  font-style: italic
}

.abt-pg .team-blk__deco {
  position: absolute;
  top: 56px;
  right: 56px;
  opacity: .06;
  pointer-events: none
}

.abt-pg .approach-blk {
  position: relative;
  padding: 96px 56px;
  background: linear-gradient(to top, #fff 0%, #FDD2A5 100%);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start
}

.abt-pg .approach-blk__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 28px
}

.abt-pg .approach-blk__h2 {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #343839;
  margin: 0
}

.abt-pg .approach-blk__desc {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0
}

.abt-pg .approach-blk__img-wrap {
  margin-top: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 6px 20px 0 #3438391a
}

.abt-pg .approach-blk__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(4px) grayscale(20%);
  transition: filter .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-pg .approach-blk__img-wrap:hover .approach-blk__img {
  filter: blur(0px) grayscale(0%)
}

.abt-pg .approach-blk__right {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.abt-pg .step-item {
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  box-shadow: 2px 3px 5px 0 #3438390d;
  transition: box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1), transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.abt-pg .step-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #FFC76E;
  opacity: .12;
  transition: height .35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.abt-pg .step-item:hover::before {
  height: 100%
}

.abt-pg .step-item:hover {
  box-shadow: 2px 6px 20px 0 #3438391a;
  transform: translateY(-2px)
}

.abt-pg .step-item__num {
  font-size: 31px;
  font-weight: 900;
  color: #FFC76E;
  line-height: 1.2;
  position: relative;
  z-index: 1
}

.abt-pg .step-item__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1
}

.abt-pg .step-item__h {
  font-size: 19px;
  font-weight: 700;
  color: #343839;
  margin: 0
}

.abt-pg .step-item__p {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin: 0
}

.abt-pg .step-item__p strong {
  font-weight: 700;
  color: #343839
}

.abt-pg .approach-blk__metric-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px
}

.abt-pg .metric-chip {
  flex: 1;
  background: #343839;
  border-radius: 10px;
  padding: 28px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 2px 3px 5px 0 #3438390d
}

.abt-pg .metric-chip__val {
  font-size: 31px;
  font-weight: 900;
  color: #FFC76E;
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px
}

.abt-pg .metric-chip__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid #FFC76E
}

.abt-pg .metric-chip__label {
  font-size: 15px;
  color: #FDD2A5;
  text-align: center;
  line-height: 1.6
}

.abt-pg .approach-blk__curl {
  position: absolute;
  top: 56px;
  right: 56px;
  opacity: .07;
  pointer-events: none
}

@media (max-width: 1024px) {
  .abt-pg .pg-lead {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px
  }

  .abt-pg .pg-lead__h1 {
    font-size: 41px
  }

  .abt-pg .story-blk {
    grid-template-columns: 1fr
  }

  .abt-pg .story-blk__bg-left {
    padding: 56px 28px
  }

  .abt-pg .story-blk__right {
    min-height: 300px
  }

  .abt-pg .story-blk__img-wrap {
    min-height: 300px
  }

  .abt-pg .team-blk {
    padding: 56px 28px
  }

  .abt-pg .team-blk__grid {
    grid-template-columns: 1fr 1fr
  }

  .abt-pg .approach-blk {
    grid-template-columns: 1fr;
    padding: 56px 28px;
    gap: 28px
  }

  .abt-pg .approach-blk__left {
    position: static
  }
}

@media (max-width: 640px) {
  .abt-pg .pg-lead {
    padding: 56px 14px
  }

  .abt-pg .pg-lead__h1 {
    font-size: 31px
  }

  .abt-pg .pg-lead__stat {
    padding: 14px
  }

  .abt-pg .team-blk {
    padding: 56px 14px
  }

  .abt-pg .team-blk__top {
    flex-direction: column;
    align-items: flex-start
  }

  .abt-pg .team-blk__grid {
    grid-template-columns: 1fr
  }

  .abt-pg .approach-blk {
    padding: 56px 14px
  }

  .abt-pg .approach-blk__metric-row {
    flex-direction: column
  }

  .abt-pg .story-blk__bg-left {
    padding: 56px 14px
  }

  .abt-pg .story-blk__h2 {
    font-size: 31px
  }

  .abt-pg .approach-blk__h2 {
    font-size: 31px
  }

  .abt-pg .team-blk__h2 {
    font-size: 31px
  }
}

@media (max-width: 360px) {
  .abt-pg .pg-lead__h1 {
    font-size: 24px
  }

  .abt-pg .pg-lead__stat-num {
    font-size: 31px
  }
}

.ctus {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.ctus__schema {
  display: none
}

.ctus__lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.ctus__lead-left {
  padding: 96px 56px 96px 96px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative
}

.ctus__lead-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #FFC76E 0px, #FFC76E 6px, transparent 6px, transparent 14px)
}

.ctus__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px
}

.ctus__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFC76E;
  animation: dot-pulse 2.4s ease-in-out infinite
}

@keyframes dot-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 #ffc76e80
  }

  50% {
    box-shadow: 0 0 0 7px #ffc76e00
  }
}

.ctus__eyebrow-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #343839
}

.ctus__h1 {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #343839;
  margin: 0
}

.ctus__lead-desc {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0;
  max-width: 440px
}

.ctus__contact-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px
}

.ctus__fact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px
}

.ctus__fact-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #FDD2A5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus__fact-icon svg {
  width: 18px;
  height: 18px
}

.ctus__fact-body {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus__fact-label {
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  text-transform: uppercase;
  font-variant: small-caps;
  line-height: 1.2
}

.ctus__fact-val {
  font-size: 15px;
  line-height: 1.6;
  color: #343839
}

.ctus__fact-val a {
  color: #343839;
  text-decoration: underline;
  text-decoration-color: #FFC76E;
  text-underline-offset: 3px;
  transition: color .25s ease-in-out;
  position: relative
}

.ctus__fact-val a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 10px;
  margin-left: 4px;
  border-right: 2px solid #FFC76E;
  vertical-align: middle;
  transition: width .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus__fact-val a:hover::after {
  width: 8px
}

.ctus__fact-val a:hover {
  color: #FFC76E
}

.ctus__lead-right {
  position: relative;
  overflow: hidden;
  background: #343839
}

.ctus__lead-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative
}

.ctus__lead-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus__lead-img-wrap:hover .ctus__lead-img {
  transform: scale(1.04)
}

.ctus__light-leak {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fdd2a58c 0%, #ffc76e2e 50%, transparent 75%);
  pointer-events: none
}

.ctus__scallop-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0
}

.ctus__scallop-divider svg {
  display: block;
  width: 100%
}

.ctus__form-section {
  background: linear-gradient(to top, #fff 0%, #FDD2A5 100%);
  padding: 96px;
  position: relative
}

.ctus__form-glass {
  background: #ffffffb8;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 10px;
  border: 1px solid #ffc76e47;
  box-shadow: 2px 8px 60px 0 #3438391f;
  padding: 56px;
  max-width: 860px;
  margin: 0 auto;
  position: relative
}

.ctus__form-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: start
}

.ctus__form-heading {
  font-size: 31px;
  line-height: 1.2;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #343839;
  margin: 0 0 14px
}

.ctus__form-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  margin: 0
}

.ctus__priority-box {
  background: #343839;
  border-radius: 10px;
  padding: 28px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.ctus__priority-label {
  font-size: 15px;
  font-weight: 700;
  color: #FFC76E;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .06em
}

.ctus__priority-opts {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus__priority-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .25s ease-in-out
}

.ctus__priority-opt:hover {
  background: #ffc76e1f
}

.ctus__priority-opt input[type="radio"] {
  accent-color: #FFC76E;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0
}

.ctus__priority-opt-text {
  font-size: 15px;
  color: #fff;
  line-height: 1.6
}

.ctus__priority-opt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0
}

.ctus__priority-opt-dot--low {
  background: #FDD2A5
}

.ctus__priority-opt-dot--mid {
  background: #FFC76E
}

.ctus__priority-opt-dot--high {
  background: #e8834a
}

.ctus__priority-opt-dot--urg {
  background: #c0392b
}

.ctus__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.ctus__field-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus__field-group--full {
  grid-column: 1 / -1
}

.ctus__field-label {
  font-size: 15px;
  font-weight: 700;
  color: #343839;
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .05em
}

.ctus__field-input {
  padding: 14px;
  border: 1px solid #34383938;
  border-radius: 6px;
  font-size: 15px;
  color: #343839;
  background: #fff;
  outline: none;
  transition: border-color .28s ease-in-out, box-shadow .28s ease-in-out;
  box-shadow: inset 0 4px 8px 0 #3438390d;
  width: 100%;
  box-sizing: border-box
}

.ctus__field-input::placeholder {
  color: #34383961
}

.ctus__field-input:focus {
  border-color: #FFC76E;
  box-shadow: inset 0 4px 8px 0 #3438390d 2px 6px 20px 0 #ffc76e1a
}

.ctus__field-select {
  padding: 14px;
  border: 1px solid #34383938;
  border-radius: 6px;
  font-size: 15px;
  color: #343839;
  background: #fff;
  outline: none;
  transition: border-color .28s ease-in-out, box-shadow .28s ease-in-out;
  box-shadow: inset 0 4px 8px 0 #3438390d;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23343839' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px
}

.ctus__field-select:focus {
  border-color: #FFC76E;
  box-shadow: inset 0 4px 8px 0 #3438390d 2px 6px 20px 0 #ffc76e1a
}

.ctus__field-textarea {
  padding: 14px;
  border: 1px solid #34383938;
  border-radius: 6px;
  font-size: 15px;
  color: #343839;
  background: #fff;
  outline: none;
  transition: border-color .28s ease-in-out, box-shadow .28s ease-in-out;
  box-shadow: inset 0 4px 8px 0 #3438390d;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 100px
}

.ctus__field-textarea::placeholder {
  color: #34383961
}

.ctus__field-textarea:focus {
  border-color: #FFC76E;
  box-shadow: inset 0 4px 8px 0 #3438390d 2px 6px 20px 0 #ffc76e1a
}

.ctus__privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px
}

.ctus__privacy-check {
  width: 18px;
  height: 18px;
  accent-color: #FFC76E;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px
}

.ctus__privacy-text {
  font-size: 15px;
  line-height: 1.6;
  color: #343839
}

.ctus__privacy-text a {
  color: #343839;
  text-decoration: underline;
  text-decoration-color: #FFC76E;
  text-underline-offset: 3px;
  transition: color .25s ease-in-out
}

.ctus__privacy-text a:hover {
  color: #FFC76E
}

.ctus__submit-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 28px
}

.ctus__submit-btn {
  position: relative;
  padding: 14px 56px;
  border: 2px solid #343839;
  border-radius: 6px;
  background: #343839;
  color: #FFC76E;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1), border-color .28s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-variant: small-caps;
  letter-spacing: .06em
}

.ctus__submit-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #FFC76E;
  transition: bottom .32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.ctus__submit-btn:hover::before {
  bottom: 0
}

.ctus__submit-btn:hover {
  color: #343839;
  border-color: #FFC76E
}

.ctus__submit-btn span {
  position: relative;
  z-index: 1
}

.ctus__submit-btn:focus-visible {
  outline: 3px solid #FFC76E;
  outline-offset: 3px
}

.ctus__submit-note {
  font-size: 15px;
  color: #34383999;
  line-height: 1.6
}

.ctus__form-deco-line {
  position: absolute;
  top: 56px;
  right: 56px;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #FFC76E, #FDD2A5);
  border-radius: 3px
}

@keyframes drop-bounce {
  0% {
    opacity: 0;
    transform: translateY(-40px)
  }

  70% {
    opacity: 1;
    transform: translateY(6px)
  }

  85% {
    transform: translateY(-3px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.ctus__lead-left {
  animation: drop-bounce .55s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ctus__form-glass {
  animation: drop-bounce .65s cubic-bezier(0.4, 0, 0.2, 1) .1s both
}

@media (max-width: 1024px) {
  .ctus__lead {
    grid-template-columns: 1fr
  }

  .ctus__lead-right {
    height: 320px
  }

  .ctus__lead-left {
    padding: 56px
  }

  .ctus__form-section {
    padding: 56px 28px
  }

  .ctus__form-glass {
    padding: 28px
  }

  .ctus__form-top {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {
  .ctus__lead-left {
    padding: 28px
  }

  .ctus__h1 {
    font-size: 31px
  }

  .ctus__fields {
    grid-template-columns: 1fr
  }

  .ctus__form-section {
    padding: 28px 14px
  }

  .ctus__form-glass {
    padding: 28px 14px
  }

  .ctus__submit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }
}

@media (max-width: 360px) {
  .ctus__h1 {
    font-size: 24px
  }

  .ctus__form-heading {
    font-size: 24px
  }

  .ctus__submit-btn {
    padding: 14px 28px;
    font-size: 15px
  }
}

.succ-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 28px;
  background: #fff;
  max-width: 1440px;
  margin: 0 auto
}

.succ-page .succ-card {
  background: #fff;
  border: 1.5px solid #FFC76E;
  border-radius: 10px;
  box-shadow: 2px 8px 60px 0 #3438391f;
  padding: 56px;
  max-width: 560px;
  width: 100%;
  text-align: center
}

.succ-page .succ-card__icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(to top, #FFC76E, #fff);
  box-shadow: 2px 6px 20px 0 #ffc76e1a
}

.succ-page .succ-card__icon-wrap svg {
  display: block
}

.succ-page .succ-card__label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #FFC76E;
  font-weight: 700;
  margin-bottom: 14px;
  display: block
}

.succ-page .succ-card__heading {
  font-size: 31px;
  line-height: 1.2;
  color: #343839;
  font-weight: 700;
  margin: 0 0 14px;
  -webkit-text-stroke: 0
}

.succ-page .succ-card__body {
  font-size: 19px;
  line-height: 1.6;
  color: #343839;
  margin: 0 0 28px
}

.succ-page .succ-card__divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: #FDD2A5;
  margin: 0 auto 28px
}

.succ-page .succ-card__note {
  font-size: 15px;
  line-height: 1.6;
  color: #343839;
  opacity: .72;
  margin: 0 0 28px
}

.succ-page .succ-card__btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1.5px solid #343839;
  background: #343839;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color .25s ease-in-out, border-color .25s ease-in-out;
  z-index: 0
}

.succ-page .succ-card__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #FFC76E;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1
}

.succ-page .succ-card__btn:hover {
  color: #343839;
  border-color: #FFC76E
}

.succ-page .succ-card__btn:hover::before {
  transform: translateY(0)
}

.succ-page .succ-card__btn:focus-visible {
  outline: 2px solid #FFC76E;
  outline-offset: 3px
}

.succ-page .succ-card__btn:active {
  box-shadow: inset 0 6px 10px 0 #3438391a
}

@media (max-width: 640px) {
  .succ-page {
    padding: 56px 14px
  }

  .succ-page .succ-card {
    padding: 28px 14px
  }

  .succ-page .succ-card__heading {
    font-size: 24px
  }
}

@media (max-width: 360px) {
  .succ-page .succ-card__heading {
    font-size: 19px
  }

  .succ-page .succ-card__body {
    font-size: 15px
  }
}