@import "https://cdn.jsdelivr.net/npm/@fontsource/public-sans@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/public-sans@latest/700.css";

html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Public Sans', sans-serif
}

.hd-bar {
  background-color: #646464;
  width: 100%
}

.hd-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 100px
}

.hd-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 16px 0
}

.hd-brand__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-top: 2px solid #51908b8c;
  border-bottom: 2px solid #51908b8c;
  border-radius: 12px;
  background-color: #ffffff1a;
  box-shadow: 0 3px 2px -1px #51908b12 0 4px 14px -1px #51908b14;
  padding: 8px
}

.hd-brand__box img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block
}

.hd-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 32px
}

.hd-tag {
  font-size: 14px;
  line-height: 1.4;
  color: #CFCECE;
  letter-spacing: .08em;
  font-family: 'Public Sans', sans-serif;
  margin-bottom: 12px;
  text-transform: uppercase
}

.hd-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center
}

.hd-nav__lnk {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  min-height: 44px
}

.hd-nav__lnk:hover,
.hd-nav__lnk:focus {
  background-color: #51908b38;
  color: #CFCECE;
  outline: none
}

.hd-nav__lnk:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 2px
}

.hd-nav__lnk i {
  font-size: 17px;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.hd-nav__lnk:hover i {
  transform: translateX(4px)
}

.hd-accent {
  display: flex;
  align-items: center;
  padding: 16px 0 16px 32px;
  flex-shrink: 0
}

.hd-accent__pill {
  background-color: #51908b2e;
  border: 1px solid #51908b66;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.hd-accent__pill span {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #CFCECE;
  letter-spacing: .04em
}

.hd-accent__pill i {
  font-size: 17px;
  color: #51908B
}

@media (max-width: 960px) {
  .hd-bar__inner {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
    min-height: auto
  }

  .hd-mid {
    padding: 0;
    order: 3;
    flex-basis: 100%
  }

  .hd-accent {
    padding: 0;
    order: 2;
    margin-left: auto;
    align-items: flex-start;
    padding-top: 16px
  }

  .hd-brand {
    order: 1;
    padding: 0;
    padding-top: 4px
  }

  .hd-nav {
    padding-bottom: 8px
  }
}

@media (max-width: 480px) {
  .hd-accent {
    display: none
  }

  .hd-brand__box {
    width: 72px;
    height: 72px
  }

  .hd-brand__box img {
    width: 56px;
    height: 56px
  }

  .hd-nav__lnk {
    font-size: 14px;
    padding: 8px 12px
  }
}

.ft-base {
  background-color: #3a4a49;
  width: 100%
}

.ft-base__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start
}

.ft-left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ft-desc {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #CFCECE;
  max-width: 420px
}

.ft-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft-links__label {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #51908B;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.ft-links__lnk {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #CFCECE;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .32s ease-in-out;
  width: fit-content;
  min-height: 44px
}

.ft-links__lnk:hover,
.ft-links__lnk:focus {
  color: #fff;
  outline: none
}

.ft-links__lnk:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 2px;
  border-radius: 2px
}

.ft-links__lnk i {
  font-size: 15px;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ft-links__lnk:hover i {
  transform: translateX(4px)
}

.ft-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.ft-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-top: 2px solid #cfcece40;
  border-bottom: 2px solid #cfcece40;
  border-radius: 12px;
  background-color: #ffffff14;
  box-shadow: 0 3px 2px -1px #51908b12 0 9px 40px -1px #51908b24;
  padding: 8px
}

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

.ft-copy {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #cfcecea6;
  text-align: center;
  letter-spacing: .02em
}

.ft-divider {
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;
  background-color: #cfcece1f;
  margin-left: 32px;
  margin-right: 32px
}

.ft-contact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px 32px
}

.ft-contact__lnk {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #cfcece8c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .32s ease-in-out
}

.ft-contact__lnk:hover,
.ft-contact__lnk:focus {
  color: #CFCECE;
  outline: none
}

.ft-contact__lnk:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 2px;
  border-radius: 2px
}

.ft-contact__lnk i {
  font-size: 15px
}

@media (max-width: 960px) {
  .ft-base__inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ft-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px
  }

  .ft-copy {
    text-align: left
  }
}

@media (max-width: 480px) {
  .ft-base__inner {
    padding: 32px 16px 16px
  }

  .ft-contact {
    padding: 12px 16px 24px
  }

  .ft-divider {
    margin-left: 16px;
    margin-right: 16px
  }
}

.ck-card {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 8000;
  width: 320px;
  max-width: calc(100vw - 48px);
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px -1px #64646414 0 9px 40px -1px #64646424;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  overflow: hidden
}

.ck-card--vis {
  display: flex
}

.ck-card__hdl {
  font-family: 'Public Sans', sans-serif;
  font-size: 17px;
  line-height: 1.4;
  color: #2d2d2d;
  font-weight: 700
}

.ck-card__txt {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #646464
}

.ck-card__txt a {
  color: #51908B;
  text-decoration: underline;
  transition: color .32s ease-in-out
}

.ck-card__txt a:hover {
  color: #3a6e69
}

.ck-card__txt a:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 2px;
  border-radius: 2px
}

.ck-card__acts {
  display: flex;
  gap: 16px;
  align-items: center
}

.ck-card__ok {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #51908B;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  min-height: 44px;
  transition: color .32s ease-in-out
}

.ck-card__ok:hover {
  color: #3a6e69
}

.ck-card__ok:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 2px;
  border-radius: 2px
}

.ck-card__no {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #646464;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  min-height: 44px;
  transition: color .32s ease-in-out
}

.ck-card__no:hover {
  color: #2d2d2d
}

.ck-card__no:focus-visible {
  outline: 2px solid #646464;
  outline-offset: 2px;
  border-radius: 2px
}

.ck-card--out {
  animation: ck-slide-out .26s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.ck-card--in {
  animation: ck-slide-in .26s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

@keyframes ck-slide-in {
  from {
    transform: translateY(24px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes ck-slide-out {
  from {
    transform: translateY(0);
    opacity: 1
  }

  to {
    transform: translateY(24px);
    opacity: 0
  }
}

.pref-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  z-index: 7900;
  background-color: #51908B;
  border-radius: 0 12px 12px 0;
  padding: 12px 8px;
  cursor: pointer;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: none
}

.pref-tab--vis {
  display: flex;
  transform: translateY(-50%) translateX(0)
}

.pref-tab i {
  font-size: 20px;
  color: #fff
}

.pref-tab:hover {
  background-color: #3a6e69
}

.pref-tab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px
}

.pref-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  z-index: 7950;
  background-color: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 14px -1px #64646414 0 9px 40px -1px #64646424;
  padding: 24px;
  width: 280px;
  max-width: calc(100vw - 32px);
  display: none;
  flex-direction: column;
  gap: 16px;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.pref-panel--open {
  display: flex;
  transform: translateY(-50%) translateX(0)
}

.pref-panel__hdl {
  font-family: 'Public Sans', sans-serif;
  font-size: 17px;
  line-height: 1.4;
  color: #2d2d2d;
  font-weight: 700
}

.pref-panel__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #646464;
  font-size: 20px;
  align-self: flex-end;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: color .32s ease-in-out
}

.pref-panel__close:hover {
  color: #2d2d2d
}

.pref-panel__close:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 2px
}

.pref-panel__save {
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #51908B;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  min-height: 44px;
  text-align: left;
  transition: color .32s ease-in-out
}

.pref-panel__save:hover {
  color: #3a6e69
}

.pref-panel__save:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 2px;
  border-radius: 2px
}

@media (max-width: 480px) {
  .ck-card {
    bottom: 16px;
    left: 16px
  }
}

.agreement-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px
}

.agreement-section p {
  font-size: 15px;
  line-height: 1.9;
  color: #2d2d2d;
  margin-bottom: 16px
}

.agreement-section ul,
.agreement-section ol {
  margin: 16px 0 32px;
  padding-left: 32px
}

.agreement-section li {
  font-size: 15px;
  line-height: 1.6;
  color: #2d2d2d;
  margin-bottom: 8px
}

.agreement-section ul li::marker {
  color: #51908B
}

.agreement-section ol li::marker {
  color: #646464;
  font-size: 14px;
  letter-spacing: .03em
}

.agreement-section strong,
.agreement-section b {
  font-weight: 600;
  color: #1e1e1e
}

.agreement-section em,
.agreement-section i {
  font-style: italic;
  color: #464646
}

.agreement-section hr {
  border: none;
  border-top: 1px solid #CFCECE;
  margin: 48px 0
}

.agreement-section div {
  margin-bottom: 32px
}

@media (max-width: 960px) {
  .agreement-section {
    padding: 32px 16px
  }

  .agreement-section p,
  .agreement-section li {
    font-size: 15px
  }
}

