@import "https://cdn.jsdelivr.net/npm/@fontsource/source-code-pro@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-code-pro@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/source-code-pro@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/bitter@latest/700.css";

html {
  box-sizing: border-box
}

body {
  margin: 0
}

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

:focus-visible {
  outline: 2px dashed #4E8085;
  outline-offset: 3px
}

.pg_hdr {
  padding: 16px;
  background: #fff
}

.hdr_shell {
  max-width: 1440px;
  margin: 0 auto;
  background: linear-gradient(135deg, #EAF1F0 0%, #fff 60%, #EAF1F0 100%);
  border-radius: 40px;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative
}

.brand_mount {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none
}

.logo_card {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #4e80852e;
  box-shadow: -1px 3px 3px 1px #4e80850f 0 0 0 3px #eaf1f0cc;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 72px;
  overflow: hidden
}

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

.brand_name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #2a4a4e;
  letter-spacing: -.01em;
  line-height: 1.2;
  white-space: nowrap
}

.brand_sub {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 300;
  color: #4E8085;
  letter-spacing: .04em;
  line-height: 1.5;
  display: block
}

.primary_nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center
}

.nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center
}

.nav_list li a {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #2a4a4e;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  display: inline-block;
  letter-spacing: .02em;
  line-height: 1.5;
  transition: background-color .38s cubic-bezier(0.34, 1.2, 0.64, 1), color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
  overflow: hidden
}

.nav_list li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #4E8085;
  border-radius: 5px;
  transition: height .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.nav_list li a:hover::before,
.nav_list li a:focus-visible::before {
  height: 100%
}

.nav_list li a span {
  position: relative;
  z-index: 1
}

.nav_list li a:hover,
.nav_list li a:focus-visible {
  color: #fff
}

.nav_list li a[aria-current="page"] {
  background: #4e80851f;
  color: #2a4a4e;
  font-weight: 700
}

.hdr_notice {
  flex-shrink: 0;
  display: flex;
  align-items: center
}

.notice_pill {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #fff;

  border-radius: 40px;
  padding: 8px 16px;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.5;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: box-shadow .42s ease-in-out
}

.notice_pill::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #6B919E;
  border-radius: 40px;
  transition: height .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.notice_pill:hover::before,
.notice_pill:focus-visible::before {
  height: 100%
}

.notice_pill:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f
}

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

@media (max-width: 1280px) {
  .hdr_shell {
    padding: 16px 24px;
    gap: 16px
  }

  .brand_name {
    font-size: 16px
  }

  .logo_card {
    width: 110px;
    height: 64px
  }
}

@media (max-width: 768px) {
  .pg_hdr {
    padding: 8px
  }

  .hdr_shell {
    flex-wrap: wrap;
    padding: 16px;
    border-radius: 5px;
    gap: 16px
  }

  .brand_mount {
    flex: 1 1 auto
  }

  .hdr_notice {
    flex: 0 0 auto
  }

  .primary_nav {
    flex: 0 0 100%;
    order: 3
  }

  .nav_list {
    gap: 4px
  }

  .nav_list li a {
    padding: 8px 12px;
    font-size: 16px
  }
}

.pg_ftr {
  background: linear-gradient(180deg, #EAF1F0 0%, #d8e8e7 100%);
  padding: 32px 16px;
  margin-top: 32px
}

.ftr_shell {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

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

.ftr_logo_card {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #4e80852e;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  overflow: hidden
}

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

.ftr_brand_name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #2a4a4e;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-align: center
}

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

.ftr_contact_label {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 300;
  color: #4E8085;
  letter-spacing: .04em;
  line-height: 1.5;
  text-transform: uppercase
}

.ftr_email {
  font-family: 'Bitter', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  color: #2a4a4e;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.5;
  border-bottom: 1px solid #4e80854d;
  padding-bottom: 4px;
  transition: color .36s ease-in-out, border-color .36s ease-in-out
}

.ftr_email:hover,
.ftr_email:focus-visible {
  color: #4E8085;
  border-color: #4E8085
}

.ftr_policy_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0
}

.ftr_policy_nav li a {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #6B919E;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.5;
  padding: 4px 8px;
  border-radius: 5px;
  transition: color .33s ease-in-out, background-color .33s ease-in-out
}

.ftr_policy_nav li a:hover,
.ftr_policy_nav li a:focus-visible {
  color: #2a4a4e;
  background: #4e80851a
}

.ftr_sep {
  width: 60px;
  height: 1px;
  background: #4e808540;
  border: none;
  margin: 0
}

.ftr_copy {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 300;
  color: #4E8085;
  letter-spacing: .03em;
  line-height: 1.5;
  text-align: center
}

.ck_bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 1500;
  width: 100%;
  max-width: 1440px;
  display: none;
  overflow: hidden
}

.ck_inner {
  background: #fff;
  border-top: 2px solid #4E8085;
  box-shadow: -1px 9px 48px 1px #4e80851f;
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap
}

.ck_text_zone {
  flex: 1 1 300px
}

.ck_desc {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 400;
  color: #2a4a4e;
  line-height: 1.5;
  letter-spacing: .01em;
  margin: 0 0 8px
}

.ck_panel {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px
}

.ck_toggle_row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center
}

.ck_toggle_row .pretty {
  margin: 0
}

.ck_toggle_row .pretty label {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  color: #2a4a4e
}

.ck_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap
}

.ck_btn_accept,
.ck_btn_deny,
.ck_btn_detail {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px 16px;
  min-height: 44px;
  letter-spacing: .02em;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  transition: box-shadow .38s ease-in-out, color .38s ease-in-out
}

.ck_btn_accept {
  background: #4E8085;
  color: #fff;
  box-shadow: -1px 3px 3px 1px #4e80850f
}

.ck_btn_accept::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #6B919E;
  transition: height .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.ck_btn_accept:hover::before,
.ck_btn_accept:focus-visible::before {
  height: 100%
}

.ck_btn_accept:hover {
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.ck_btn_accept span,
.ck_btn_deny span,
.ck_btn_detail span {
  position: relative;
  z-index: 1
}

.ck_btn_deny {
  background: #EAF1F0;
  color: #2a4a4e
}

.ck_btn_deny::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #4e808526;
  transition: height .36s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.ck_btn_deny:hover::before,
.ck_btn_deny:focus-visible::before {
  height: 100%
}

.ck_btn_detail {
  background: transparent;
  color: #4E8085;
  border: 1px solid #4e808566;
  font-size: 16px;
  padding: 8px 12px
}

.ck_btn_detail::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #4e808514;
  transition: height .33s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.ck_btn_detail:hover::before,
.ck_btn_detail:focus-visible::before {
  height: 100%
}

@media (max-width: 768px) {
  .ck_inner {
    padding: 16px;
    flex-direction: column
  }

  .ck_actions {
    width: 100%;
    justify-content: flex-end
  }
}

.w-legal-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  color: #2c3e3f;
  line-height: 1.75;
  font-size: 16px
}

.w-legal-article h1 {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1e3233;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #EAF1F0
}

.w-legal-article h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1e3233;
  margin-top: 32px;
  margin-bottom: 16px
}

.w-legal-article h3 {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: #2a4445;
  margin-top: 32px;
  margin-bottom: 16px
}

.w-legal-article h4 {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #2a4445;
  margin-top: 16px;
  margin-bottom: 8px
}

.w-legal-article h5 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #4E8085;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 8px
}

.w-legal-article h6 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #6B919E;
  margin-top: 16px;
  margin-bottom: 8px
}

.w-legal-article strong,
.w-legal-article b {
  color: #1e3233;
  font-weight: 700
}

.w-legal-article a {
  color: #4E8085;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1), text-decoration-color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.w-legal-article a:hover {
  color: #6B919E;
  text-decoration-color: #6B919E
}