@media (max-width: 480px) {
  .agreement-section {
    padding: 32px 12px
  }

  .agreement-section p {
    font-size: 14px;
    line-height: 1.6
  }

  .agreement-section li {
    font-size: 14px
  }

  .agreement-section ul,
  .agreement-section ol {
    padding-left: 16px
  }
}

.bd {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: clip
}

.bd__hero {
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 520px;
  margin-bottom: 48px;
  position: relative
}

.bd__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-47deg, transparent, transparent 18px, #51908b0a 18px, #51908b0a 19px);
  pointer-events: none;
  z-index: 0
}

.bd__hero-img-col {
  position: relative;
  z-index: 1;
  padding: 48px 16px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.bd__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 40px -1px #51908b24;
  aspect-ratio: 3/4
}

.bd__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.bd__img-wrap:hover img {
  transform: scale(1.03)
}

.bd__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #51908b61 0%, transparent 60%);
  transition: opacity .4s ease-in-out
}

.bd__img-wrap:hover .bd__img-overlay {
  opacity: 0
}

.bd__img-leak {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 0% 0%, #ffffff8c 0%, transparent 70%);
  pointer-events: none
}

.bd__hero-text-col {
  position: relative;
  z-index: 1;
  padding: 48px 0 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.bd__meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap
}

.bd__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #51908b1a;
  color: #51908B;
  font-size: 14px;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid #51908b40
}

.bd__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #646464
}

.bd__meta-item .bx {
  font-size: 15px;
  color: #51908B
}

.bd__h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #2a2a2a;
  margin-bottom: 16px;
  letter-spacing: -.01em;
  position: relative;
  display: inline-block
}

.bd__h1::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #51908B, #CFCECE);
  border-radius: 2px;
  margin-top: 8px;
  animation: bd-underline .45s cubic-bezier(0.34, 1.2, 0.64, 1) .3s forwards
}

@keyframes bd-underline {
  to {
    width: 100%
  }
}

.bd__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #646464;
  margin-bottom: 32px
}

.bd__author-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #cfcece2e;
  border-radius: 12px;
  border-left: 3px solid #51908B;
  border-top: 1px solid #cfcece66
}

.bd__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #51908B 0%, #CFCECE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.bd__author-avatar .bx {
  font-size: 20px;
  color: #fff
}

.bd__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.bd__author-name {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 600
}

.bd__author-date {
  font-size: 14px;
  color: #646464
}

.bd__report-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: #646464;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 2px;
  border: 1px solid #cfcece99;
  background: transparent;
  transition: color .35s ease-in-out, border-color .35s ease-in-out;
  align-self: flex-start
}

.bd__report-btn .bx {
  font-size: 15px;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.bd__report-btn:hover {
  color: #51908B;
  border-color: #51908B
}

.bd__report-btn:hover .bx {
  transform: translateX(4px)
}

.bd__divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 48px 0
}

.bd__dot {
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background: #CFCECE
}

.bd__dot--mid {
  background: #51908B;
  width: 8px;
  height: 8px
}

.bd__body-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 48px;
  margin-bottom: 48px
}

.bd__sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.bd__stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 14px -1px #51908b14;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 2px solid #51908B
}

.bd__stat-label {
  font-size: 14px;
  color: #646464;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 8px
}

.bd__stat-label .bx {
  color: #51908B;
  font-size: 17px
}

.bd__stat-val {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  font-weight: 700
}

.bd__cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #51908b14;
  border-radius: 20px;
  font-size: 15px;
  color: #51908B;
  border: 1px solid #51908b33
}

.bd__article-body {
  font-size: 17px;
  line-height: 1.9;
  color: #3a3a3a;
  text-align: justify
}

.bd__article-body p {
  margin-bottom: 16px
}

.bd__article-body h2 {
  font-size: 26px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 32px 0 16px;
  position: relative;
  padding-bottom: 8px
}

.bd__article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #51908B, transparent);
  border-radius: 2px;
  animation: bd-underline .4s ease-in-out .5s forwards
}

.bd__article-body h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 24px 0 12px
}

.bd__article-body strong {
  color: #2a2a2a;
  font-weight: 600
}

.bd__article-body ins {
  text-decoration: none;
  background: #51908b1f;
  padding: 0 4px;
  border-radius: 2px;
  color: #2a2a2a
}

.bd__article-body blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 3px solid #51908B;
  border-radius: 0 12px 12px 0;
  background: #cfcece26;
  font-size: 17px;
  color: #51908B;
  font-style: italic
}

.bd__article-body ul,
.bd__article-body ol {
  padding-left: 8px;
  margin-bottom: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.bd__article-body ul li,
.bd__article-body ol li {
  padding-left: 24px;
  position: relative;
  font-size: 17px;
  line-height: 1.6
}

.bd__article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #51908B;
  border: 2px solid #51908b4d
}

.bd__article-body ol {
  counter-reset: bd-ol
}

.bd__article-body ol li {
  counter-increment: bd-ol
}

.bd__article-body ol li::before {
  content: counter(bd-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #51908B;
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1
}

.bd__article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 15px
}

.bd__article-body th {
  background: #51908b1f;
  color: #2a2a2a;
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #51908B
}

.bd__article-body td {
  padding: 8px 12px;
  border-bottom: 1px solid #cfcece80;
  color: #3a3a3a
}

.bd__article-body tr:last-child td {
  border-bottom: none
}

.bd__frosted {
  position: relative;
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff8c;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #cfcece73;
  box-shadow: 0 3px 2px -1px #51908b12 0 4px 14px -1px #51908b14;
  padding: 48px
}

.bd__frosted-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #51908b12 0%, #cfcece1f 60%, #ffffff0a 100%);
  pointer-events: none;
  z-index: 0
}

.bd__frosted-inner {
  position: relative;
  z-index: 1
}

.bd__frosted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px
}

.bd__icon-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative
}

.bd__icon-node:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #51908b66, #cfcece4d);
  border-radius: 2px
}

.bd__icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: #51908B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #51908b26 0 4px 14px -1px #51908b14;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .4s ease-in-out
}

.bd__icon-ring:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 6px #51908b33 0 9px 40px -1px #51908b24
}

.bd__icon-ring .bx {
  font-size: 26px;
  color: #fff
}

.bd__icon-label {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.4
}

.bd__icon-desc {
  font-size: 14px;
  color: #646464;
  line-height: 1.6
}

.bd__frosted-heading {
  font-size: 26px;
  line-height: 1.4;
  color: #2a2a2a;
  margin-bottom: 8px;
  position: relative;
  display: inline-block
}

.bd__frosted-heading::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #51908B, #CFCECE);
  border-radius: 2px;
  margin-top: 6px;
  animation: bd-underline .4s ease-in-out .6s forwards
}

.bd__frosted-sub {
  font-size: 17px;
  color: #646464;
  line-height: 1.6
}

.bd__reveal {
  animation: bd-reveal .45s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

@keyframes bd-reveal {
  from {
    clip-path: inset(50% 50% 50% 50%);
    opacity: 0
  }

  to {
    clip-path: inset(0% 0% 0% 0%);
    opacity: 1
  }
}

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

  .bd__hero-img-col {
    padding: 32px 0 16px
  }

  .bd__img-wrap {
    aspect-ratio: 16/9
  }

  .bd__hero-text-col {
    padding: 16px 0 32px
  }

  .bd__h1 {
    font-size: 36px
  }

  .bd__body-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .bd__sidebar {
    flex-direction: row;
    flex-wrap: wrap
  }

  .bd__stat-card {
    flex: 1 1 140px
  }

  .bd__frosted {
    padding: 32px 24px
  }

  .bd__frosted-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .bd__icon-node::after {
    display: none
  }
}

@media (max-width: 480px) {
  .bd__h1 {
    font-size: 26px
  }

  .bd__subtitle {
    font-size: 17px
  }

  .bd__hero-text-col {
    padding: 12px 0 24px
  }

  .bd__frosted {
    padding: 24px 16px
  }

  .bd__meta-row {
    gap: 8px
  }
}

.gd {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: clip
}

.gd__divider {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 32px
}

.gd__divider span {
  display: block;
  height: 2px;
  background: #CFCECE
}

.gd__divider span:nth-child(odd) {
  width: 8px
}

.gd__divider span:nth-child(even) {
  width: 24px
}

.gd__divider--full {
  padding: 0
}

.gd__divider--full span:nth-child(odd) {
  width: 6px
}

.gd__divider--full span:nth-child(even) {
  width: 20px
}

.gd .hero-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #51908B 0%, #CFCECE 60%, #fff 100%);
  border-radius: 0 2px 2px 0
}

.gd .title-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0
}

.gd .title-text {
  position: relative;
  padding: 48px 48px 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: #fff
}

.gd .title-text__pre {
  font-size: 14px;
  letter-spacing: .12em;
  color: #51908B;
  text-transform: uppercase;
  line-height: 1.4
}

.gd .title-text__h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0
}

.gd .title-text__h1 span {
  color: #51908B;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.gd .title-text__desc {
  font-size: 17px;
  line-height: 1.6;
  color: #646464;
  max-width: 480px;
  text-align: justify;
  margin: 0
}

.gd .title-img {
  position: relative;
  overflow: hidden;
  border-radius: 0 12px 12px 0
}

.gd .title-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .42s ease-in-out
}

.gd .title-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #51908b47 0%, #6464641f 50%, transparent 100%);
  transition: opacity .38s ease-in-out;
  pointer-events: none
}

.gd .title-img:hover::after {
  opacity: 0
}

.gd .title-img:hover img {
  transform: scale(1.03)
}

.gd .guides-section {
  background: linear-gradient(0deg, #fff 0%, #f4f5f5 40%, #e8ecec 100%);
  padding: 48px 32px;
  position: relative
}

.gd .guides-section::before {
  content: "∑";
  position: absolute;
  right: 48px;
  top: 16px;
  font-size: 220px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #51908b1a;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

.gd .guides-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto
}

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

.gd .guides-label {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.gd .guides-label__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.gd .tag-circle {
  width: 36px;
  height: 36px;
  border-radius: 20px;
  background: #51908B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 2px -1px #51908b12 0 4px 14px -1px #51908b14;
  position: relative
}

.gd .tag-circle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1.5px solid #51908B;
  opacity: .4
}

.gd .tag-circle i {
  color: #fff;
  font-size: 17px
}

.gd .tag-label {
  font-size: 14px;
  letter-spacing: .1em;
  color: #51908B;
  text-transform: uppercase
}

.gd .guides-label__h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0;
  position: relative;
  display: inline-block
}

.gd .guides-label__h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #51908B;
  border-radius: 2px;
  margin-top: 8px;
  animation: underline-draw .45s cubic-bezier(0.34, 1.2, 0.64, 1) .3s forwards
}

@keyframes underline-draw {
  to {
    width: 100%
  }
}

.gd .guides-label__sub {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  text-align: justify;
  margin: 0
}

.gd .guides-intro {
  font-size: 17px;
  line-height: 1.9;
  color: #646464;
  text-align: justify
}

.gd .guides-intro p {
  margin: 0 0 16px
}

.gd .guides-intro p:last-child {
  margin-bottom: 0
}

.gd .howto-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.gd .howto-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid #CFCECE;
  align-items: start;
  transition: background .35s ease-in-out
}

.gd .howto-item:first-child {
  border-top: 1px solid #CFCECE
}

.gd .howto-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.gd .howto-num__circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #CFCECE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #51908B;
  box-shadow: 0 3px 2px -1px #51908b12;
  transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1), color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.gd .howto-item:hover .howto-num__circle {
  background: #51908B;
  color: #fff;
  border-color: #51908B
}

.gd .howto-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.gd .howto-body__h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0;
  position: relative;
  display: inline-block
}

.gd .howto-body__h3::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 0;
  background: #51908B;
  border-radius: 2px;
  margin-top: 4px;
  transition: width .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.gd .howto-item:hover .howto-body__h3::after {
  width: 100%
}

.gd .howto-body__p {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  text-align: justify;
  margin: 0
}

.gd .howto-body__tips {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.gd .howto-body__tips li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #646464
}

.gd .tip-icon {
  flex-shrink: 0;
  margin-top: 3px
}

.gd .howto-body__quote {
  font-size: 15px;
  line-height: 1.6;
  color: #51908B;
  font-style: italic;
  border-left: 3px solid #51908B;
  border-top: 1px solid #51908b33;
  padding: 8px 12px;
  border-radius: 0 2px 2px 0;
  background: #51908b0a;
  margin-top: 8px
}

.gd .resource-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.gd .res-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 14px -1px #51908b14;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .38s ease-in-out, transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.gd .res-card:hover {
  box-shadow: 0 9px 40px -1px #51908b24;
  transform: translateY(-3px)
}

.gd .res-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #51908b1a;
  display: flex;
  align-items: center;
  justify-content: center
}

.gd .res-card__icon i {
  font-size: 20px;
  color: #51908B
}

.gd .res-card__h4 {
  font-size: 17px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0
}

.gd .res-card__p {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0;
  text-align: justify
}

.gd .res-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #51908B;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: gap .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s ease-in-out
}

.gd .res-card__link:hover {
  gap: 8px;
  color: #3d6e6a
}

.gd .res-card__link i {
  font-size: 15px;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.gd .res-card__link:hover i {
  transform: translateX(4px)
}

@media (max-width: 960px) {
  .gd .title-wrap {
    grid-template-columns: 1fr
  }

  .gd .title-img {
    height: 280px;
    border-radius: 0 0 12px 12px
  }

  .gd .title-text__h1 {
    font-size: 36px
  }

  .gd .guides-top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .gd .resource-strip {
    grid-template-columns: 1fr 1fr
  }

  .gd .guides-section::before {
    font-size: 140px;
    right: 16px
  }
}

@media (max-width: 480px) {
  .gd .title-text {
    padding: 32px 16px 32px 24px
  }

  .gd .title-text__h1 {
    font-size: 26px
  }

  .gd .howto-item {
    grid-template-columns: 48px 1fr;
    gap: 12px
  }

  .gd .resource-strip {
    grid-template-columns: 1fr
  }

  .gd .guides-section {
    padding: 32px 16px
  }

  .gd .guides-label__h2 {
    font-size: 26px
  }
}

.rt {
  max-width: 100%;
  overflow-x: hidden
}

.rt .pg-wrap {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px
}

.rt .underline-anim {
  position: relative;
  display: inline-block
}

.rt .underline-anim::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #51908B;
  transition: width .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .underline-anim:hover::after,
.rt .underline-anim:focus-within::after {
  width: 100%
}

.rt .hero-band {
  position: relative;
  padding-top: 80px;
  padding-bottom: 64px;
  background: #fff
}

.rt .hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, #fff 30%, #e8f0ef 70%, #CFCECE 100%);
  z-index: 0
}

.rt .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: end
}

.rt .hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.rt .hero-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .12em;
  color: #51908B;
  text-transform: uppercase;
  border: 1px solid #51908B;
  border-radius: 2px;
  padding: 4px 12px;
  width: fit-content
}

.rt .hero-h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0
}

.rt .hero-h1 .accent-word {
  color: #51908B;
  font-style: italic
}

.rt .hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #646464;
  max-width: 560px;
  margin: 0;
  text-align: justify
}

.rt .hero-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center
}

.rt .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #51908B;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 2px;
  padding: 12px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .35s ease-in-out;
  text-decoration: none
}

.rt .btn-prim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #3d6e6a;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.rt .btn-prim:hover::before {
  transform: translateX(0)
}

.rt .btn-prim span,
.rt .btn-prim i {
  position: relative;
  z-index: 1
}

.rt .btn-prim i {
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .btn-prim:hover i {
  transform: translateX(4px)
}

.rt .btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #646464;
  font-size: 15px;
  border: 1px solid #CFCECE;
  border-radius: 2px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .32s ease-in-out, color .32s ease-in-out
}

.rt .btn-sec:hover {
  border-color: #51908B;
  color: #51908B
}

.rt .btn-sec i {
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .btn-sec:hover i {
  transform: translateX(4px)
}

.rt .hero-img-col {
  position: relative
}

.rt .hero-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 40px -1px #51908b24
}

.rt .hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px) brightness(0.9);
  transition: filter .42s ease-in-out
}

.rt .hero-img-wrap:hover img {
  filter: blur(0px) brightness(1)
}

.rt .hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #51908b73 0%, #51908b1a 60%, transparent 100%);
  transition: opacity .38s ease-in-out
}

.rt .hero-img-wrap:hover .hero-img-overlay {
  opacity: 0
}

.rt .hero-arrow {
  position: absolute;
  bottom: -24px;
  right: 16px;
  width: 32px;
  height: 32px;
  opacity: .18
}

.rt .hero-arrow svg {
  width: 32px;
  height: 32px
}

.rt .wave-div {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.rt .wave-div svg {
  display: block;
  width: 100%
}

.rt .stats-band {
  background: #51908B;
  padding-top: 48px;
  padding-bottom: 48px
}

.rt .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center
}

.rt .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.rt .stat-ring {
  position: relative;
  width: 80px;
  height: 80px
}

.rt .stat-ring svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg)
}

.rt .stat-ring .ring-bg {
  fill: none;
  stroke: #fff3;
  stroke-width: 5
}