.w-legal-article a:visited {
  color: #5a7a7e
}

.w-legal-article hr {
  border: none;
  border-top: 1px solid #EAF1F0;
  margin: 32px 0;
  box-shadow: 0 1px 4px 0 #4e80850f
}

.w-legal-article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
  margin: 32px 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.w-legal-article thead {
  background-color: #4E8085;
  color: #fff
}

.w-legal-article thead th {
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: left;
  border: none
}

.w-legal-article tbody tr {
  background-color: #fff;
  transition: background-color .32s ease-in-out
}

.w-legal-article tbody tr:nth-child(even) {
  background-color: #EAF1F0
}

.w-legal-article tbody tr:hover {
  background-color: #d8eae8
}

.w-legal-article td {
  padding: 16px;
  border-bottom: 1px solid #EAF1F0;
  color: #2c3e3f;
  vertical-align: top
}

.w-legal-article th {
  padding: 16px
}

@media (max-width: 768px) {
  .w-legal-article {
    padding: 16px
  }

  .w-legal-article h1 {
    font-size: 32px
  }

  .w-legal-article h2 {
    font-size: 24px
  }

  .w-legal-article h3 {
    font-size: 19px
  }

  .w-legal-article table {
    display: block;
    overflow-x: auto
  }
}

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

.bl_det .fog_layer {
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(108deg, #ffffff12 0%, #eaf1f01f 50%, #ffffff0a 100%);
  pointer-events: none;
  animation: fog_move 18s ease-in-out infinite alternate;
  z-index: 0
}

@keyframes fog_move {
  0% {
    transform: translateX(0) scaleX(1)
  }

  100% {
    transform: translateX(6%) scaleX(1.04)
  }
}

.bl_det .art_top {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 520px;
  position: relative;
  background: #EAF1F0;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  padding-bottom: 64px
}

@media (max-width: 768px) {
  .bl_det .art_top {
    grid-template-columns: 1fr;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    padding-bottom: 48px
  }
}

.bl_det .art_img_col {
  position: relative;
  overflow: hidden
}

.bl_det .art_img_col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
  transform: scale(1.08);
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.bl_det .art_img_col:hover img {
  transform: scale(1.12)
}

.bl_det .geo_corner_tl {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #4E8085;
  border-left: 2px solid #4E8085;
  pointer-events: none;
  z-index: 1
}

.bl_det .geo_corner_br {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #6B919E;
  border-right: 2px solid #6B919E;
  pointer-events: none;
  z-index: 1
}

.bl_det .art_txt_col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 32px 32px;
  position: relative;
  z-index: 1
}

@media (max-width: 768px) {
  .bl_det .art_txt_col {
    padding: 32px 16px 16px
  }
}

.bl_det .art_kicker {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.bl_det .art_kicker_line {
  width: 28px;
  height: 2px;
  background: #4E8085;
  display: block;
  flex-shrink: 0
}

.bl_det .art_kicker_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .08em;
  color: #4E8085;
  font-weight: 600;
  text-transform: uppercase
}

.bl_det .art_h1 {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3234;
  margin-bottom: 16px;
  font-weight: 700
}

@media (max-width: 1280px) {
  .bl_det .art_h1 {
    font-size: 32px
  }
}

@media (max-width: 768px) {
  .bl_det .art_h1 {
    font-size: 24px
  }
}

.bl_det .art_desc_short {
  font-size: 19px;
  line-height: 1.75;
  color: #2e4f52;
  max-width: 520px
}

@media (max-width: 768px) {
  .bl_det .art_desc_short {
    font-size: 16px
  }
}

.bl_det .art_meta_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 32px
}

.bl_det .meta_views {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #4E8085
}

.bl_det .meta_views svg {
  flex-shrink: 0
}

.bl_det .meta_dot {
  width: 4px;
  height: 4px;
  border-radius: 5px;
  background: #6B919E;
  flex-shrink: 0
}

.bl_det .meta_tag {
  font-size: 16px;
  line-height: 1.5;
  color: #6B919E;
  background: #6b919e1f;
  border-radius: 40px;
  padding: 4px 16px;
  font-weight: 500
}

.bl_det .art_body_wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 32px 32px 64px;
  position: relative;
  background: #fff
}

@media (max-width: 1280px) {
  .bl_det .art_body_wrap {
    grid-template-columns: 1fr 1.6fr;
    padding: 32px 16px 48px
  }
}

@media (max-width: 768px) {
  .bl_det .art_body_wrap {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 16px
  }
}

.bl_det .art_sidebar {
  position: relative
}

.bl_det .sidebar_sticky {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px
}

@media (max-width: 768px) {
  .bl_det .sidebar_sticky {
    position: static
  }
}

.bl_det .sidebar_block {
  background: #EAF1F0;
  border-radius: 5px;
  padding: 16px;
  box-shadow: -1px 3px 3px 1px #4e80850f
}

.bl_det .sidebar_block_head {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1b3234;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #4e808540
}

.bl_det .sidebar_block_head::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #4E8085;
  margin-bottom: 8px
}

.bl_det .toc_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.bl_det .toc_list li {
  font-size: 16px;
  line-height: 1.5;
  color: #2e4f52;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.bl_det .toc_num {
  color: #4E8085;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5
}

.bl_det .toc_link {
  color: #2e4f52;
  text-decoration: none;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.bl_det .toc_link:hover {
  color: #4E8085
}

.bl_det .sidebar_geo_motif {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  padding: 8px 0 0
}

.bl_det .geo_dot {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: #4e80854d;
  flex-shrink: 0
}

.bl_det .geo_dot.active {
  background: #4E8085
}

.bl_det .geo_dash {
  width: 12px;
  height: 2px;
  background: #4e808533;
  flex-shrink: 0
}

.bl_det .art_body_main {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.bl_det .art_body_main .body_p {
  font-size: 19px;
  line-height: 1.75;
  color: #1b3234
}

@media (max-width: 768px) {
  .bl_det .art_body_main .body_p {
    font-size: 16px
  }
}

.bl_det .art_body_main .body_h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3234;
  font-weight: 700;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #4e80852e
}

@media (max-width: 768px) {
  .bl_det .art_body_main .body_h2 {
    font-size: 24px
  }
}

.bl_det .art_body_main .body_h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3234;
  font-weight: 600;
  margin-top: 8px
}

@media (max-width: 768px) {
  .bl_det .art_body_main .body_h3 {
    font-size: 19px
  }
}

.bl_det .art_body_main blockquote {
  margin: 8px 0;
  padding: 16px 16px 16px 24px;
  background: linear-gradient(108deg, #4e808514 0%, #6b919e0d 100%);
  border-radius: 5px;
  position: relative;
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.bl_det .art_body_main blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: #4E8085;
  border-radius: 5px
}

.bl_det .art_body_main blockquote p,
.bl_det .art_body_main blockquote .body_p {
  font-size: 19px;
  line-height: 1.75;
  color: #2e4f52;
  font-style: italic
}

.bl_det .art_body_main cite {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #6B919E;
  font-style: normal;
  margin-top: 8px
}

.bl_det .art_body_main ins {
  text-decoration: none;
  background: #4e808524;
  border-radius: 5px;
  padding: 0 4px;
  color: #1b3234
}

.bl_det .art_body_main small {
  font-size: 16px;
  line-height: 1.5;
  color: #6B919E;
  display: block
}

.bl_det .art_body_main ul {
  padding-left: 8px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none
}

.bl_det .art_body_main ul li {
  font-size: 19px;
  line-height: 1.75;
  color: #1b3234;
  padding-left: 24px;
  position: relative
}

.bl_det .art_body_main ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #4E8085;
  font-weight: 700
}