.rt .stat-ring .ring-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .stats-band:hover .ring-fill {
  stroke-dashoffset: var(--dash-off)
}

.rt .stat-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 700
}

.rt .stat-lbl {
  font-size: 14px;
  color: #ffffffd1;
  letter-spacing: .06em;
  text-align: center
}

.rt .editorial-band {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px
}

.rt .editorial-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start
}

.rt .ed-label {
  font-size: 14px;
  letter-spacing: .1em;
  color: #51908B;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block
}

.rt .ed-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 16px
}

.rt .ed-body {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  margin: 0 0 16px;
  text-align: justify
}

.rt .ed-quote {
  color: #51908B;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  border-left: 3px solid #51908B;
  border-top: 1px solid #CFCECE;
  padding: 12px 16px;
  margin: 0;
  border-radius: 0
}

.rt .ed-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.rt .ed-principle {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #CFCECE;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .32s ease-in-out
}

.rt .ed-principle:hover {
  box-shadow: 0 4px 14px -1px #51908b14;
  border-color: #51908B
}

.rt .ed-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e8f0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.rt .ed-icon i {
  font-size: 20px;
  color: #51908B
}

.rt .ed-ptxt {
  flex: 1
}

.rt .ed-ptitle {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 4px
}

.rt .ed-pdesc {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0
}

.rt .posts-band {
  background: #f4f7f7;
  padding-top: 64px;
  padding-bottom: 64px
}

.rt .posts-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px
}

.rt .posts-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0
}

.rt .posts-link {
  font-size: 15px;
  color: #51908B;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color .32s ease-in-out;
  white-space: nowrap
}

.rt .posts-link:hover {
  border-color: #51908B
}

.rt .posts-link i {
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .posts-link:hover i {
  transform: translateX(4px)
}

.rt .posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.rt .post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 2px -1px #51908b12;
  display: flex;
  flex-direction: column;
  transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  text-decoration: none
}

.rt .post-card:hover {
  box-shadow: 0 9px 40px -1px #51908b24
}

.rt .post-img-wrap {
  position: relative;
  overflow: hidden
}

.rt .post-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(2px) brightness(0.88);
  transition: filter .42s ease-in-out
}

.rt .post-card:hover .post-img-wrap img {
  filter: blur(0px) brightness(1)
}

.rt .post-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #51908b59 100%);
  transition: opacity .38s ease-in-out
}

.rt .post-card:hover .post-img-overlay {
  opacity: 0
}

.rt .post-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #51908B;
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: .06em
}

.rt .post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.rt .post-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.rt .post-author {
  font-size: 14px;
  color: #646464;
  display: flex;
  align-items: center;
  gap: 4px
}

.rt .post-author i {
  color: #51908B;
  font-size: 14px
}

.rt .post-read {
  font-size: 14px;
  color: #CFCECE
}

.rt .post-read i {
  color: #CFCECE;
  font-size: 14px
}

.rt .post-h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0
}

.rt .post-sub {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0
}

.rt .post-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  margin: 0;
  text-align: justify
}

.rt .post-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #CFCECE;
  margin-top: 8px
}

.rt .post-date {
  font-size: 14px;
  color: #CFCECE;
  display: flex;
  align-items: center;
  gap: 4px
}

.rt .post-date i {
  font-size: 14px
}

.rt .post-stats {
  display: flex;
  flex-direction: row;
  gap: 12px
}

.rt .post-stat {
  font-size: 14px;
  color: #646464;
  display: flex;
  align-items: center;
  gap: 4px
}

.rt .post-stat i {
  color: #51908B;
  font-size: 14px
}

.rt .post-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #51908B;
  margin-top: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: gap .32s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .post-card:hover .post-read-btn {
  gap: 8px
}

.rt .post-read-btn i {
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .post-card:hover .post-read-btn i {
  transform: translateX(4px)
}

.rt .clusters-band {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px
}

.rt .clusters-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start
}

.rt .cl-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 12px
}

.rt .cl-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  margin: 0 0 32px;
  text-align: justify
}

.rt .cl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rt .cl-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #CFCECE;
  transition: border-color .38s ease-in-out, box-shadow .38s ease-in-out;
  text-decoration: none
}

.rt .cl-item:hover {
  border-color: #51908B;
  box-shadow: 0 4px 14px -1px #51908b14
}

.rt .cl-num {
  width: 36px;
  height: 36px;
  border-radius: 20px;
  background: #e8f0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #51908B;
  flex-shrink: 0
}

.rt .cl-txt {
  flex: 1
}

.rt .cl-name {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 4px;
  display: block
}

.rt .cl-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0
}

.rt .cl-side {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.rt .cl-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px -1px #51908b14
}

.rt .cl-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(2px) brightness(0.88);
  transition: filter .42s ease-in-out
}

.rt .cl-img-wrap:hover img {
  filter: blur(0px) brightness(1)
}

.rt .cl-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #51908b66 0%, transparent 70%);
  transition: opacity .38s ease-in-out
}

.rt .cl-img-wrap:hover .cl-img-overlay {
  opacity: 0
}

.rt .cl-aside-card {
  background: #f4f7f7;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #CFCECE
}

.rt .cl-aside-title {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 8px
}

.rt .cl-aside-body {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0
}

.rt .hidden-band {
  background: #f4f7f7;
  padding-top: 64px;
  padding-bottom: 64px
}

.rt .hidden-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start
}

.rt .hid-img-col {
  position: relative
}

.rt .hid-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 40px -1px #51908b24
}

.rt .hid-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(2px) brightness(0.88);
  transition: filter .42s ease-in-out
}

.rt .hid-img-wrap:hover img {
  filter: blur(0px) brightness(1)
}

.rt .hid-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #51908b61 0%, transparent 65%);
  transition: opacity .38s ease-in-out;
  border-radius: 12px
}

.rt .hid-img-wrap:hover .hid-img-overlay {
  opacity: 0
}

.rt .hid-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.rt .hid-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 8px
}

.rt .hid-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  margin: 0;
  text-align: justify
}

.rt .hid-picks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rt .hid-pick {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #CFCECE;
  transition: border-color .38s ease-in-out, box-shadow .4s ease-in-out
}

.rt .hid-pick:hover {
  border-color: #51908B;
  box-shadow: 0 3px 2px -1px #51908b12
}

.rt .hid-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e8f0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.rt .hid-icon i {
  font-size: 18px;
  color: #51908B
}

.rt .hid-ptxt {
  flex: 1
}

.rt .hid-ptitle {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0 0 4px
}

.rt .hid-pdesc {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0
}

.rt .voices-band {
  background: #fff;
  padding-top: 64px;
  padding-bottom: 64px
}

.rt .voices-inner {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.rt .voices-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px
}

.rt .voices-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0
}

.rt .voices-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  max-width: 480px;
  margin: 0
}

.rt .voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.rt .voice-card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #CFCECE;
  background: #fff;
  transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .32s ease-in-out
}

.rt .voice-card:hover {
  box-shadow: 0 4px 14px -1px #51908b14;
  border-color: #51908B
}

.rt .voice-portrait {
  width: 72px;
  flex-shrink: 0
}

.rt .voice-portrait img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(1px) brightness(0.9);
  transition: filter .42s ease-in-out
}

.rt .voice-card:hover .voice-portrait img {
  filter: blur(0px) brightness(1)
}

.rt .voice-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.rt .voice-name {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin: 0
}

.rt .voice-role {
  font-size: 14px;
  color: #51908B;
  letter-spacing: .05em;
  margin: 0
}

.rt .voice-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0;
  text-align: justify
}

.rt .voice-noimg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #CFCECE;
  background: #f4f7f7;
  transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .32s ease-in-out
}

.rt .voice-noimg:hover {
  box-shadow: 0 4px 14px -1px #51908b14;
  border-color: #51908B
}

.rt .voice-avatar {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background: #e8f0ef;
  display: flex;
  align-items: center;
  justify-content: center
}

.rt .voice-avatar i {
  font-size: 24px;
  color: #51908B
}

.rt .sub-band {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative
}

.rt .sub-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, #51908B 0%, #3d6e6a 55%, #2a4f4c 100%);
  z-index: 0
}

.rt .sub-glass {
  position: relative;
  z-index: 1;
  background: #ffffff14;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid #ffffff2e;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  box-shadow: 0 9px 40px -1px #51908b24
}

.rt .sub-left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rt .sub-tag {
  font-size: 14px;
  letter-spacing: .1em;
  color: #ffffffb3;
  text-transform: uppercase
}

.rt .sub-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  margin: 0
}

.rt .sub-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffffd1;
  margin: 0;
  text-align: justify
}

.rt .sub-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.rt .sub-perk {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  color: #ffffffd9;
  line-height: 1.6
}

.rt .sub-perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background: #fff9;
  margin-top: 6px;
  flex-shrink: 0
}

.rt .sub-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.rt .sub-field {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.rt .sub-lbl {
  font-size: 14px;
  color: #ffffffb3;
  letter-spacing: .04em
}

.rt .sub-input {
  background: #ffffff1f;
  border: 1px solid #ffffff47;
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color .35s ease-in-out, background .35s ease-in-out
}

.rt .sub-input::placeholder {
  color: #fff6;
  transition: color .38s ease-in-out
}

.rt .sub-input:focus::placeholder {
  color: transparent
}

.rt .sub-input:focus {
  border-color: #fff;
  background: #ffffff2e;
  box-shadow: inset 0 1px 2px #ffffff14
}

.rt .sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #51908B;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  padding: 12px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .35s ease-in-out
}

.rt .sub-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #e8f0ef;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.rt .sub-btn:hover::before {
  transform: translateX(0)
}

.rt .sub-btn span,
.rt .sub-btn i {
  position: relative;
  z-index: 1
}

.rt .sub-btn i {
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rt .sub-btn:hover i {
  transform: translateX(4px)
}

.rt .sub-note {
  font-size: 14px;
  color: #ffffff8c;
  margin: 0
}

.rt .focus-enhanced:focus {
  outline: 2px solid #51908B;
  outline-offset: 3px
}

@media (max-width: 960px) {
  .rt .hero-inner {
    grid-template-columns: 1fr
  }

  .rt .hero-img-col {
    order: -1
  }

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

  .rt .editorial-inner {
    grid-template-columns: 1fr
  }

  .rt .posts-grid {
    grid-template-columns: 1fr
  }

  .rt .clusters-inner {
    grid-template-columns: 1fr
  }

  .rt .hidden-inner {
    grid-template-columns: 1fr
  }

  .rt .voices-grid {
    grid-template-columns: 1fr
  }

  .rt .sub-glass {
    grid-template-columns: 1fr;
    padding: 32px
  }
}

@media (max-width: 480px) {
  .rt .pg-wrap {
    padding-left: 16px;
    padding-right: 16px
  }

  .rt .hero-h1 {
    font-size: 36px
  }

  .rt .hero-actions {
    flex-direction: column;
    align-items: flex-start
  }

  .rt .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .rt .posts-head {
    flex-direction: column;
    align-items: flex-start
  }

  .rt .voices-head {
    flex-direction: column;
    align-items: flex-start
  }

  .rt .sub-glass {
    padding: 24px
  }

  .rt .ed-h2,
  .rt .cl-h2,
  .rt .hid-h2,
  .rt .voices-h2,
  .rt .sub-h2,
  .rt .posts-h2 {
    font-size: 26px
  }
}

.blg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden
}

.blg .pg-band {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #51908B;
  pointer-events: none
}

.blg .ttl-blk {
  position: relative;
  padding: 48px 48px 48px 52px;
  background: #fff;
  overflow: hidden
}

.blg .ttl-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 18px, #51908b0a 18px, #51908b0a 20px);
  pointer-events: none;
  z-index: 0
}

.blg .ttl-blk__inner {
  position: relative;
  z-index: 1;
  max-width: 780px
}

.blg .ttl-blk__label {
  font-size: 14px;
  letter-spacing: .12em;
  color: #51908B;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.blg .ttl-blk__h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 16px;
  font-weight: 700
}

.blg .ttl-blk__h1 span {
  display: block
}

.blg .ttl-blk__h1 .accent-line {
  color: #51908B
}

.blg .ttl-blk__desc {
  font-size: 17px;
  line-height: 1.6;
  color: #646464;
  max-width: 560px;
  text-align: left;
  margin: 0
}

.blg .ttl-blk__deco {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  z-index: 0
}

.blg .ttl-blk__deco span {
  display: block;
  height: 1px;
  background: #51908b2e;
  transition: width .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .ttl-blk__deco span:nth-child(1) {
  width: 120px
}

.blg .ttl-blk__deco span:nth-child(2) {
  width: 80px
}

.blg .ttl-blk__deco span:nth-child(3) {
  width: 100px
}

.blg .ttl-blk__deco span:nth-child(4) {
  width: 60px
}

.blg .ttl-blk__deco span:nth-child(5) {
  width: 90px
}

.blg .ttl-blk:hover .ttl-blk__deco span:nth-child(1) {
  width: 160px
}

.blg .ttl-blk:hover .ttl-blk__deco span:nth-child(2) {
  width: 120px
}

.blg .ttl-blk:hover .ttl-blk__deco span:nth-child(3) {
  width: 140px
}

.blg .ttl-blk:hover .ttl-blk__deco span:nth-child(4) {
  width: 100px
}

.blg .ttl-blk:hover .ttl-blk__deco span:nth-child(5) {
  width: 130px
}

.blg .zigzag-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block
}

.blg .zigzag-div svg {
  display: block;
  width: 100%
}

.blg .posts-area {
  padding: 48px 48px 48px 52px;
  background: #f5f4f2;
  position: relative
}

.blg .posts-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #51908B;
  pointer-events: none
}

.blg .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.blg .post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 2px -1px #51908b12 0 4px 14px -1px #51908b14;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .post-card:hover {
  box-shadow: 0 9px 40px -1px #51908b24;
  transform: translateY(-4px)
}

.blg .post-card__img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden
}

.blg .post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .42s ease-in-out
}

.blg .post-card:hover .post-card__img-wrap img {
  transform: scale(1.04)
}

.blg .post-card__img-overlay {
  position: absolute;
  inset: 0;
  background: #51908b47;
  transition: opacity .38s ease-in-out;
  pointer-events: none
}

.blg .post-card:hover .post-card__img-overlay {
  opacity: 0
}

.blg .post-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #51908B;
  color: #fff;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: .06em
}

.blg .post-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px
}

.blg .post-card__cat {
  font-size: 14px;
  color: #51908B;
  letter-spacing: .08em;
  text-transform: uppercase
}

.blg .post-card__h2 {
  font-size: 17px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px
}

.blg .post-card__h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #51908B;
  border-radius: 2px;
  transition: width .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .post-card:hover .post-card__h2::after {
  width: 48px
}

.blg .post-card__sub {
  font-size: 14px;
  color: #646464;
  line-height: 1.6;
  margin: 0;
  text-align: justify
}

.blg .post-card__desc {
  font-size: 15px;
  color: #646464;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
  flex: 1
}

.blg .post-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid #CFCECE
}

.blg .post-card__author {
  font-size: 14px;
  color: #646464;
  display: flex;
  align-items: center;
  gap: 4px
}

.blg .post-card__author i {
  color: #51908B;
  font-size: 15px
}

.blg .post-card__read {
  font-size: 14px;
  color: #646464;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto
}

.blg .post-card__read i {
  color: #51908B;
  font-size: 15px
}

.blg .post-card__date {
  font-size: 14px;
  color: #CFCECE
}

.blg .post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #51908B;
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  transition: gap .36s cubic-bezier(0.34, 1.2, 0.64, 1), color .36s ease-in-out
}

.blg .post-card__link i {
  transition: transform .36s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .post-card__link:hover {
  color: #2a2a2a;
  gap: 12px
}

.blg .post-card__link:hover i {
  transform: translateX(4px)
}

.blg .post-card--featured {
  grid-column: span 2
}

.blg .post-card--featured .post-card__img-wrap {
  height: 280px
}

.blg .post-card--featured .post-card__h2 {
  font-size: 20px
}

.blg .zigzag-div--inv svg {
  transform: scaleY(-1)
}

.blg .guide-band {
  padding: 48px 48px 48px 52px;
  background: linear-gradient(0deg, #fff 0%, #e8f0ef 50%, #2a3c3b 100%);
  position: relative
}

.blg .guide-band__inner {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  max-width: 1400px
}

.blg .guide-band__img-col {
  flex: 0 0 420px;
  position: relative
}

.blg .guide-band__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 40px -1px #51908b24;
  position: relative
}

.blg .guide-band__img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter .44s ease-in-out
}

.blg .guide-band__img-wrap:hover img {
  filter: blur(0px)
}

.blg .guide-band__img-overlay {
  position: absolute;
  inset: 0;
  background: #51908b38;
  transition: opacity .4s ease-in-out;
  pointer-events: none;
  border-radius: 12px
}

.blg .guide-band__img-wrap:hover .guide-band__img-overlay {
  opacity: 0
}

.blg .guide-band__txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.blg .guide-band__eyebrow {
  font-size: 14px;
  letter-spacing: .1em;
  color: #CFCECE;
  text-transform: uppercase
}

.blg .guide-band__h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px
}

.blg .guide-band__h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 48px;
  background: #51908B;
  border-radius: 2px;
  transition: width .44s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .guide-band:hover .guide-band__h2::after {
  width: 96px
}