@media (max-width: 768px) {
  .bl_det .art_body_main ul li {
    font-size: 16px
  }
}

.bl_det .art_body_main ol {
  padding-left: 8px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  counter-reset: art_counter
}

.bl_det .art_body_main ol li {
  font-size: 19px;
  line-height: 1.75;
  color: #1b3234;
  padding-left: 32px;
  position: relative;
  counter-increment: art_counter
}

.bl_det .art_body_main ol li::before {
  content: counter(art_counter);
  position: absolute;
  left: 0;
  color: #4E8085;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.75
}

@media (max-width: 768px) {
  .bl_det .art_body_main ol li {
    font-size: 16px
  }

  .bl_det .art_body_main ol li::before {
    font-size: 16px
  }
}

.bl_det .art_body_main details {
  background: #eaf1f0b3;
  border-radius: 5px;
  padding: 16px;
  box-shadow: -1px 3px 3px 1px #4e80850f
}

.bl_det .art_body_main summary {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
  color: #4E8085;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.bl_det .art_body_main summary::-webkit-details-marker {
  display: none
}

.bl_det .art_body_main summary::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #4E8085;
  border-bottom: 2px solid #4E8085;
  transform: rotate(-45deg);
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  flex-shrink: 0
}

.bl_det .art_body_main details[open] summary::before {
  transform: rotate(45deg)
}

.bl_det .art_body_main details> :not(summary) {
  margin-top: 16px
}

.bl_det .back_btn_wrap {
  padding: 32px 32px 0;
  display: flex;
  flex-direction: row;
  align-items: center
}

@media (max-width: 768px) {
  .bl_det .back_btn_wrap {
    padding: 32px 16px 0
  }
}

.bl_det .btn_back {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  background: #4E8085;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s ease-in-out
}

.bl_det .btn_back::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #1b3234;
  border-radius: 5px;
  transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.bl_det .btn_back:hover::after {
  bottom: 0
}

.bl_det .btn_back:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f
}

.bl_det .btn_back span,
.bl_det .btn_back svg {
  position: relative;
  z-index: 1
}

.bl_det .btn_back:focus-visible {
  outline: 2px solid #1b3234;
  outline-offset: 2px
}

.bl_det .geom_edge {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  padding: 16px 32px
}

@media (max-width: 768px) {
  .bl_det .geom_edge {
    padding: 16px
  }
}

.bl_det .geom_edge .g_sq {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #4e80852e;
  flex-shrink: 0
}

.bl_det .geom_edge .g_sq.lit {
  background: #4E8085
}

.bl_det .geom_edge .g_ln {
  width: 16px;
  height: 2px;
  background: #4e808526;
  flex-shrink: 0
}

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

.msn .splt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px
}

.msn .splt-txt {
  background: #EAF1F0;
  padding: 64px 48px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.msn .splt-txt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 48px 48px 0;
  border-color: transparent #4E8085 transparent transparent
}

.msn .splt-img {
  position: relative;
  overflow: hidden;
  background: #2a5055
}

.msn .splt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(0px);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 60%, transparent 100%);
  transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform
}

.msn .splt-img::before {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  background: #4e80852e;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none
}

.msn .splt-img:hover img {
  transform: scale(1.04)
}

.msn .acnt-line {
  width: 40px;
  height: 3px;
  background: #4E8085;
  margin-bottom: 16px;
  border-radius: 5px
}

.msn .splt-h1 {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3b3f;
  margin: 0 0 16px;
  animation: colorshift .38s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

@keyframes colorshift {
  from {
    color: #6B919E
  }

  to {
    color: #1b3b3f
  }
}

.msn .splt-tag {
  font-size: 19px;
  line-height: 1.5;
  color: #3a6065;
  margin: 0 0 32px
}

.msn .lnk-grp {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

.msn .btn-pri {
  display: inline-block;
  padding: 12px 32px;
  background: #4E8085;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 5px;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  transition: color .35s ease-in-out, box-shadow .35s ease-in-out;
  z-index: 0
}

.msn .btn-pri::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #1b3b3f;
  border-radius: 5px;
  transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: -1
}

.msn .btn-pri:hover::before {
  bottom: 0
}

.msn .btn-sec {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: #4E8085;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 5px;
  border: 2px solid #4E8085;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: color .4s ease-in-out, border-color .4s ease-in-out;
  z-index: 0
}

.msn .btn-sec::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #EAF1F0;
  border-radius: 5px;
  transition: bottom .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: -1
}

.msn .btn-sec:hover::before {
  bottom: 0
}

.msn .pillars {
  padding: 64px;
  background: #fff;
  position: relative
}

.msn .pillars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #EAF1F0 transparent transparent;
  pointer-events: none
}

.msn .pil-hd {
  text-align: center;
  margin-bottom: 48px
}

.msn .pil-hd .acnt-line {
  margin: 0 auto 16px
}

.msn .pil-h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3b3f;
  margin: 0 0 8px
}

.msn .pil-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #3a6065;
  margin: 0
}

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

.msn .col3 .card {
  border-radius: 5px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.msn .col3 .card:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f;
  transform: translateY(-4px)
}

.msn .col3 .card.bg-a {
  background: linear-gradient(160deg, #4E8085 0%, #6B919E 100%);
  color: #fff
}

.msn .col3 .card.bg-b {
  background: #EAF1F0
}

.msn .col3 .card.bg-c {
  background: #1b3b3f;
  color: #EAF1F0
}

.msn .col3 .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none
}

.msn .col3 .card.bg-a::after {
  background: #ffffff1a
}

.msn .col3 .card.bg-b::after {
  background: #4e80851f
}

.msn .col3 .card.bg-c::after {
  background: #4e808540
}

.msn .card-num {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 8px;
  animation: colorshift .42s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

.msn .card.bg-a .card-num {
  color: #ffffffd9
}

.msn .card.bg-b .card-num {
  color: #4E8085
}

.msn .card.bg-c .card-num {
  color: #6B919E
}

.msn .card-h4 {
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 8px
}

.msn .card.bg-a .card-h4 {
  color: #fff
}

.msn .card.bg-b .card-h4 {
  color: #1b3b3f
}

.msn .card.bg-c .card-h4 {
  color: #EAF1F0
}

.msn .card-p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0
}

.msn .card.bg-a .card-p {
  color: #ffffffd9
}

.msn .card.bg-b .card-p {
  color: #3a6065
}

.msn .card.bg-c .card-p {
  color: #eaf1f0cc
}

.msn .cnt-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2
}

.msn .card.bg-a .cnt-badge {
  background: #ffffff2e;
  color: #fff
}

.msn .card.bg-b .cnt-badge {
  background: #4E8085;
  color: #fff
}

.msn .card.bg-c .cnt-badge {
  background: #6b919e59;
  color: #EAF1F0
}

.msn .approach {
  padding: 64px;
  background: linear-gradient(160deg, #EAF1F0 0%, #c8dcd9 100%);
  position: relative;
  overflow: hidden
}

.msn .approach::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -32px;
  width: 160px;
  height: 160px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #4e808517;
  pointer-events: none
}

.msn .appr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto
}

.msn .appr-img-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 9px 48px 1px #4e80851f
}

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

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

.msn .appr-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4e80852e;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none
}

.msn .appr-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 48px;
  border-color: transparent transparent #4E8085;
  z-index: 2;
  pointer-events: none
}

.msn .appr-txt .acnt-line {
  margin-bottom: 16px
}

.msn .appr-h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3b3f;
  margin: 0 0 16px
}

.msn .appr-p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a6065;
  margin: 0 0 16px
}

.msn .appr-p:last-of-type {
  margin-bottom: 32px
}

.msn .appr-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.msn .appr-list li {
  font-size: 16px;
  line-height: 1.5;
  color: #1b3b3f;
  padding-left: 24px;
  position: relative
}