.blg .guide-band__p {
  font-size: 17px;
  line-height: 1.6;
  color: #CFCECE;
  margin: 0;
  text-align: justify
}

.blg .guide-band__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.blg .guide-band__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #CFCECE;
  line-height: 1.6
}

.blg .guide-band__list li svg {
  flex-shrink: 0;
  margin-top: 3px
}

.blg .guide-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: #51908B;
  padding: 12px 32px;
  border-radius: 2px;
  align-self: flex-start;
  transition: background .36s ease-in-out, gap .36s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .guide-band__cta i {
  transition: transform .36s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .guide-band__cta:hover {
  background: #3d6e6a;
  gap: 12px
}

.blg .guide-band__cta:hover i {
  transform: translateX(4px)
}

.blg .code-ref {
  padding: 48px 48px 48px 52px;
  background: #fff;
  position: relative
}

.blg .code-ref__h2 {
  font-size: 26px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 32px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px
}

.blg .code-ref__h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #51908B;
  border-radius: 2px;
  animation: draw-line .44s cubic-bezier(0.34, 1.2, 0.64, 1) .5s forwards
}

@keyframes draw-line {
  to {
    width: 56px
  }
}

.blg .code-ref__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start
}

.blg .code-ref__code-wrap {
  background: #2a3c3b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px -1px #51908b14
}

.blg .code-ref__code-hd {
  background: #1e2e2d;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.blg .code-ref__dot {
  width: 12px;
  height: 12px;
  border-radius: 20px;
  display: inline-block
}

.blg .code-ref__dot--r {
  background: #e06c6c
}

.blg .code-ref__dot--y {
  background: #e0c46c
}

.blg .code-ref__dot--g {
  background: #6ce09a
}

.blg .code-ref__code-lbl {
  font-size: 14px;
  color: #CFCECE;
  margin-left: 8px;
  letter-spacing: .06em
}

.blg .code-ref__pre {
  margin: 0;
  padding: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #CFCECE;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word
}

.blg .code-ref__pre .kw {
  color: #51908B
}

.blg .code-ref__pre .str {
  color: #a8d8d5
}

.blg .code-ref__pre .cmt {
  color: #646464
}

.blg .code-ref__pre .val {
  color: #e0c46c
}

.blg .code-ref__out {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.blg .code-ref__out-lbl {
  font-size: 14px;
  letter-spacing: .1em;
  color: #51908B;
  text-transform: uppercase
}

.blg .code-ref__out-card {
  border: 1px solid #CFCECE;
  border-radius: 12px;
  padding: 16px;
  background: #f5f4f2;
  box-shadow: 0 3px 2px -1px #64646412
}

.blg .code-ref__out-card h5 {
  font-size: 17px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0 0 8px;
  font-weight: 600
}

.blg .code-ref__out-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  margin: 0;
  text-align: justify
}

.blg .code-ref__out-tag {
  display: inline-block;
  background: #51908B;
  color: #fff !important;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-top: 8px
}

.blg .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background: #51908B;
  display: inline-block;
  animation: pulse-anim 1.8s ease-in-out infinite
}

@keyframes pulse-anim {

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

  50% {
    transform: scale(1.5);
    opacity: .6
  }
}

.blg .split-reveal {
  animation: split-open .44s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

@keyframes split-open {
  0% {
    clip-path: inset(0 50% 0 50%);
    opacity: 0
  }

  100% {
    clip-path: inset(0 0% 0 0%);
    opacity: 1
  }
}

@media (max-width: 960px) {
  .blg .ttl-blk {
    padding: 32px 32px 32px 36px
  }

  .blg .ttl-blk__h1 {
    font-size: 36px
  }

  .blg .ttl-blk__deco {
    display: none
  }

  .blg .posts-area {
    padding: 32px 16px 32px 20px
  }

  .blg .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .blg .post-card--featured {
    grid-column: span 2
  }

  .blg .guide-band {
    padding: 32px 16px 32px 20px
  }

  .blg .guide-band__inner {
    flex-direction: column;
    gap: 32px
  }

  .blg .guide-band__img-col {
    flex: none;
    width: 100%
  }

  .blg .code-ref {
    padding: 32px 16px 32px 20px
  }

  .blg .code-ref__cols {
    grid-template-columns: 1fr
  }
}

@media (max-width: 480px) {
  .blg .ttl-blk {
    padding: 32px 16px 32px 20px
  }

  .blg .ttl-blk__h1 {
    font-size: 26px
  }

  .blg .ttl-blk__desc {
    font-size: 15px
  }

  .blg .posts-grid {
    grid-template-columns: 1fr
  }

  .blg .post-card--featured {
    grid-column: span 1
  }

  .blg .guide-band__h2 {
    font-size: 26px
  }

  .blg .posts-area {
    padding: 32px 12px 32px 16px
  }
}

.cs-pg {
  max-width: 100%;
  overflow-x: hidden
}

.cs-pg .bound {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px
}

@keyframes diagReveal {
  0% {
    opacity: 0;
    transform: translateY(16px) translateX(-8px)
  }

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

.cs-pg .d1 {
  animation: diagReveal .38s cubic-bezier(0.34, 1.2, 0.64, 1) .05s both
}

.cs-pg .d2 {
  animation: diagReveal .42s cubic-bezier(0.34, 1.2, 0.64, 1) .15s both
}

.cs-pg .d3 {
  animation: diagReveal .44s cubic-bezier(0.34, 1.2, 0.64, 1) .25s both
}

.cs-pg .d4 {
  animation: diagReveal .4s cubic-bezier(0.34, 1.2, 0.64, 1) .35s both
}

.cs-pg .tb {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #fff;
  position: relative
}

.cs-pg .tb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center
}

.cs-pg .tb-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px
}

.cs-pg .tb-circ {
  position: absolute;
  border-radius: 20px;
  pointer-events: none;
  z-index: 0
}

.cs-pg .tb-circ--a {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #51908b12;
  top: -16px;
  left: -16px;
  border-radius: 50%
}

.cs-pg .tb-circ--b {
  width: 72px;
  height: 72px;
  background: #6464640d;
  bottom: 8px;
  right: -8px;
  border-radius: 50%
}

.cs-pg .img-wrap {
  overflow: hidden;
  border-radius: 12px;
  position: relative
}

.cs-pg .img-wrap--tall {
  grid-row: span 2;
  border-radius: 12px
}

.cs-pg .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease-in-out
}

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

.cs-pg .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #51908b47 0%, #6464642e 60%, #0000 100%);
  transition: opacity .38s ease-in-out;
  pointer-events: none;
  border-radius: 12px
}

.cs-pg .img-wrap:hover::after {
  opacity: 0
}

.cs-pg .img-wrap--tall img {
  height: 280px
}

.cs-pg .img-wrap--sm img {
  height: 132px
}

.cs-pg .tb-text {
  padding-left: 16px
}

.cs-pg .lbl {
  font-size: 14px;
  letter-spacing: .12em;
  color: #51908B;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block
}

.cs-pg .tb-h {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin-bottom: 16px
}

.cs-pg .tb-h span {
  display: block
}

.cs-pg .tb-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #484848;
  margin-bottom: 16px;
  text-align: justify
}

.cs-pg .notch-block {
  border-left: 4px solid #51908B;
  border-top: 1px solid #51908b2e;
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  background: #51908b0a;
  margin-top: 8px
}

.cs-pg .notch-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #646464;
  margin: 0
}

.cs-pg .divider-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0
}

.cs-pg .divider-cross .line {
  height: 1px;
  width: 60px;
  background: #CFCECE
}

.cs-pg .divider-cross .cross {
  width: 10px;
  height: 10px;
  position: relative;
  flex-shrink: 0
}

.cs-pg .divider-cross .cross::before,
.cs-pg .divider-cross .cross::after {
  content: "";
  position: absolute;
  background: #51908B;
  border-radius: 2px
}

.cs-pg .divider-cross .cross::before {
  width: 10px;
  height: 2px;
  top: 4px;
  left: 0
}

.cs-pg .divider-cross .cross::after {
  width: 2px;
  height: 10px;
  top: 0;
  left: 4px
}

.cs-pg .sep {
  padding: 16px 0;
  background: #fff
}

.cs-pg .cases {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #f5f4f2;
  position: relative
}

.cs-pg .cases::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
}

.cs-pg .cases .bound {
  position: relative;
  z-index: 1
}

.cs-pg .cases-hd {
  margin-bottom: 32px
}

.cs-pg .cases-hd h2 {
  font-size: 26px;
  line-height: 1.4;
  color: #2a2a2a;
  margin-bottom: 8px;
  position: relative;
  display: inline-block
}