.msn .appr-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #4E8085;
  font-size: 16px
}

.msn .appr-list .li-num {
  color: #4E8085;
  font-weight: 700;
  margin-right: 4px
}

@media (max-width: 1280px) {
  .msn .splt {
    grid-template-columns: 1fr 1fr
  }

  .msn .splt-txt {
    padding: 48px 32px 48px 48px
  }

  .msn .pillars {
    padding: 48px 32px
  }

  .msn .approach {
    padding: 48px 32px
  }

  .msn .appr-inner {
    gap: 32px
  }
}

@media (max-width: 768px) {
  .msn .splt {
    grid-template-columns: 1fr
  }

  .msn .splt-img {
    min-height: 280px
  }

  .msn .splt-txt {
    padding: 32px 16px
  }

  .msn .splt-h1 {
    font-size: 32px
  }

  .msn .pillars {
    padding: 32px 16px
  }

  .msn .col3 {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .msn .approach {
    padding: 32px 16px
  }

  .msn .appr-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .msn .appr-img-wrap img {
    height: 240px
  }

  .msn .lnk-grp {
    flex-direction: column;
    gap: 8px
  }
}

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

.prs .pb-hero {
  position: relative;
  padding: 64px 32px;
  background: #EAF1F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.prs .pb-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.prs .pb-blob {
  position: absolute;
  border-radius: 40px;
  filter: blur(48px);
  opacity: .38
}

.prs .pb-blob.a {
  width: 340px;
  height: 220px;
  background: #4E8085;
  top: -40px;
  left: -60px
}

.prs .pb-blob.b {
  width: 260px;
  height: 180px;
  background: #6B919E;
  bottom: -30px;
  right: -40px
}

.prs .pb-blob.c {
  width: 180px;
  height: 140px;
  background: #4E8085;
  top: 30px;
  right: 18%;
  opacity: .22
}

.prs .pb-tag {
  display: inline-block;
  font-size: 16px;
  letter-spacing: .08em;
  color: #4E8085;
  background: #fff;
  border-radius: 5px;
  padding: 4px 16px;
  margin-bottom: 16px;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  position: relative;
  z-index: 1
}

.prs .pb-h1 {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1b3a3d;
  max-width: 820px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1
}

.prs .pb-h1 .punct {
  color: #4E8085
}

.prs .pb-sub {
  font-size: 19px;
  line-height: 1.75;
  color: #3a5a5e;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1
}

.prs .pb-img-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 9px 48px 1px #4e80851f;
  z-index: 1;
  margin: 0 auto
}

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

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

.prs .pb-caption {
  position: absolute;
  inset: 0;
  background: #4e8085b8;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity .38s ease-in-out
}

.prs .pb-img-wrap:hover .pb-caption {
  opacity: 1
}

.prs .pb-caption-txt {
  font-size: 19px;
  line-height: 1.5;
  color: #fff;
  max-width: 520px
}

.prs .pb-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, #ffffff8c 0%, transparent 65%);
  pointer-events: none
}

.prs .pn-strip {
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border-bottom: 2px solid #EAF1F0
}

.prs .pn-num-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  position: relative
}

.prs .pn-num-block+.pn-num-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: #EAF1F0
}

.prs .pn-pair {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px
}

.prs .pn-before {
  font-size: 32px;
  line-height: 1.2;
  color: #6B919E;
  letter-spacing: -.02em;
  text-decoration: line-through;
  opacity: .6
}

.prs .pn-after {
  font-size: 44px;
  line-height: 1.2;
  color: #4E8085;
  letter-spacing: -.03em;
  font-weight: 700
}

.prs .pn-label {
  font-size: 16px;
  line-height: 1.5;
  color: #3a5a5e;
  text-align: center;
  letter-spacing: .02em
}

.prs .pa-wrap {
  background: linear-gradient(158deg, #1b3a3d 0%, #4E8085 100%);
  padding: 64px 32px;
  position: relative;
  overflow: hidden
}

.prs .pa-abbr {
  position: absolute;
  font-size: 220px;
  line-height: 1;
  color: #ffffff0a;
  letter-spacing: -.06em;
  top: -32px;
  right: -16px;
  pointer-events: none;
  user-select: none
}

.prs .pa-drift {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 40px;
  background: #4e808538;
  filter: blur(60px);
  pointer-events: none;
  animation: driftmove 7s ease-in-out infinite alternate
}

@keyframes driftmove {
  from {
    transform: translate(0, 0)
  }

  to {
    transform: translate(60px, 40px)
  }
}

.prs .pa-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1
}

.prs .pa-col {
  background: #ffffff12;
  border-radius: 5px;
  padding: 32px;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.prs .pa-col:hover {
  background: #ffffff21
}

.prs .pa-role {
  font-size: 16px;
  letter-spacing: .08em;
  color: #EAF1F0;
  opacity: .7;
  text-transform: uppercase
}

.prs .pa-col-h {
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.01em
}

.prs .pa-col-h::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #6B919E;
  border-radius: 5px;
  margin-bottom: 8px
}

.prs .pa-col-p {
  font-size: 16px;
  line-height: 1.75;
  color: #eaf1f0d9
}

.prs .pa-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.prs .pa-col-list li {
  font-size: 16px;
  line-height: 1.5;
  color: #eaf1f0cc;
  padding-left: 20px;
  position: relative
}

.prs .pa-col-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6B919E
}

.prs .pa-head {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1
}

.prs .pa-head-h {
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.02em
}

.prs .pa-head-h::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #6B919E;
  border-radius: 5px;
  margin: 0 auto 16px
}

.prs .pa-head-p {
  font-size: 19px;
  line-height: 1.75;
  color: #eaf1f0cc;
  max-width: 540px;
  margin: 16px auto 0
}

.prs .pp-wrap {
  background: #EAF1F0;
  padding: 64px 32px
}

.prs .pp-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start
}

.prs .pp-left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 32px
}

.prs .pp-left-h {
  font-size: 32px;
  line-height: 1.2;
  color: #1b3a3d;
  letter-spacing: -.02em
}

.prs .pp-left-h::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  border-radius: 5px;
  margin-bottom: 8px
}

.prs .pp-left-p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a5a5e
}

.prs .pp-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px
}

.prs .pp-contact-item {
  font-size: 16px;
  line-height: 1.5;
  color: #4E8085;
  text-decoration: none;
  padding: 8px 16px;
  background: #fff;
  border-radius: 5px;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  transition: box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s ease-in-out
}

.prs .pp-contact-item:hover {
  box-shadow: -1px 5px 14px 1px #4e80851a;
  color: #1b3a3d
}

.prs .pp-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prs .pp-item {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.prs .pp-item:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f
}

.prs .pp-item-h {
  font-size: 19px;
  line-height: 1.5;
  color: #1b3a3d;
  letter-spacing: -.01em
}

.prs .pp-item-p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a5a5e
}

.prs .pp-badge {
  display: inline-block;
  font-size: 16px;
  color: #4E8085;
  background: #EAF1F0;
  border-radius: 5px;
  padding: 4px 8px;
  align-self: flex-start
}

@media (max-width: 1280px) {
  .prs .pb-h1 {
    font-size: 44px
  }

  .prs .pa-inner {
    grid-template-columns: 1fr 1fr
  }

  .prs .pp-left {
    flex: 0 0 260px
  }
}

@media (max-width: 768px) {
  .prs .pb-h1 {
    font-size: 32px
  }

  .prs .pb-sub {
    font-size: 16px
  }

  .prs .pb-img-wrap img {
    height: 240px
  }

  .prs .pn-strip {
    flex-direction: column;
    gap: 16px
  }

  .prs .pn-num-block+.pn-num-block::before {
    display: none
  }

  .prs .pa-inner {
    grid-template-columns: 1fr
  }

  .prs .pa-abbr {
    font-size: 100px
  }

  .prs .pa-head-h {
    font-size: 32px
  }

  .prs .pp-inner {
    flex-direction: column
  }

  .prs .pp-left {
    flex: none;
    position: static;
    width: 100%
  }

  .prs .pp-left-h {
    font-size: 24px
  }
}

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

.fst .ed-col {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px
}

.fst .ed-col-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

@keyframes txt-sweep {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

.fst .title-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  max-width: 1440px;
  margin: 0 auto
}

.fst .title-txt {
  padding: 32px 16px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.fst .title-txt .sweep-h {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1b3a3d;
  background: linear-gradient(90deg, #1b3a3d 0%, #4E8085 30%, #6B919E 50%, #1b3a3d 70%, #1b3a3d 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: txt-sweep 2.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.fst .title-txt .sub {
  font-size: 19px;
  line-height: 1.75;
  color: #2e5558
}

.fst .title-txt .ed-link {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background: #4E8085;
  padding: 16px 32px;
  border-radius: 5px;
  text-decoration: none;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color .38s ease-in-out;
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.fst .title-txt .ed-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #6B919E;
  transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.fst .title-txt .ed-link:hover::before {
  bottom: 0
}

.fst .title-txt .ed-link span {
  position: relative;
  z-index: 1
}

.fst .title-img-col {
  position: relative
}

.fst .title-img-col .deco-lines {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 0
}

.fst .title-img-col .deco-lines span {
  display: block;
  height: 2px;
  background: #4E8085;
  opacity: .3
}

.fst .title-img-col .deco-lines span:nth-child(1) {
  width: 60px
}

.fst .title-img-col .deco-lines span:nth-child(2) {
  width: 44px
}

.fst .title-img-col .deco-lines span:nth-child(3) {
  width: 28px
}

.fst .title-img-col .deco-lines span:nth-child(4) {
  width: 16px
}

.fst .title-img-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
  position: relative;
  z-index: 1
}

.fst .posts-band {
  background: #EAF1F0;
  padding: 32px 0
}

.fst .posts-band .sec-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #4E8085;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.fst .posts-band .sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px
}

.fst .posts-band h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3a3d;
  margin-bottom: 32px
}

.fst .posts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.fst .post-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  transition: box-shadow .4s ease-in-out, transform .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.fst .post-card:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f;
  transform: translateY(-4px)
}

.fst .post-card .pc-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block
}

.fst .post-card .pc-body {
  padding: 16px
}

.fst .post-card .pc-body h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3a3d;
  margin-bottom: 8px
}

.fst .post-card .pc-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #2e5558;
  margin-bottom: 16px
}

.fst .post-card .pc-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between
}

.fst .post-card .pc-views {
  font-size: 16px;
  color: #6B919E
}

.fst .post-card .pc-read {
  display: inline-block;
  font-size: 16px;
  color: #4E8085;
  text-decoration: none;
  border-radius: 5px;
  padding: 8px 16px;
  border: 1.5px solid #4E8085;
  position: relative;
  overflow: hidden;
  transition: color .35s ease-in-out
}

.fst .post-card .pc-read::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #4E8085;
  transition: bottom .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.fst .post-card .pc-read:hover {
  color: #fff
}

.fst .post-card .pc-read:hover::before {
  bottom: 0
}

.fst .post-card .pc-read span {
  position: relative;
  z-index: 1
}

.fst .map-band {
  padding: 32px 0;
  background: #fff
}

.fst .map-band .sec-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #4E8085;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.fst .map-band .sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px
}

.fst .map-band h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3a3d;
  margin-bottom: 32px
}

.fst .tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.fst .tag-cluster {
  background: #EAF1F0;
  border-radius: 5px;
  padding: 16px;
  transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1), transform .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: default;
  position: relative;
  overflow: hidden
}

.fst .tag-cluster::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #4e80851f;
  transition: border-width .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.fst .tag-cluster:hover::after {
  border-width: 0 0 60px 60px
}

.fst .tag-cluster:hover {
  box-shadow: -1px 5px 14px 1px #4e80851a;
  transform: translateY(-2px)
}

.fst .tag-cluster h4 {
  font-size: 19px;
  line-height: 1.2;
  color: #1b3a3d;
  margin-bottom: 8px
}

.fst .tag-cluster .tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0
}

.fst .tag-cluster .tag-list li a {
  display: inline-block;
  font-size: 16px;
  color: #4E8085;
  background: #fff;
  border-radius: 40px;
  padding: 4px 16px;
  text-decoration: none;
  transition: background .33s ease-in-out, color .33s ease-in-out;
  box-shadow: -1px 3px 3px 1px #4e80850f
}

.fst .tag-cluster .tag-list li a:hover {
  background: #4E8085;
  color: #fff
}

.fst .adj-band {
  background: #4E8085;
  padding: 32px 0
}

.fst .adj-band .sec-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #EAF1F0;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  opacity: .8
}

.fst .adj-band .sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #EAF1F0;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px;
  opacity: .7
}

.fst .adj-band h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 32px
}

.fst .adj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px
}

.fst .adj-item {
  background: #ffffff1a;
  border-radius: 5px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: background .38s ease-in-out
}

.fst .adj-item:hover {
  background: #ffffff2e
}

.fst .adj-item h5 {
  font-size: 19px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 8px
}

.fst .adj-item p {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffd1
}

.fst .author-band {
  padding: 32px 0;
  background: #fff
}

.fst .author-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start
}

.fst .author-img-wrap {
  position: relative
}

.fst .author-img-wrap .deco-lines-b {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 0
}

.fst .author-img-wrap .deco-lines-b span {
  display: block;
  height: 2px;
  background: #6B919E;
  opacity: .35
}

.fst .author-img-wrap .deco-lines-b span:nth-child(1) {
  width: 56px
}

.fst .author-img-wrap .deco-lines-b span:nth-child(2) {
  width: 40px
}

.fst .author-img-wrap .deco-lines-b span:nth-child(3) {
  width: 24px
}

.fst .author-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: -1px 9px 48px 1px #6b919e1f;
  display: block;
  position: relative;
  z-index: 1
}

.fst .author-txt {
  padding: 8px 0
}

.fst .author-txt .sec-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #4E8085;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.fst .author-txt .sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px
}

.fst .author-txt h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3a3d;
  margin-bottom: 16px
}

.fst .author-txt p {
  font-size: 16px;
  line-height: 1.75;
  color: #2e5558;
  margin-bottom: 16px
}

.fst .author-txt .auth-link {
  display: inline-block;
  font-size: 16px;
  color: #4E8085;
  text-decoration: none;
  border-radius: 5px;
  padding: 8px 16px;
  border: 1.5px solid #4E8085;
  position: relative;
  overflow: hidden;
  transition: color .36s ease-in-out
}

.fst .author-txt .auth-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #4E8085;
  transition: bottom .36s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.fst .author-txt .auth-link:hover {
  color: #fff
}

.fst .author-txt .auth-link:hover::before {
  bottom: 0
}

.fst .author-txt .auth-link span {
  position: relative;
  z-index: 1
}

.fst .nums-band {
  background: linear-gradient(160deg, #EAF1F0 0%, #d0e4e6 100%);
  padding: 32px 0
}

.fst .nums-band .sec-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #4E8085;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.fst .nums-band .sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px
}

.fst .nums-band h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3a3d;
  margin-bottom: 32px
}

.fst .nums-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.fst .num-item {
  background: #fff;
  border-radius: 5px;
  padding: 32px 16px 16px;
  text-align: center;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  position: relative
}

.fst .num-item .n-idx {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 16px;
  color: #4E8085;
  font-weight: 700;
  letter-spacing: .04em
}