.cs-pg .cases-hd h2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #51908B;
  border-radius: 2px;
  animation: lineIn .44s cubic-bezier(0.34, 1.2, 0.64, 1) .5s forwards
}

@keyframes lineIn {
  to {
    width: 100%
  }
}

.cs-pg .cases-hd p {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  max-width: 560px;
  text-align: justify
}

.cs-pg .mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.cs-pg .case-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 2px -1px #51908b12 0 4px 14px -1px #51908b14;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transition: box-shadow .38s ease-in-out
}

.cs-pg .case-item:hover {
  box-shadow: 0 9px 40px -1px #51908b24
}

.cs-pg .case-item--full {
  grid-column: span 2;
  grid-template-columns: 2fr 3fr
}

.cs-pg .case-img {
  overflow: hidden;
  position: relative;
  min-height: 220px
}

.cs-pg .case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease-in-out
}

.cs-pg .case-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #51908b52 0%, #6464641f 70%, transparent 100%);
  transition: opacity .4s ease-in-out;
  pointer-events: none
}

.cs-pg .case-item:hover .case-img::after {
  opacity: 0
}

.cs-pg .case-item:hover .case-img img {
  transform: scale(1.05)
}

.cs-pg .case-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff
}

.cs-pg .case-body--alt {
  background: linear-gradient(135deg, #51908b0f 0%, #cfcece1f 80%, #fff 100%)
}

.cs-pg .case-tag {
  font-size: 14px;
  letter-spacing: .1em;
  color: #51908B;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.cs-pg .case-h {
  font-size: 20px;
  line-height: 1.4;
  color: #2a2a2a;
  margin-bottom: 12px;
  position: relative;
  display: inline-block
}

.cs-pg .case-h::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #51908B;
  border-radius: 2px;
  transition: width .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.cs-pg .case-item:hover .case-h::after {
  width: 100%
}

.cs-pg .case-p {
  font-size: 15px;
  line-height: 1.6;
  color: #484848;
  text-align: justify;
  margin-bottom: 16px
}

.cs-pg .case-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cs-pg .case-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #484848;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.cs-pg .case-list li .ico {
  flex-shrink: 0;
  margin-top: 4px
}

.cs-pg .case-list li .ico svg {
  display: block
}

.cs-pg .rev-strip {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #cfcece99;
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.cs-pg .rev-port {
  width: 52px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0
}

.cs-pg .rev-port img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.cs-pg .rev-text {
  flex: 1
}

.cs-pg .rev-q {
  font-size: 14px;
  line-height: 1.6;
  color: #51908B;
  font-style: italic;
  margin-bottom: 4px
}

.cs-pg .rev-name {
  font-size: 14px;
  color: #646464;
  letter-spacing: .04em
}

.cs-pg .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #51908B;
  text-decoration: none;
  border: 1px solid #51908b66;
  border-radius: 2px;
  padding: 8px 16px;
  transition: border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s ease-in-out;
  position: relative;
  overflow: hidden;
  align-self: flex-start
}

.cs-pg .btn-link::before,
.cs-pg .btn-link::after {
  content: "";
  position: absolute;
  background: #51908B;
  transition: width .35s cubic-bezier(0.34, 1.2, 0.64, 1), height .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.cs-pg .btn-link::before {
  top: 0;
  left: 0;
  width: 0;
  height: 2px
}

.cs-pg .btn-link::after {
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px
}

.cs-pg .btn-link:hover::before,
.cs-pg .btn-link:hover::after {
  width: 100%
}

.cs-pg .btn-link:hover {
  color: #2a2a2a;
  border-color: #51908B
}

.cs-pg .btn-link .bx {
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.cs-pg .btn-link:hover .bx {
  transform: translateX(4px)
}

.cs-pg .case-item--solo {
  grid-template-columns: 1fr
}

.cs-pg .case-item--solo .case-img {
  min-height: 180px
}

@media (max-width: 960px) {
  .cs-pg .tb-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .cs-pg .tb-text {
    padding-left: 0
  }

  .cs-pg .mosaic {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .cs-pg .case-item {
    grid-template-columns: 1fr
  }

  .cs-pg .case-item--full {
    grid-column: span 1;
    grid-template-columns: 1fr
  }

  .cs-pg .case-img {
    min-height: 200px
  }

  .cs-pg .case-body {
    padding: 24px
  }

  .cs-pg .tb-h {
    font-size: 26px
  }
}

@media (max-width: 480px) {
  .cs-pg .bound {
    padding-left: 16px;
    padding-right: 16px
  }

  .cs-pg .tb-imgs {
    grid-template-columns: 1fr
  }

  .cs-pg .img-wrap--tall {
    grid-row: span 1
  }

  .cs-pg .img-wrap--tall img {
    height: 200px
  }

  .cs-pg .img-wrap--sm img {
    height: 140px
  }

  .cs-pg .case-body {
    padding: 16px
  }

  .cs-pg .tb-h {
    font-size: 20px
  }

  .cs-pg .rev-strip {
    flex-direction: column
  }
}

.ab-auth {
  background: #fff;
  overflow-x: clip
}

.ab-auth .geo-bg {
  position: absolute;
  border-radius: 50%;
  opacity: .045;
  pointer-events: none;
  z-index: 0
}

.ab-auth .strip {
  height: 4px;
  background: linear-gradient(105deg, #646464 0%, #51908B 50%, #CFCECE 100%);
  width: 100%
}

.ab-auth .strip--light {
  background: linear-gradient(105deg, #CFCECE 0%, #51908B 60%, #646464 100%)
}

.ab-auth .ttl {
  position: relative;
  padding: 48px 32px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.ab-auth .ttl__txt {
  position: relative;
  z-index: 1
}

.ab-auth .ttl__eyebrow {
  font-size: 14px;
  letter-spacing: .12em;
  color: #51908B;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.ab-auth .ttl__h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #2a2a2a;
  margin-bottom: 16px
}

.ab-auth .ttl__h1 span {
  display: block;
  color: #51908B
}

.ab-auth .ttl__lead {
  font-size: 17px;
  line-height: 1.6;
  color: #646464;
  max-width: 480px;
  text-align: justify
}

.ab-auth .ttl__blur-a {
  position: absolute;
  width: 280px;
  height: 280px;
  background: #51908B;
  border-radius: 50%;
  opacity: .07;
  filter: blur(60px);
  top: -48px;
  left: -80px;
  pointer-events: none
}

.ab-auth .ttl__blur-b {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #CFCECE;
  border-radius: 50%;
  opacity: .12;
  filter: blur(40px);
  bottom: 0;
  right: 32px;
  pointer-events: none
}

.ab-auth .ttl__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center
}

.ab-auth .ttl__shape {
  width: 340px;
  height: 420px;
  overflow: hidden;
  border-radius: 20px 0 20px 0;
  position: relative;
  box-shadow: 0 9px 40px -1px #51908b24
}

.ab-auth .ttl__shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ab-auth .ttl__shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #51908b52;
  transition: opacity .4s ease-in-out;
  border-radius: 20px 0 20px 0
}

.ab-auth .ttl__shape:hover::after {
  opacity: 0
}

.ab-auth .ttl__shape:hover img {
  transform: scale(1.04)
}

.ab-auth .prof {
  background: #f4f7f7;
  position: relative;
  padding: 48px 32px
}

.ab-auth .prof__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start
}

.ab-auth .prof__body {
  position: relative
}

.ab-auth .prof__notch {
  border-left: 4px solid #51908B;
  border-bottom: 1px solid #CFCECE;
  padding: 16px 16px 16px 32px;
  margin-bottom: 32px;
  background: #ffffffb3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 12px 12px 0
}

.ab-auth .prof__notch-h {
  font-size: 20px;
  line-height: 1.4;
  color: #2a2a2a;
  margin-bottom: 8px
}

.ab-auth .prof__notch-p {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  text-align: justify;
  margin: 0
}

.ab-auth .prof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.ab-auth .prof__item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 3px 2px -1px #64646412;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ab-auth .prof__item:hover {
  box-shadow: 0 9px 40px -1px #51908b24;
  transform: translateY(-2px)
}

.ab-auth .prof__item-label {
  font-size: 14px;
  letter-spacing: .1em;
  color: #51908B;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.ab-auth .prof__item-val {
  font-size: 15px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 0
}

.ab-auth .prof__side {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ab-auth .prof__stat {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 14px -1px #51908b14
}

.ab-auth .prof__stat-num {
  font-size: 36px;
  line-height: 1.2;
  color: #51908B;
  display: block;
  margin-bottom: 4px
}

.ab-auth .prof__stat-desc {
  font-size: 14px;
  line-height: 1.4;
  color: #646464;
  margin: 0
}

.ab-auth .xp {
  position: relative;
  padding: 48px 32px;
  background: #fff;
  overflow: hidden
}

.ab-auth .xp__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: #51908B;
  opacity: .04;
  pointer-events: none
}

.ab-auth .xp__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.ab-auth .xp__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start
}

.ab-auth .xp__col-h {
  font-size: 26px;
  line-height: 1.4;
  color: #2a2a2a;
  margin-bottom: 16px;
  position: relative;
  display: inline-block
}

.ab-auth .xp__col-h::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: #51908B;
  border-radius: 2px;
  transition: width .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ab-auth .xp__col-h:hover::after,
.ab-auth .xp__col:hover .xp__col-h::after {
  width: 100%
}

.ab-auth .xp__col-p {
  font-size: 15px;
  line-height: 1.6;
  color: #646464;
  text-align: justify;
  margin-bottom: 16px
}

.ab-auth .xp__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ab-auth .xp__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #646464
}