.fst .num-item .n-val {
  font-size: 44px;
  line-height: 1.2;
  color: #4E8085;
  letter-spacing: -.03em;
  display: block
}

.fst .num-item .n-label {
  font-size: 16px;
  line-height: 1.5;
  color: #2e5558;
  display: block;
  margin-top: 4px
}

.fst .sub-band {
  padding: 32px 0;
  background: #fff
}

.fst .sub-inner {
  background: #EAF1F0;
  border-radius: 5px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.fst .sub-txt .sec-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #4E8085;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.fst .sub-txt .sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px
}

.fst .sub-txt h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3a3d;
  margin-bottom: 16px
}

.fst .sub-txt p {
  font-size: 16px;
  line-height: 1.75;
  color: #2e5558
}

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

.fst .sub-form .field-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.fst .sub-form label {
  font-size: 16px;
  color: #2e5558
}

.fst .sub-form input[type="email"] {
  padding: 16px;
  border: 1.5px solid #6B919E;
  border-radius: 5px;
  font-size: 16px;
  color: #1b3a3d;
  background: #fff;
  outline: none;
  transition: border-color .33s ease-in-out, box-shadow .33s ease-in-out;
  box-shadow: inset -1px 3px 3px 1px #4e80850f
}

.fst .sub-form input[type="email"]::placeholder {
  color: #7fa8ae
}

.fst .sub-form input[type="email"]:focus {
  border-color: #4E8085;
  box-shadow: inset -1px 3px 3px 1px #4e80851a
}

.fst .sub-form .pretty {
  margin: 0
}

.fst .sub-form .pretty .state label {
  font-size: 16px;
  color: #2e5558;
  line-height: 1.5
}

.fst .sub-form .sub-btn {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background: #4E8085;
  padding: 16px 32px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .38s ease-in-out;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  align-self: flex-start
}

.fst .sub-form .sub-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #6B919E;
  transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.fst .sub-form .sub-btn:hover::before {
  bottom: 0
}

.fst .sub-form .sub-btn span {
  position: relative;
  z-index: 1
}

.fst .pick-band {
  background: #fff;
  padding: 32px 0
}

.fst .pick-band .sec-label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #4E8085;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.fst .pick-band .sec-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 5px
}

.fst .pick-band h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3a3d;
  margin-bottom: 32px
}

.fst .pick-seq {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.fst .pick-entry {
  display: grid;
  grid-template-columns: 56px 1fr 280px;
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: #EAF1F0;
  border-radius: 5px;
  transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.fst .pick-entry:hover {
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.fst .pick-entry .p-num {
  font-size: 44px;
  line-height: 1.2;
  color: #4E8085;
  letter-spacing: -.04em;
  font-weight: 700
}

.fst .pick-entry .p-body h5 {
  font-size: 19px;
  line-height: 1.5;
  color: #1b3a3d;
  margin-bottom: 8px
}

.fst .pick-entry .p-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #2e5558
}

.fst .pick-entry .p-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 5px
}

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

.fst .pick-entry:hover .p-img-wrap img {
  transform: scale(1.04)
}

.fst .pick-entry .p-img-wrap .p-link {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background: #4E8085;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background .36s ease-in-out;
  box-shadow: -1px 3px 3px 1px #4e80851f
}

.fst .pick-entry .p-img-wrap .p-link:hover {
  background: #6B919E
}

@media (max-width: 1280px) {
  .fst .title-txt .sweep-h {
    font-size: 44px
  }

  .fst .adj-grid {
    grid-template-columns: 1fr 1fr
  }

  .fst .nums-row {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .fst .title-grid {
    grid-template-columns: 1fr
  }

  .fst .title-txt .sweep-h {
    font-size: 32px
  }

  .fst .title-txt {
    padding: 16px
  }

  .fst .title-img-col img {
    height: 280px
  }

  .fst .posts-row {
    grid-template-columns: 1fr
  }

  .fst .tag-grid {
    grid-template-columns: 1fr 1fr
  }

  .fst .adj-grid {
    grid-template-columns: 1fr
  }

  .fst .author-grid {
    grid-template-columns: 1fr
  }

  .fst .author-img-wrap img {
    height: 220px
  }

  .fst .nums-row {
    grid-template-columns: 1fr 1fr
  }

  .fst .sub-inner {
    grid-template-columns: 1fr
  }

  .fst .pick-entry {
    grid-template-columns: 40px 1fr
  }

  .fst .pick-entry .p-img-wrap {
    display: none
  }

  .fst .ed-col {
    padding: 0 16px
  }

  .fst .ed-col-wide {
    padding: 0 16px
  }
}

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

.blg .pg-top {
  position: relative;
  padding: 64px 32px 48px;
  background: #EAF1F0;
  overflow: hidden
}

.blg .pg-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4E8085, #6B919E, #EAF1F0)
}

.blg .pg-top-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  overflow: hidden
}

.blg .pg-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.blg .pg-top-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #4e80852e 0%, #EAF1F0 70%)
}

.blg .pg-top-txt {
  position: relative;
  z-index: 1;
  max-width: 600px
}

.blg .pg-top-txt h1 {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3a3d;
  margin: 0 0 16px
}

.blg .pg-top-txt h1 span {
  color: #4E8085
}

.blg .pg-top-txt p {
  font-size: 19px;
  line-height: 1.5;
  color: #2e5558;
  margin: 0
}

.blg .dec-circ {
  position: absolute;
  border-radius: 40px;
  pointer-events: none
}

.blg .dec-circ.a {
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: #4e808512;
  top: -40px;
  right: 38%
}

.blg .dec-circ.b {
  width: 110px;
  height: 110px;
  border-radius: 40px;
  background: #6b919e17;
  bottom: 16px;
  right: 42%
}

.blg .posts-area {
  padding: 48px 32px;
  background: #fff
}

.blg .posts-area h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3a3d;
  margin: 0 0 32px;
  padding-top: 12px;
  position: relative;
  display: inline-block
}

.blg .posts-area h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #4E8085;
  margin-bottom: 8px;
  border-radius: 5px
}

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

.blg .card {
  border-radius: 5px;
  background: #fff;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  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 .card:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f;
  transform: translateY(-4px)
}

.blg .card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden
}

.blg .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease-in-out
}

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

.blg .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #1b3a3d61 100%);
  pointer-events: none
}

.blg .card-views {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #4e8085d1;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  padding: 4px 8px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  z-index: 1
}

.blg .card-views svg {
  width: 14px;
  height: 14px;
  fill: #fff
}

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

.blg .card-body h3 {
  font-size: 19px;
  line-height: 1.5;
  color: #1b3a3d;
  margin: 0
}

.blg .card-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a6165;
  margin: 0;
  flex: 1
}

.blg .card-lnk {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  background: #4E8085;
  border-radius: 5px;
  text-decoration: none;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color .35s ease-in-out
}

.blg .card-lnk::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #1b3a3d;
  border-radius: 5px;
  transition: height .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.blg .card-lnk:hover::before {
  height: 100%
}

.blg .card-lnk span {
  position: relative;
  z-index: 1
}

.blg .tools-strip {
  padding: 48px 32px;
  background: linear-gradient(160deg, #EAF1F0 0%, #d0e4e6 100%);
  position: relative;
  overflow: hidden
}

@keyframes gradshift {
  0% {
    background-position: 0 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0 50%
  }
}

.blg .tools-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1
}

.blg .tools-strip h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #1b3a3d;
  margin: 0 0 16px;
  padding-top: 12px;
  position: relative
}

.blg .tools-strip h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #4E8085;
  margin-bottom: 8px;
  border-radius: 5px
}

.blg .tools-strip p {
  font-size: 16px;
  line-height: 1.75;
  color: #2e5558;
  margin: 0
}

.blg .tools-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.blg .tools-table th {
  background: #4E8085;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  padding: 8px 16px;
  text-align: left
}

.blg .tools-table td {
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 16px;
  border-bottom: 1px solid #4e80851f;
  color: #1b3a3d
}

.blg .tools-table tr:last-child td {
  border-bottom: none
}

.blg .tools-table .lvl-h {
  background: #4e80852e;
  font-weight: 700
}

.blg .tools-table .lvl-m {
  background: #6b919e1f
}

.blg .tools-table .lvl-l {
  background: #eaf1f0b3
}

.blg .tools-table tr:nth-child(even) td {
  background: #eaf1f066
}

.blg .tools-table .lvl-h,
.blg .tools-table .lvl-m,
.blg .tools-table .lvl-l {
  border-radius: 5px
}

.blg .frosted-band {
  padding: 48px 32px;
  background: linear-gradient(160deg, #4E8085 0%, #6B919E 100%);
  background-size: 200% 200%;
  animation: gradshift 8s ease-in-out infinite;
  position: relative
}

.blg .frosted-band-inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch
}

.blg .frosted-card {
  flex: 1;
  background: #ffffff21;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 5px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px #ffffff2e -1px 5px 14px 1px #4e80851a
}

.blg .frosted-card h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
  padding-top: 12px;
  position: relative
}

.blg .frosted-card h3::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #EAF1F0;
  margin-bottom: 8px;
  border-radius: 5px
}

.blg .frosted-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffe6;
  margin: 0
}

.blg .frosted-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0
}

.blg .frosted-card ul li {
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffe6;
  padding: 4px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.blg .frosted-card ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 40px;
  background: #EAF1F0;
  margin-top: 8px
}

.blg .sub-form-area {
  padding: 48px 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

.blg .sub-form-area h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #1b3a3d;
  margin: 0;
  text-align: center;
  padding-top: 12px;
  position: relative
}

.blg .sub-form-area h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #4E8085;
  margin: 0 auto 8px;
  border-radius: 5px
}

.blg .sub-form-area p {
  font-size: 19px;
  line-height: 1.5;
  color: #3a6165;
  margin: 0;
  text-align: center;
  max-width: 520px
}

.blg .sub-form {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

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

.blg .sub-form label {
  font-size: 16px;
  line-height: 1.2;
  color: #2e5558
}

.blg .sub-form input[type="text"],
.blg .sub-form input[type="email"] {
  padding: 8px 16px;
  border: 1.5px solid #4e80854d;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
  color: #1b3a3d;
  background: #fff;
  box-shadow: inset -1px 3px 3px 1px #4e80850f;
  transition: border-color .33s ease-in-out, box-shadow .33s ease-in-out;
  outline: none
}

.blg .sub-form input[type="text"]::placeholder,
.blg .sub-form input[type="email"]::placeholder {
  color: #2e555873
}

.blg .sub-form input[type="text"]:focus,
.blg .sub-form input[type="email"]:focus {
  border-color: #4E8085;
  box-shadow: inset -1px 3px 3px 1px #4e80851a
}

.blg .sub-form .chk-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.blg .sub-form .chk-lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #3a6165
}

.blg .sub-form .btn-sub {
  padding: 8px 32px;
  font-size: 19px;
  line-height: 1.5;
  color: #fff;
  background: #4E8085;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  transition: color .4s ease-in-out
}

.blg .sub-form .btn-sub::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #1b3a3d;
  border-radius: 5px;
  transition: height .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.blg .sub-form .btn-sub:hover::before {
  height: 100%
}

.blg .sub-form .btn-sub span {
  position: relative;
  z-index: 1
}

.blg .sub-form .btn-sub:focus {
  outline: 2px solid #1b3a3d;
  outline-offset: 2px
}

.blg .metrics-row {
  padding: 48px 32px;
  background: #EAF1F0;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.blg .metrics-row h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #1b3a3d;
  margin: 0;
  padding-top: 12px;
  position: relative
}

.blg .metrics-row h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #4E8085;
  margin-bottom: 8px;
  border-radius: 5px
}

.blg .met-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.blg .met-item {
  background: #fff;
  border-radius: 5px;
  padding: 32px 16px;
  text-align: center;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  transition: box-shadow .36s cubic-bezier(0.34, 1.2, 0.64, 1), transform .36s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.blg .met-item:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f;
  transform: translateY(-3px)
}

.blg .met-num {
  font-size: 44px;
  line-height: 1.2;
  color: #4E8085;
  letter-spacing: -.02em;
  display: block
}

.blg .met-lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #3a6165;
  display: block;
  margin-top: 4px
}

.blg .dec-strip {
  height: 4px;
  background: linear-gradient(90deg, #EAF1F0, #4E8085, #6B919E, #EAF1F0);
  border: none;
  margin: 0
}

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

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

  .blg .pg-top-txt h1 {
    font-size: 44px
  }
}

@media (max-width: 768px) {
  .blg .pg-top {
    padding: 32px 16px
  }

  .blg .pg-top-img {
    display: none
  }

  .blg .pg-top-txt h1 {
    font-size: 32px
  }

  .blg .pg-top-txt p {
    font-size: 16px
  }

  .blg .posts-area,
  .blg .tools-strip,
  .blg .frosted-band,
  .blg .sub-form-area,
  .blg .metrics-row {
    padding: 32px 16px
  }

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

  .blg .tools-strip-inner {
    grid-template-columns: 1fr
  }

  .blg .frosted-band-inner {
    flex-direction: column
  }

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

  .blg .sub-form {
    max-width: 100%
  }
}

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

.auth-pg .strip {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4E8085 0%, #6B919E 60%, transparent 100%)
}

.auth-pg .bio-band {
  padding: 32px;
  background: linear-gradient(160deg, #EAF1F0 0%, #fff 50%, #EAF1F0 100%);
  position: relative
}

.auth-pg .bio-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse at 0% 0%, #4e808521 0%, transparent 70%);
  pointer-events: none
}

.auth-pg .bio-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto
}

.auth-pg .bio-img-wrap {
  flex: 0 0 auto;
  width: 220px;
  height: 260px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  position: relative
}

.auth-pg .bio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .88;
  transition: opacity .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.auth-pg .bio-img-wrap img:hover {
  opacity: 1
}

.auth-pg .bio-img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, #eaf1f08c 0%, transparent 100%);
  pointer-events: none
}

.auth-pg .bio-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.auth-pg .bio-text .acc-line {
  display: block;
  width: 36px;
  height: 3px;
  background: #4E8085;
  border-radius: 5px;
  margin-bottom: 4px
}

.auth-pg .bio-text h1 {
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b3638;
  margin: 0
}

.auth-pg .bio-text .role-lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #4E8085;
  letter-spacing: .04em;
  margin: 0
}

.auth-pg .bio-text p {
  font-size: 19px;
  line-height: 1.75;
  color: #2c4a4d;
  margin: 0
}

.auth-pg .bio-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 40px;
  background: #6B919E;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0
}

.auth-pg .bio-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px
}

.auth-pg .bio-meta .m-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #2c4a4d
}