.ab-auth .xp__list li svg {
  flex-shrink: 0;
  margin-top: 3px
}

.ab-auth .xp__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.ab-auth .xp__img-box {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 14px -1px #51908b14
}

.ab-auth .xp__img-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ab-auth .xp__img-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #51908b47;
  transition: opacity .4s ease-in-out
}

.ab-auth .xp__img-box:hover::after {
  opacity: 0
}

.ab-auth .xp__img-box:hover img {
  transform: scale(1.05)
}

.ab-auth .xp__img-box--tall {
  grid-row: span 2
}

.ab-auth .xp__img-box--tall img {
  height: 100%;
  min-height: 200px
}

.ab-auth .xp__table-wrap {
  overflow-x: auto
}

.ab-auth .xp__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px
}

.ab-auth .xp__table thead tr {
  background: #51908B;
  color: #fff
}

.ab-auth .xp__table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  letter-spacing: .06em;
  font-weight: 600
}

.ab-auth .xp__table thead th:first-child {
  border-radius: 12px 0 0 0
}

.ab-auth .xp__table thead th:last-child {
  border-radius: 0 12px 0 0
}

.ab-auth .xp__table tbody tr {
  border-bottom: 1px solid #CFCECE;
  transition: background .32s ease-in-out
}

.ab-auth .xp__table tbody tr:hover {
  background: #51908b0d
}

.ab-auth .xp__table tbody td {
  padding: 12px 16px;
  color: #646464;
  line-height: 1.4
}

.ab-auth .xp__table tbody td:first-child {
  color: #2a2a2a;
  font-weight: 500
}

.ab-auth .xp__table .check {
  color: #51908B
}

.ab-auth .xp__table .dash {
  color: #CFCECE
}

.ab-auth .xp__table-h {
  font-size: 20px;
  line-height: 1.4;
  color: #2a2a2a;
  margin-bottom: 16px
}

.ab-auth .feat {
  background: linear-gradient(160deg, #646464 0%, #51908B 55%, #c8d8d7 100%);
  padding: 48px 32px;
  position: relative;
  overflow: hidden
}

.ab-auth .feat__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 1
}

.ab-auth .feat__card {
  background: #ffffff1f;
  border-radius: 12px;
  padding: 32px 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid #ffffff2e;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .38s ease-in-out, transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ab-auth .feat__card:hover {
  background: #fff3;
  transform: translateY(-4px)
}

.ab-auth .feat__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3;
  border-radius: 12px
}

.ab-auth .feat__card-h {
  font-size: 17px;
  line-height: 1.4;
  color: #fff;
  margin: 0
}

.ab-auth .feat__card-p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffffd1;
  margin: 0;
  text-align: justify
}

.ab-auth .feat__card--accent {
  background: #ffffff38;
  border-color: #ffffff59
}

.ab-auth .feat__card--accent .feat__card-h {
  font-size: 20px
}

.ab-auth .feat__quote {
  font-size: 26px;
  line-height: 1.4;
  color: #fffffff2;
  border-left: 3px solid #ffffff80;
  padding-left: 16px;
  margin: 0 0 16px
}

.ab-auth .feat__cite {
  font-size: 14px;
  color: #ffffffb3;
  letter-spacing: .08em;
  margin: 0
}

.ab-auth .feat__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff6;
  padding-bottom: 4px;
  transition: border-color .32s ease-in-out, gap .32s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ab-auth .feat__link:hover {
  border-color: #fff;
  gap: 12px
}

.ab-auth .feat__bg-geo {
  position: absolute;
  border-radius: 50%;
  background: #ffffff0f;
  pointer-events: none
}

@keyframes ab-flip-in {
  from {
    transform: rotateY(-90deg);
    opacity: 0
  }

  to {
    transform: rotateY(0deg);
    opacity: 1
  }
}

.ab-auth .ttl__txt {
  animation: ab-flip-in .45s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

.ab-auth .ttl__img-wrap {
  animation: ab-flip-in .45s cubic-bezier(0.34, 1.2, 0.64, 1) .12s both
}

@keyframes ab-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.ab-auth .prof__inner {
  animation: ab-fade-up .45s ease-in-out .08s both
}

.ab-auth .xp__inner {
  animation: ab-fade-up .45s ease-in-out .1s both
}

.ab-auth .feat__inner {
  animation: ab-fade-up .45s ease-in-out .06s both
}

@media (max-width: 960px) {
  .ab-auth .ttl {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ab-auth .ttl__img-wrap {
    order: -1
  }

  .ab-auth .ttl__shape {
    width: 100%;
    max-width: 360px;
    height: 300px
  }

  .ab-auth .prof__inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ab-auth .prof__side {
    flex-direction: row;
    flex-wrap: wrap
  }

  .ab-auth .prof__stat {
    flex: 1;
    min-width: 120px
  }

  .ab-auth .xp__top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ab-auth .feat__inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }
}

@media (max-width: 480px) {
  .ab-auth .ttl {
    padding: 32px 16px
  }

  .ab-auth .ttl__h1 {
    font-size: 36px
  }

  .ab-auth .prof {
    padding: 32px 16px
  }

  .ab-auth .prof__grid {
    grid-template-columns: 1fr
  }

  .ab-auth .xp {
    padding: 32px 16px
  }

  .ab-auth .xp__imgs {
    grid-template-columns: 1fr
  }

  .ab-auth .xp__img-box--tall {
    grid-row: span 1
  }

  .ab-auth .feat {
    padding: 32px 16px
  }

  .ab-auth .feat__inner {
    grid-template-columns: 1fr
  }
}

.suc-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 48px 16px;
  background: #fff
}

.suc-page .suc__wrap {
  max-width: 560px;
  width: 100%;
  text-align: center;
  padding: 48px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 14px -1px #51908b14 0 9px 40px -1px #51908b24;
  background: #fff;
  border-top: 2px solid #51908B
}

.suc-page .suc__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #51908B 0%, #CFCECE 100%)
}

.suc-page .suc__icon svg {
  display: block
}

.suc-page .suc__title {
  font-size: 36px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.suc-page .suc__title span {
  display: inline-block;
  position: relative
}

.suc-page .suc__title span::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #51908B;
  border-radius: 2px;
  margin-top: 4px;
  animation: suc-line .45s cubic-bezier(0.34, 1.2, 0.64, 1) .3s forwards
}

@keyframes suc-line {
  to {
    width: 100%
  }
}

.suc-page .suc__msg {
  font-size: 17px;
  line-height: 1.6;
  color: #646464;
  margin: 0 0 32px;
  text-align: justified
}

.suc-page .suc__divider {
  width: 48px;
  height: 2px;
  background: #CFCECE;
  border-radius: 2px;
  margin: 0 auto 32px
}

.suc-page .suc__note {
  font-size: 14px;
  line-height: 1.4;
  color: #646464;
  letter-spacing: .03em;
  margin: 0 0 32px
}

.suc-page .suc__note a {
  color: #51908B;
  text-decoration: none;
  border-bottom: 1px solid #51908b4d;
  transition: border-color .35s ease-in-out, color .35s ease-in-out
}

.suc-page .suc__note a:hover {
  color: #3d6e6a;
  border-bottom-color: #3d6e6a
}

.suc-page .suc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  background: #51908B;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 2px -1px #51908b12 0 4px 14px -1px #51908b14;
  transition: background .4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .4s ease-in-out
}

.suc-page .suc__btn svg {
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.suc-page .suc__btn:hover {
  background: #3d6e6a;
  box-shadow: 0 4px 14px -1px #51908b24 0 9px 40px -1px #51908b24
}

.suc-page .suc__btn:hover svg {
  transform: translateX(4px)
}

.suc-page .suc__btn:focus-visible {
  outline: 2px solid #51908B;
  outline-offset: 3px
}

@media (max-width: 480px) {
  .suc-page .suc__wrap {
    padding: 32px 16px
  }

  .suc-page .suc__title {
    font-size: 26px
  }
}