.auth-pg .divider-a {
  width: 100%;
  height: 32px;
  background: linear-gradient(180deg, #EAF1F0 0%, transparent 100%)
}

.auth-pg .exp-band {
  padding: 32px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.auth-pg .exp-band::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(ellipse at 100% 100%, #6b919e17 0%, transparent 70%);
  pointer-events: none;
  animation: bleed-corner 6s ease-in-out infinite alternate
}

@keyframes bleed-corner {
  0% {
    opacity: .4;
    transform: scale(0.9)
  }

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

.auth-pg .exp-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.auth-pg .exp-inner .acc-line {
  display: block;
  width: 36px;
  height: 3px;
  background: #4E8085;
  border-radius: 5px;
  margin-bottom: 4px
}

.auth-pg .exp-inner h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3638;
  margin: 0
}

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

.auth-pg .exp-card {
  background: #EAF1F0;
  border-radius: 5px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1), transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.auth-pg .exp-card:hover {
  box-shadow: -1px 9px 48px 1px #4e80851f;
  transform: translateY(-2px)
}

.auth-pg .exp-card h4 {
  font-size: 19px;
  line-height: 1.5;
  color: #1b3638;
  margin: 0
}

.auth-pg .exp-card p {
  font-size: 16px;
  line-height: 1.75;
  color: #2c4a4d;
  margin: 0
}

.auth-pg .exp-card .card-num {
  font-size: 32px;
  line-height: 1.2;
  color: #4E8085;
  font-weight: 700;
  letter-spacing: -.02em
}

.auth-pg .exp-img-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.auth-pg .exp-img-wrap {
  flex: 0 0 auto;
  width: 180px;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #6b919e1a
}

.auth-pg .exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .82;
  transition: opacity .35s ease-in-out
}

.auth-pg .exp-img-wrap img:hover {
  opacity: 1
}

.auth-pg .exp-tools {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.auth-pg .exp-tools h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #1b3638;
  margin: 0
}

.auth-pg .exp-tools p {
  font-size: 16px;
  line-height: 1.75;
  color: #2c4a4d;
  margin: 0
}

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

.auth-pg .tool-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #2c4a4d
}

.auth-pg .tool-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #4E8085;
  flex-shrink: 0
}

.auth-pg .divider-b {
  width: 100%;
  height: 32px;
  background: linear-gradient(180deg, #fff 0%, #EAF1F0 100%)
}

.auth-pg .pub-band {
  padding: 32px;
  background: linear-gradient(135deg, #EAF1F0 0%, #dce9e8 40%, #EAF1F0 100%);
  position: relative
}

.auth-pg .pub-col {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.auth-pg .pub-col .acc-line {
  display: block;
  width: 36px;
  height: 3px;
  background: #4E8085;
  border-radius: 5px;
  margin-bottom: 4px
}

.auth-pg .pub-col h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #1b3638;
  margin: 0
}

.auth-pg .pub-col p {
  font-size: 19px;
  line-height: 1.75;
  color: #2c4a4d;
  margin: 0
}

.auth-pg .pub-img-pair {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px
}

.auth-pg .pub-img-a {
  flex: 1 1 0;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.auth-pg .pub-img-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .8;
  transition: opacity .4s ease-in-out
}

.auth-pg .pub-img-a img:hover {
  opacity: 1
}

.auth-pg .pub-img-b {
  flex: 1 1 0;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: -1px 5px 14px 1px #6b919e1a
}

.auth-pg .pub-img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .78;
  transition: opacity .44s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.auth-pg .pub-img-b img:hover {
  opacity: 1
}

.auth-pg .pub-link-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px
}

.auth-pg .pub-link-row a {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .36s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.auth-pg .pub-link-row a.lnk-pri {
  background: #4E8085;
  color: #fff;
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.auth-pg .pub-link-row a.lnk-pri::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3a6468;
  border-radius: 5px;
  transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.auth-pg .pub-link-row a.lnk-pri:hover::before {
  bottom: 0
}

.auth-pg .pub-link-row a.lnk-pri span {
  position: relative;
  z-index: 1
}

.auth-pg .pub-link-row a.lnk-sec {
  background: transparent;
  color: #4E8085;
  border: 1.5px solid #4E8085
}

.auth-pg .pub-link-row a.lnk-sec::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4e808514;
  border-radius: 5px;
  transition: bottom .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.auth-pg .pub-link-row a.lnk-sec:hover::before {
  bottom: 0
}

.auth-pg .pub-link-row a.lnk-sec span {
  position: relative;
  z-index: 1
}

.auth-pg .pub-link-row a:focus {
  outline: 2px solid #4E8085;
  outline-offset: 2px
}

.auth-pg .load-items {
  opacity: 0;
  transform: translateY(24px);
  animation: rise-up .45s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.auth-pg .load-items.d1 {
  animation-delay: .08s
}

.auth-pg .load-items.d2 {
  animation-delay: .18s
}

.auth-pg .load-items.d3 {
  animation-delay: .28s
}

.auth-pg .load-items.d4 {
  animation-delay: .38s
}

@keyframes rise-up {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width: 768px) {
  .auth-pg .bio-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .auth-pg .bio-img-wrap {
    width: 100%;
    height: 220px
  }

  .auth-pg .bio-text h1 {
    font-size: 32px
  }

  .auth-pg .exp-grid {
    grid-template-columns: 1fr
  }

  .auth-pg .exp-img-row {
    flex-direction: column
  }

  .auth-pg .exp-img-wrap {
    width: 100%;
    height: 180px
  }

  .auth-pg .pub-img-pair {
    flex-direction: column
  }

  .auth-pg .pub-img-a,
  .auth-pg .pub-img-b {
    height: 160px
  }

  .auth-pg .bio-band,
  .auth-pg .exp-band,
  .auth-pg .pub-band {
    padding: 32px 16px
  }
}

@media (max-width: 1280px) {
  .auth-pg .bio-row {
    gap: 16px
  }

  .auth-pg .bio-img-wrap {
    width: 180px;
    height: 220px
  }

  .auth-pg .exp-grid {
    grid-template-columns: 1fr 1fr
  }
}

.success_pg {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 16px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.success_pg .success_wrap {
  background: #EAF1F0;
  border-radius: 5px;
  box-shadow: -1px 5px 14px 1px #4e80851a;
  max-width: 560px;
  width: 100%;
  padding: 32px;
  text-align: center
}

.success_pg .success_wrap .icon_wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #4E8085;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 9px 48px 1px #4e80851f
}

.success_pg .success_wrap .icon_wrap svg {
  display: block
}

.success_pg .success_wrap .success_title {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2a4a4d;
  margin: 0 0 8px
}

.success_pg .success_wrap .success_title::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: #4E8085;
  border-radius: 5px;
  margin: 0 auto 16px
}

.success_pg .success_wrap .success_msg {
  font-size: 19px;
  line-height: 1.5;
  color: #3a5a5e;
  margin: 0 0 32px
}

.success_pg .success_wrap .back_btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .03em;
  color: #fff;
  background: #4E8085;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: -1px 3px 3px 1px #4e80850f;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .42s ease-in-out
}

.success_pg .success_wrap .back_btn::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6B919E;
  border-radius: 5px;
  transition: bottom .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.success_pg .success_wrap .back_btn:hover::before {
  bottom: 0
}

.success_pg .success_wrap .back_btn:hover {
  box-shadow: -1px 5px 14px 1px #4e80851a
}

.success_pg .success_wrap .back_btn span {
  position: relative;
  z-index: 1
}

.success_pg .success_wrap .back_btn:focus {
  outline: 2px solid #2a4a4d;
  outline-offset: 4px
}

.success_pg .success_wrap .contact_note {
  font-size: 16px;
  line-height: 1.5;
  color: #4E8085;
  margin: 16px 0 0
}

.success_pg .success_wrap .contact_note a {
  color: #2a4a4d;
  text-decoration: underline;
  transition: color .33s ease-in-out
}

.success_pg .success_wrap .contact_note a:hover {
  color: #6B919E
}

@media (max-width: 768px) {
  .success_pg {
    padding: 32px 16px
  }

  .success_pg .success_wrap {
    padding: 32px 16px
  }

  .success_pg .success_wrap .success_title {
    font-size: 24px
  }

  .success_pg .success_wrap .success_msg {
    font-size: 16px
  }
}