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

html {
  font-size: 100%
}

body {
  margin: 0
}

.page-header {
  background: linear-gradient(160deg, #2e3340 0%, #3c4453 55%, #4a5568 100%);
  position: relative;
  overflow: hidden
}

.page-header__top-band {
  border-bottom: 1px solid #86a9ad2e;
  padding: 24px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  gap: 24px
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.brand-block__hex-frame {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 2px 2px 5px 0 #59616f12 2px 6px 20px 0 #59616f1a;
  padding: 4px
}

.brand-block__hex-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #86a9ad99 0%, #c8d7d04d 100%);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  z-index: 0
}

.brand-block__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1
}

.brand-block__name {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #C8D7D0;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3
}

.header-contact-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  padding-top: 4px
}

.header-contact-group__label {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #c8d7d08c;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase
}

.header-contact-group__link {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  color: #C8D7D0;
  text-decoration: none;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color .28s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  padding: 4px 0
}

.header-contact-group__link:hover {
  color: #fff
}

.header-contact-group__link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #86a9ad80;
  border-radius: 4px
}

.header-contact-group__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86A9AD;
  flex-shrink: 0;
  display: inline-block
}

.page-header__bottom-band {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px
}

.primary-navigation {
  display: flex;
  align-items: stretch;
  gap: 4px;
  flex-wrap: wrap
}

.primary-navigation__item {
  display: flex
}

.primary-navigation__link {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #c8d7d0b3;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.3;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: color .25s ease-in-out, background-color .25s ease-in-out
}

.primary-navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: #86A9AD;
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.primary-navigation__link:hover {
  color: #fff;
  background-color: #86a9ad1a
}

.primary-navigation__link:hover::after {
  opacity: 1
}

.primary-navigation__link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #86a9ad80;
  color: #fff
}

.primary-navigation__link--active {
  color: #C8D7D0
}

.primary-navigation__link--active::after {
  opacity: 1;
  background: #C8D7D0
}

.header-divider-accent {
  height: 3px;
  background: linear-gradient(90deg, #86a9ad00 0%, #86a9ad80 30%, #c8d7d0b3 60%, #86a9ad00 100%);
  max-width: 1600px;
  margin: 0 auto
}

@media (max-width: 768px) {
  .page-header__top-band {
    padding: 24px;
    flex-direction: column;
    align-items: center
  }

  .header-contact-group {
    align-items: center
  }

  .header-contact-group__label {
    text-align: center
  }

  .page-header__bottom-band {
    padding: 0 12px
  }

  .primary-navigation {
    justify-content: center
  }

  .primary-navigation__link {
    padding: 12px;
    font-size: 14px
  }
}

@media (max-width: 375px) {
  .page-header__top-band {
    padding: 24px 12px
  }

  .primary-navigation__link {
    padding: 12px;
    letter-spacing: .05em
  }
}

.site-footer {
  background: linear-gradient(170deg, #2e3340 0%, #3a4050 100%);
  padding: 48px 0 24px
}

.site-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px
}

.site-footer__grid {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid #86a9ad26
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 220px;
  flex: 0 0 auto
}

.footer-brand-column__hex-frame {
  width: 72px;
  height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: 2px 2px 5px 0 #59616f12 2px 6px 20px 0 #86a9ad1a;
  flex-shrink: 0
}

.footer-brand-column__hex-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #86a9ad80 0%, #c8d7d033 100%);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  z-index: 0
}

.footer-brand-column__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1
}

.footer-brand-column__name {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #C8D7D0;
  letter-spacing: .06em;
  line-height: 1.3
}

.footer-brand-column__description {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: #c8d7d099;
  line-height: 1.7;
  max-width: 320px
}

.footer-brand-column__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-brand-column__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.footer-brand-column__contact-label {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #86a9ad99;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3
}

.footer-brand-column__contact-link {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 15px;
  color: #86A9AD;
  text-decoration: none;
  line-height: 1.5;
  transition: color .28s ease-in-out;
  border-radius: 4px
}

.footer-brand-column__contact-link:hover {
  color: #C8D7D0
}

.footer-brand-column__contact-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #86a9ad66;
  border-radius: 4px
}

.footer-legal-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px
}

.footer-legal-navigation__heading {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #c8d7d073;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.3;
  margin-bottom: 4px
}

.footer-legal-navigation__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-legal-navigation__link {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #c8d7d08c;
  text-decoration: none;
  line-height: 1.5;
  transition: color .25s ease-in-out;
  border-radius: 4px;
  display: inline-block
}

.footer-legal-navigation__link:hover {
  color: #C8D7D0
}

.footer-legal-navigation__link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #86a9ad66;
  border-radius: 4px
}

.site-footer__copyright-bar {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.site-footer__copyright-text {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #c8d7d059;
  line-height: 1.5
}

.site-footer__domain-tag {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #86a9ad66;
  line-height: 1.5;
  letter-spacing: .04em
}

@media (max-width: 768px) {
  .site-footer__inner {
    padding: 0 24px
  }

  .site-footer__grid {
    flex-direction: column;
    gap: 48px
  }

  .footer-brand-column {
    min-width: unset;
    width: 100%
  }

  .footer-brand-column__description {
    max-width: 100%
  }

  .site-footer__copyright-bar {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 375px) {
  .site-footer__inner {
    padding: 0 12px
  }
}

.cookie-consent-popup {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 360px;
  max-width: calc(100vw - 48px);
  z-index: 2000;
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 9px 48px 0 #59616f1c;
  padding: 24px;
  display: none;
  transform: translateY(-120%);
  transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.cookie-consent-popup.popup-visible {
  transform: translateY(0)
}

.cookie-consent-popup__headline {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2e3340;
  line-height: 1.3;
  margin-bottom: 12px
}

.cookie-consent-popup__text {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: #59616F;
  line-height: 1.7;
  margin-bottom: 24px
}

.cookie-consent-popup__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px
}

.cookie-consent-popup__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.cookie-consent-popup__category-label {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: #59616F;
  line-height: 1.5
}

.cookie-consent-popup__category-required {
  font-family: 'Ubuntu Mono', monospace;
  font-size: 14px;
  color: #59616f80;
  line-height: 1.5
}

.cookie-consent-popup__checkbox {
  width: 18px;
  height: 18px;
  accent-color: #86A9AD;
  cursor: pointer;
  flex-shrink: 0
}

.cookie-consent-popup__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.cookie-consent-popup__accept-button {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #59616F;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3;
  transition: background-color .25s ease-in-out, box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.cookie-consent-popup__accept-button:hover {
  background: #3c4453;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.cookie-consent-popup__accept-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px #86a9ad80
}

.cookie-consent-popup__reject-link {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: #59616F;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 0;
  line-height: 1.5;
  transition: color .25s ease-in-out
}

.cookie-consent-popup__reject-link:hover {
  color: #2e3340
}

.cookie-consent-popup__reject-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px #86a9ad66;
  border-radius: 4px
}

@media (max-width: 375px) {
  .cookie-consent-popup {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 24px 12px
  }
}

@media (min-width: 769px) {
  .primary-navigation__link {
    transition: color .25s ease-in-out, background-color .25s ease-in-out
  }
}

.aee-terms-text {
  max-width: 1600px;
  margin: 0 auto;
  padding: 96px 48px;
  color: #59616F
}

.aee-terms-text h1 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #59616F;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid #C8D7D0
}

.aee-terms-text h2 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #59616F;
  margin-top: 96px;
  margin-bottom: 24px
}

.aee-terms-text h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #59616F;
  margin-top: 48px;
  margin-bottom: 24px
}

.aee-terms-text h4 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #59616F;
  margin-top: 48px;
  margin-bottom: 12px
}

.aee-terms-text h5 {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #86A9AD;
  margin-top: 24px;
  margin-bottom: 12px
}

.aee-terms-text h6 {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #86A9AD;
  margin-top: 24px;
  margin-bottom: 12px
}

.aee-terms-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #59616F;
  margin-bottom: 24px;
  max-width: 75ch
}

.aee-terms-text ul,
.aee-terms-text ol {
  margin-bottom: 24px;
  padding-left: 24px;
  max-width: 75ch
}

.aee-terms-text ul {
  list-style: none;
  padding-left: 0
}

.aee-terms-text ul li {
  padding-left: 24px;
  position: relative
}

.aee-terms-text ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 36px;
  background-color: #86A9AD
}

.aee-terms-text ol {
  list-style: decimal
}

.aee-terms-text ol li {
  padding-left: 4px
}

.aee-terms-text li {
  font-size: 18px;
  line-height: 1.7;
  color: #59616F;
  margin-bottom: 12px
}

.aee-terms-text ul ul,
.aee-terms-text ol ol,
.aee-terms-text ul ol,
.aee-terms-text ol ul {
  margin-top: 12px;
  margin-bottom: 12px
}

.aee-terms-text strong,
.aee-terms-text b {
  font-weight: 700;
  color: #59616F
}

.aee-terms-text hr {
  border: none;
  border-top: 1px solid #C8D7D0;
  margin-top: 48px;
  margin-bottom: 48px;
  max-width: 75ch
}

.aee-terms-text div {
  margin-bottom: 24px
}

.aee-terms-text div.policy-highlight-box {
  background: linear-gradient(135deg, #f5f7f7 0%, #eaf0ef 100%);
  border-radius: 4px;
  padding: 24px 48px;
  box-shadow: 2px 2px 5px 0 #86a9ad12 2px 6px 20px 0 #86a9ad1a;
  max-width: 75ch
}

.aee-terms-text div.policy-highlight-box p {
  margin-bottom: 0
}

@media (max-width: 768px) {
  .aee-terms-text {
    padding: 48px 24px
  }

  .aee-terms-text h1 {
    font-size: 30px;
    margin-bottom: 24px
  }

  .aee-terms-text h2 {
    font-size: 22px;
    margin-top: 48px
  }

  .aee-terms-text h3 {
    font-size: 18px;
    margin-top: 24px
  }

  .aee-terms-text h4 {
    font-size: 15px;
    margin-top: 24px
  }

  .aee-terms-text p,
  .aee-terms-text li {
    font-size: 15px
  }

  .aee-terms-text div.policy-highlight-box {
    padding: 24px
  }
}

@media (max-width: 375px) {
  .aee-terms-text {
    padding: 24px 12px
  }

  .aee-terms-text h1 {
    font-size: 22px
  }

  .aee-terms-text h2 {
    font-size: 18px;
    margin-top: 48px
  }

  .aee-terms-text h3 {
    font-size: 15px
  }

  .aee-terms-text p,
  .aee-terms-text li {
    font-size: 14px;
    line-height: 1.5
  }

  .aee-terms-text hr {
    margin-top: 24px;
    margin-bottom: 24px
  }
}

.blog-detail {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.blog-detail .title-block {
  position: relative;
  padding: 48px 96px 96px;
  background: linear-gradient(160deg, #59616F 0%, #86A9AD 45%, #C8D7D0 100%)
}

.blog-detail .title-block__atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.blog-detail .title-block__spot {
  position: absolute;
  border-radius: 36px;
  filter: blur(60px);
  opacity: .18
}

.blog-detail .title-block__spot--a {
  width: 420px;
  height: 260px;
  background: #C8D7D0;
  top: -40px;
  left: 10%
}

.blog-detail .title-block__spot--b {
  width: 300px;
  height: 200px;
  background: #59616F;
  bottom: 20px;
  right: 8%
}

.blog-detail .title-block__spot--c {
  width: 200px;
  height: 180px;
  background: #86A9AD;
  top: 30%;
  left: 55%
}

.blog-detail .title-block__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  z-index: 1
}

.blog-detail .title-block__text-column {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.blog-detail .title-block__label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .12em;
  color: #C8D7D0;
  text-transform: uppercase;
  font-weight: 600
}

.blog-detail .title-block__heading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0
}

.blog-detail .title-block__desc {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffffd1;
  margin: 0
}

.blog-detail .title-block__image-column {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/9
}

.blog-detail .title-block__image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.blog-detail .title-block__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #59616f73 0%, #86a9ad40 100%)
}

.blog-detail .divider-curve-a {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.blog-detail .divider-curve-a svg {
  display: block;
  width: 100%
}

.blog-detail .article-body-area {
  background: #fff;
  padding: 96px 96px 48px
}

.blog-detail .article-body-area__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.blog-detail .article-prose {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.blog-detail .article-prose p {
  font-size: 18px;
  line-height: 1.7;
  color: #2e3340;
  margin: 0
}

.blog-detail .article-prose p:first-of-type::first-letter {
  font-size: 42px;
  line-height: 1.1;
  color: #86A9AD;
  font-weight: 700;
  float: left;
  margin-right: 8px;
  margin-top: 4px
}

.blog-detail .article-prose h2 {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #59616F;
  margin: 0;
  position: relative;
  padding-top: 12px
}

.blog-detail .article-prose h3 {
  font-size: 22px;
  line-height: 1.3;
  color: #59616F;
  margin: 0
}

.blog-detail .article-prose h4 {
  font-size: 18px;
  line-height: 1.5;
  color: #59616F;
  margin: 0;
  font-weight: 700
}

.blog-detail .article-prose em {
  color: #59616F;
  font-style: italic
}

.blog-detail .article-prose abbr {
  text-decoration: underline dotted;
  cursor: help
}

.blog-detail .article-prose blockquote {
  margin: 0;
  padding: 24px;
  background: linear-gradient(135deg, #C8D7D0 0%, #f0f4f3 100%);
  border-radius: 4px;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.blog-detail .article-prose blockquote p {
  font-size: 18px;
  line-height: 1.7;
  color: #59616F;
  font-style: italic;
  margin: 0
}

.blog-detail .article-prose blockquote p::first-letter {
  font-size: 18px;
  color: #59616F;
  font-weight: 400;
  float: none;
  margin: 0
}

.blog-detail .article-prose cite {
  display: block;
  font-size: 14px;
  color: #86A9AD;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600
}

.blog-detail .article-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5
}

.blog-detail .article-prose thead tr {
  background: #59616F;
  color: #fff
}

.blog-detail .article-prose thead td,
.blog-detail .article-prose thead th {
  padding: 12px;
  text-align: left;
  font-weight: 600
}

.blog-detail .article-prose tbody tr:nth-child(odd) {
  background: #f4f7f6
}

.blog-detail .article-prose tbody tr:nth-child(even) {
  background: #e8f0ee
}

.blog-detail .article-prose tbody td {
  padding: 12px;
  color: #2e3340
}

.blog-detail .article-prose tfoot td {
  padding: 12px;
  font-size: 14px;
  color: #86A9AD;
  border-top: 1px solid #C8D7D0
}

.blog-detail .aside-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px
}

.blog-detail .reaction-card {
  background: #f4f7f6;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 2px 2px 5px 0 #59616f12
}

.blog-detail .reaction-card__heading {
  font-size: 15px;
  line-height: 1.3;
  color: #59616F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 24px
}

.blog-detail .reaction-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0
}

.blog-detail .reaction-card__item {
  display: block
}

.blog-detail .reaction-card__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.blog-detail .reaction-card__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  border: 1.5px solid #C8D7D0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  color: #59616F;
  background: #fff;
  transition: border-color .28s ease-in-out, background .28s ease-in-out, box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-detail .reaction-card__label:hover {
  border-color: #86A9AD;
  background: #eef4f3;
  box-shadow: 2px 2px 5px 0 #86a9ad1a
}

.blog-detail .reaction-card__input:checked+.reaction-card__label {
  background: linear-gradient(135deg, #86A9AD 0%, #C8D7D0 100%);
  border-color: #59616F;
  color: #fff;
  font-weight: 700;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.blog-detail .reaction-card__input:focus-visible+.reaction-card__label {
  outline: 2px solid #59616F;
  outline-offset: 2px
}

.blog-detail .reaction-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.blog-detail .reaction-card__icon svg {
  width: 22px;
  height: 22px
}

.blog-detail .info-card {
  background: linear-gradient(160deg, #59616F 0%, #86A9AD 100%);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.blog-detail .info-card__heading {
  font-size: 15px;
  color: #C8D7D0;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin: 0 0 12px
}

.blog-detail .info-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffffe0;
  margin: 0
}

.blog-detail .info-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: #C8D7D0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s ease-in-out
}

.blog-detail .info-card__link:hover {
  color: #fff
}

.blog-detail .divider-curve-b {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.blog-detail .divider-curve-b svg {
  display: block;
  width: 100%
}

.blog-detail .technique-mosaic {
  background: linear-gradient(200deg, #C8D7D0 0%, #f0f4f3 60%, #fff 100%);
  padding: 96px;
  position: relative
}

.blog-detail .technique-mosaic__background-geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.blog-detail .technique-mosaic__geo-outline {
  position: absolute;
  border: 1.5px solid #59616f14;
  border-radius: 4px;
  animation: geo-breathe 7s sine-ease infinite alternate
}

@keyframes geo-breathe {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: .5
  }

  100% {
    transform: scale(1.04) rotate(1.5deg);
    opacity: 1
  }
}

.blog-detail .technique-mosaic__geo-outline--large {
  width: 340px;
  height: 220px;
  top: 10%;
  right: 5%;
  animation-duration: 9s
}

.blog-detail .technique-mosaic__geo-outline--medium {
  width: 180px;
  height: 120px;
  bottom: 15%;
  left: 3%;
  animation-duration: 6s;
  animation-delay: 1.5s
}

@keyframes aurora-blend {
  0% {
    opacity: .12;
    transform: translateY(0px) scaleX(1)
  }

  50% {
    opacity: .22;
    transform: translateY(-18px) scaleX(1.06)
  }

  100% {
    opacity: .12;
    transform: translateY(0px) scaleX(1)
  }
}

.blog-detail .technique-mosaic__aurora-a {
  position: absolute;
  width: 60%;
  height: 280px;
  background: linear-gradient(90deg, #86A9AD 0%, transparent 100%);
  top: 0;
  left: 0;
  filter: blur(80px);
  pointer-events: none;
  animation: aurora-blend 11s ease-in-out infinite
}

.blog-detail .technique-mosaic__aurora-b {
  position: absolute;
  width: 50%;
  height: 220px;
  background: linear-gradient(270deg, #C8D7D0 0%, transparent 100%);
  bottom: 0;
  right: 0;
  filter: blur(70px);
  pointer-events: none;
  animation: aurora-blend 13s ease-in-out infinite reverse
}

.blog-detail .technique-mosaic__heading-row {
  position: relative;
  z-index: 1;
  margin-bottom: 48px
}

.blog-detail .technique-mosaic__num {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  color: #59616f12;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: -24px;
  user-select: none
}

.blog-detail .technique-mosaic__section-title {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #59616F;
  margin: 0;
  position: relative;
  z-index: 1
}

.blog-detail .mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  position: relative;
  z-index: 1
}

.blog-detail .mosaic-card {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 2px 2px 5px 0 #59616f12;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default
}

.blog-detail .mosaic-card:hover {
  transform: translateY(-6px);
  box-shadow: 2px 9px 48px 0 #59616f1c;
  z-index: 2;
  position: relative
}

.blog-detail .mosaic-card--center {
  grid-row: span 2;
  background: linear-gradient(170deg, #59616F 0%, #86A9AD 100%);
  padding: 48px 24px;
  justify-content: center
}

.blog-detail .mosaic-card--center .mosaic-card__title {
  color: #C8D7D0
}

.blog-detail .mosaic-card--center .mosaic-card__body {
  color: #ffffffe0
}

.blog-detail .mosaic-card--breakout {
  grid-column: 3;
  grid-row: 2;
  margin-top: -24px;
  background: #f4f7f6;
  border: 1.5px solid #C8D7D0
}

.blog-detail .mosaic-card__num {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  color: #59616f14;
  letter-spacing: -.04em;
  display: block;
  user-select: none
}

.blog-detail .mosaic-card--center .mosaic-card__num {
  color: #c8d7d026
}

.blog-detail .mosaic-card__title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #59616F;
  margin: 0
}

.blog-detail .mosaic-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5260;
  margin: 0
}

.blog-detail .mosaic-card__body strong {
  font-weight: 700
}

.blog-detail .mosaic-card__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #86A9AD;
  border: 1.5px solid #C8D7D0;
  border-radius: 36px;
  padding: 4px 12px;
  align-self: flex-start
}

.blog-detail .mosaic-card--center .mosaic-card__tag {
  color: #C8D7D0;
  border-color: #c8d7d066
}

.blog-detail .technique-mosaic__cta-row {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1
}

.blog-detail .cta-button {
  display: inline-block;
  padding: 12px 48px;
  background: #59616F;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: background .28s ease-in-out, box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-detail .cta-button:hover {
  background: #86A9AD;
  box-shadow: 2px 9px 48px 0 #59616f1c
}

.blog-detail .cta-button:focus-visible {
  outline: 2px solid #59616F;
  outline-offset: 3px
}

.blog-detail .cta-button--outline {
  background: transparent;
  color: #59616F;
  border: 1.5px solid #86A9AD;
  box-shadow: none
}

.blog-detail .cta-button--outline:hover {
  background: #C8D7D0;
  color: #2e3340;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

@media (max-width: 1366px) {
  .blog-detail .title-block {
    padding: 48px 48px 96px
  }

  .blog-detail .article-body-area {
    padding: 96px 48px 48px
  }

  .blog-detail .technique-mosaic {
    padding: 96px 48px
  }
}

@media (max-width: 768px) {
  .blog-detail .title-block {
    padding: 48px 24px 96px
  }

  .blog-detail .title-block__grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .blog-detail .title-block__heading {
    font-size: 30px
  }

  .blog-detail .article-body-area {
    padding: 48px 24px
  }

  .blog-detail .article-body-area__grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .blog-detail .aside-column {
    position: static
  }

  .blog-detail .technique-mosaic {
    padding: 48px 24px
  }

  .blog-detail .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .blog-detail .mosaic-card--center {
    grid-row: auto
  }

  .blog-detail .mosaic-card--breakout {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0
  }

  .blog-detail .technique-mosaic__cta-row {
    flex-direction: column;
    align-items: flex-start
  }

  .blog-detail .article-prose p:first-of-type::first-letter {
    font-size: 30px
  }
}

@media (max-width: 375px) {
  .blog-detail .title-block__heading {
    font-size: 22px
  }

  .blog-detail .title-block {
    padding: 24px 12px 48px
  }

  .blog-detail .article-body-area {
    padding: 24px 12px
  }

  .blog-detail .technique-mosaic {
    padding: 24px 12px
  }

  .blog-detail .cta-button {
    padding: 12px 24px
  }
}

.start {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.start .fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUpIn .55s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.start .fade-up:nth-child(1) {
  animation-delay: .05s
}

.start .fade-up:nth-child(2) {
  animation-delay: .15s
}

.start .fade-up:nth-child(3) {
  animation-delay: .25s
}

.start .fade-up:nth-child(4) {
  animation-delay: .35s
}

.start .fade-up:nth-child(5) {
  animation-delay: .45s
}

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

.start ::selection {
  background: #86a9ad1a;
  color: inherit
}

@media (max-width: 767px) {
  .start .fade-up {
    animation: none;
    opacity: 1;
    transform: none
  }
}

.start .title-band {
  padding: 96px 48px;
  position: relative;
  background: linear-gradient(162deg, #fff 0%, #e8eeed 100%);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px
}

.start .title-band__left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  z-index: 1
}

.start .title-band__right {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end
}

.start .title-band__image-frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  opacity: .72;
  box-shadow: 2px 9px 48px 0 #59616f1c
}

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

.start .title-band__image-frame:hover img {
  transform: scale(1.04)
}

.start .title-band__dot-path {
  position: absolute;
  bottom: -24px;
  right: -12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 0;
  pointer-events: none
}

.start .dot-path__dot {
  width: 6px;
  height: 6px;
  border-radius: 36px;
  background: #86A9AD;
  opacity: .45
}

.start .dot-path__dot:nth-child(even) {
  opacity: .22;
  margin-left: 8px
}

.start .title-band__label {
  font-size: 14px;
  letter-spacing: .12em;
  color: #86A9AD;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px
}

.start .title-band__label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 36px;
  background: #86A9AD;
  flex-shrink: 0
}

.start .title-band__heading {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2d3340;
  margin: 0
}

.start .title-band__heading .accent-first {
  font-size: 72px;
  color: #86A9AD;
  line-height: 1
}

.start .title-band__desc {
  font-size: 18px;
  line-height: 1.7;
  color: #59616F;
  max-width: 480px;
  margin: 0
}

.start .title-band__divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, #86A9AD 0%, #C8D7D0 100%);
  border-radius: 4px
}

@media (max-width: 767px) {
  .start .title-band {
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px
  }

  .start .title-band__heading {
    font-size: 42px
  }

  .start .title-band__heading .accent-first {
    font-size: 54px
  }

  .start .title-band__right {
    flex: none
  }

  .start .title-band__dot-path {
    display: none
  }
}

.start .post-strip {
  padding: 96px 48px;
  background: #fff
}

.start .post-strip__label {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #86A9AD;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px
}

.start .post-strip__label::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  border-top: 1px dashed #C8D7D0
}

.start .post-card {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: stretch;
  border-radius: 4px;
  box-shadow: 2px 6px 20px 0 #59616f1a;
  overflow: hidden;
  background: #fff
}

.start .post-card__image-col {
  flex: 0 0 44%;
  overflow: hidden
}

.start .post-card__image-col img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.start .post-card__image-col:hover img {
  transform: scale(1.05)
}

.start .post-card__body {
  flex: 1 1 0;
  padding: 48px 48px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px
}

.start .post-card__heading {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2d3340;
  margin: 0
}

.start .post-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.start .post-card__link {
  display: inline-block;
  padding: 12px 24px;
  background: #59616F;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  align-self: flex-start;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: box-shadow .28s ease-in-out, background .28s ease-in-out
}

.start .post-card__link:hover {
  background: #86A9AD;
  box-shadow: 2px 9px 48px 0 #59616f1c
}

@media (max-width: 767px) {
  .start .post-strip {
    padding: 48px 24px
  }

  .start .post-card {
    flex-direction: column;
    gap: 0
  }

  .start .post-card__image-col {
    flex: none
  }

  .start .post-card__image-col img {
    aspect-ratio: 16/9;
    height: auto
  }

  .start .post-card__body {
    padding: 24px
  }
}

.start .voice-band {
  padding: 96px 48px;
  background: linear-gradient(162deg, #f2f5f4 0%, #e6ecea 100%);
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 48px;
  align-items: start
}

.start .voice-band__number {
  font-size: 56px;
  line-height: 1.1;
  color: #C8D7D0;
  font-weight: 700;
  opacity: .6;
  letter-spacing: -.03em;
  user-select: none
}

.start .voice-band__label-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px
}

.start .voice-band__category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #59616F;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em
}

.start .voice-band__dot {
  width: 10px;
  height: 10px;
  border-radius: 36px;
  flex-shrink: 0
}

.start .voice-band__dot--primary {
  background: #59616F
}

.start .voice-band__dot--secondary {
  background: #86A9AD
}

.start .voice-band__dot--tertiary {
  background: #C8D7D0
}

.start .voice-band__text-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.start .voice-band__heading {
  font-size: 30px;
  line-height: 1.3;
  color: #2d3340;
  margin: 0;
  letter-spacing: -.01em
}

.start .voice-band__para {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.start .voice-band__para strong {
  color: #2d3340;
  font-weight: 600
}

.start .voice-band__dashed-line {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #86A9AD;
  opacity: .5
}

@media (max-width: 1365px) {
  .start .voice-band {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto
  }

  .start .voice-band__number {
    grid-row: 1;
    grid-column: 1
  }

  .start .voice-band__label-col {
    grid-row: 1;
    grid-column: 2
  }

  .start .voice-band__text-col {
    grid-row: 2;
    grid-column: 1 / -1
  }
}

@media (max-width: 767px) {
  .start .voice-band {
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px
  }
}

.start .habit-band {
  padding: 48px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center
}

.start .habit-band__portrait-col {
  flex: 0 0 200px
}

.start .habit-band__portrait-frame {
  width: 200px;
  aspect-ratio: 5/7;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 2px 6px 20px 0 #86a9ad1a
}

.start .habit-band__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.start .habit-band__text-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.start .habit-band__eyebrow {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #86A9AD;
  font-weight: 600
}

.start .habit-band__heading {
  font-size: 30px;
  line-height: 1.3;
  color: #2d3340;
  margin: 0;
  letter-spacing: -.01em
}

.start .habit-band__para {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.start .habit-band__para strong {
  color: #2d3340;
  font-weight: 600
}

.start .habit-band__tips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.start .habit-band__tips li {
  font-size: 15px;
  line-height: 1.5;
  color: #59616F;
  padding: 12px;
  border-radius: 4px
}

.start .habit-band__tips li:nth-child(odd) {
  background: #f2f5f4
}

.start .habit-band__tips li:nth-child(even) {
  background: #e6ecea
}

.start .habit-band__tips li .tip-lead {
  font-weight: 600;
  color: #2d3340
}

@media (max-width: 767px) {
  .start .habit-band {
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px
  }

  .start .habit-band__portrait-col {
    flex: none
  }
}

.start .rhythm-band {
  padding: 96px 48px;
  background: linear-gradient(162deg, #59616F 0%, #3d4350 100%);
  position: relative
}

.start .rhythm-band__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px
}

.start .rhythm-band__heading {
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  letter-spacing: -.02em
}

.start .rhythm-band__heading .accent-first {
  color: #C8D7D0
}

.start .rhythm-band__sub {
  font-size: 15px;
  line-height: 1.7;
  color: #c8d7d0d9;
  max-width: 320px;
  text-align: right;
  margin: 0
}

.start .rhythm-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.start .rhythm-card {
  background: #ffffff0f;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: background .32s cubic-bezier(0.4, 0, 0.2, 1), transform .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.start .rhythm-card:hover {
  background: #ffffff1f;
  transform: translateY(-4px)
}

.start .rhythm-card__icon-row {
  display: flex;
  align-items: center;
  gap: 12px
}

.start .rhythm-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: #86A9AD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.start .rhythm-card__icon svg {
  width: 18px;
  height: 18px;
  fill: #fff
}

.start .rhythm-card__freq {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C8D7D0;
  font-weight: 600
}

.start .rhythm-card__topic {
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  margin: 0
}

.start .rhythm-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #c8d7d0cc;
  margin: 0
}

@media (max-width: 767px) {
  .start .rhythm-band {
    padding: 48px 24px
  }

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

  .start .rhythm-band__sub {
    text-align: left;
    max-width: 100%
  }

  .start .rhythm-band__grid {
    grid-template-columns: 1fr
  }

  .start .rhythm-band__heading {
    font-size: 30px
  }
}

.start .adjacent-band {
  padding: 96px 48px;
  background: #fff
}

.start .adjacent-band__header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.start .adjacent-band__eyebrow {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #86A9AD;
  font-weight: 600
}

.start .adjacent-band__heading {
  font-size: 30px;
  line-height: 1.3;
  color: #2d3340;
  margin: 0;
  letter-spacing: -.01em
}

.start .adjacent-band__grid {
  display: grid;
  grid-template-columns: 2fr 3fr 4fr;
  gap: 24px;
  align-items: start
}

.start .adjacent-topic {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 4px;
  background: #f2f5f4;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: box-shadow .28s ease-in-out, background .28s ease-in-out
}

.start .adjacent-topic:hover {
  background: #e6ecea;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.start .adjacent-topic__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #C8D7D0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.start .adjacent-topic__icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: #59616F
}

.start .adjacent-topic__name {
  font-size: 18px;
  line-height: 1.3;
  color: #2d3340;
  font-weight: 600;
  margin: 0
}

.start .adjacent-topic__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.start .adjacent-topic__dashed {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #86A9AD;
  opacity: .4
}

@media (max-width: 1365px) {
  .start .adjacent-band__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 767px) {
  .start .adjacent-band {
    padding: 48px 24px
  }

  .start .adjacent-band__grid {
    grid-template-columns: 1fr
  }
}

.start .mostread-band {
  padding: 96px 48px;
  background: linear-gradient(162deg, #e6ecea 0%, #f2f5f4 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.start .mostread-band__left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.start .mostread-band__eyebrow {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #86A9AD;
  font-weight: 600
}

.start .mostread-band__heading {
  font-size: 42px;
  line-height: 1.1;
  color: #2d3340;
  margin: 0;
  letter-spacing: -.02em
}

.start .mostread-band__heading .accent-first {
  color: #86A9AD
}

.start .mostread-band__para {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.start .mostread-band__image-frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 2px 9px 48px 0 #59616f1c
}

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

.start .mostread-band__image-frame:hover img {
  transform: scale(1.04)
}

.start .mostread-band__right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.start .mostread-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1), transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.start .mostread-item:hover {
  box-shadow: 2px 6px 20px 0 #59616f1a;
  transform: perspective(600px) translateZ(6px)
}

.start .mostread-item__number {
  font-size: 42px;
  line-height: 1;
  color: #C8D7D0;
  font-weight: 700;
  letter-spacing: -.03em;
  user-select: none;
  flex-shrink: 0;
  width: 48px
}

.start .mostread-item__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 0
}

.start .mostread-item__heading {
  font-size: 18px;
  line-height: 1.3;
  color: #2d3340;
  font-weight: 600;
  margin: 0
}

.start .mostread-item__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

@media (max-width: 767px) {
  .start .mostread-band {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 24px
  }

  .start .mostread-band__heading {
    font-size: 30px
  }
}

.start .territory-band {
  padding: 96px 48px;
  background: #fff
}

.start .territory-band__header {
  margin-bottom: 48px;
  max-width: 640px
}

.start .territory-band__eyebrow {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #86A9AD;
  font-weight: 600;
  margin-bottom: 12px
}

.start .territory-band__heading {
  font-size: 30px;
  line-height: 1.3;
  color: #2d3340;
  margin: 0;
  letter-spacing: -.01em
}

.start .territory-band__complex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.start .territory-narrative {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.start .territory-narrative__para {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.start .territory-narrative__para strong {
  color: #2d3340;
  font-weight: 600
}

.start .territory-narrative__image-frame {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 2px 6px 20px 0 #86a9ad1a
}

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

.start .territory-narrative__image-frame:hover img {
  transform: scale(1.04)
}

.start .territory-structured {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.start .territory-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 4px;
  background: #f2f5f4;
  transition: background .28s ease-in-out
}

.start .territory-feature:nth-child(even) {
  background: #e6ecea
}

.start .territory-feature:hover {
  background: #d8e5e2
}

.start .territory-feature__icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #86A9AD;
  display: flex;
  align-items: center;
  justify-content: center
}

.start .territory-feature__icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.start .territory-feature__label {
  font-size: 18px;
  font-weight: 600;
  color: #2d3340;
  line-height: 1.3;
  margin: 0
}

.start .territory-feature__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

@media (max-width: 767px) {
  .start .territory-band {
    padding: 48px 24px
  }

  .start .territory-band__complex {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.mission-page {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
  position: relative
}

.mission-page .reveal-words {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px
}

.mission-page .reveal-words .word {
  opacity: 0;
  transform: translateY(18px);
  animation: wordReveal .55s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

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

.mission-page .reveal-words .word:nth-child(1) {
  animation-delay: .1s
}

.mission-page .reveal-words .word:nth-child(2) {
  animation-delay: .2s
}

.mission-page .reveal-words .word:nth-child(3) {
  animation-delay: .3s
}

.mission-page .reveal-words .word:nth-child(4) {
  animation-delay: .4s
}

.mission-page .reveal-words .word:nth-child(5) {
  animation-delay: .5s
}

.mission-page .reveal-words .word:nth-child(6) {
  animation-delay: .6s
}

.mission-page .reveal-words .word:nth-child(7) {
  animation-delay: .7s
}

.mission-page .reveal-words .word:nth-child(8) {
  animation-delay: .8s
}

.mission-page .reveal-words .word:nth-child(9) {
  animation-delay: .9s
}

.mission-page .banner-area {
  position: relative;
  padding: 96px 48px;
  background: linear-gradient(160deg, #f4f5f6 0%, #dde6e8 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px
}

.mission-page .banner-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, #86a9ad2e 0%, transparent 70%);
  pointer-events: none
}

.mission-page .banner-area::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath d='M0,24 C360,48 1080,0 1440,24 L1440,48 L0,48 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center bottom / 100% 100%;
  pointer-events: none;
  z-index: 1
}

.mission-page .banner-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #59616F;
  position: relative;
  z-index: 2
}

.mission-page .banner-description {
  font-size: 18px;
  line-height: 1.5;
  color: #59616F;
  max-width: 560px;
  position: relative;
  z-index: 2
}

.mission-page .banner-heading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2e3440;
  max-width: 720px;
  position: relative;
  z-index: 2;
  margin: 0
}

.mission-page .banner-heading .first-letter-accent {
  font-size: 56px;
  color: #86A9AD;
  line-height: 1
}

.mission-page .banner-image-secondary {
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 320px;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  opacity: .28;
  z-index: 1;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.mission-page .banner-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 14s ease-in-out infinite alternate
}

@keyframes slowZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.08)
  }
}

.mission-page .dashed-connector {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2
}

.mission-page .dashed-connector .dash-line {
  flex: 1;
  max-width: 80px;
  border-top: 2px dashed #86a9ad99
}

.mission-page .dashed-connector .dash-text {
  font-size: 14px;
  color: #86A9AD;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.mission-page .values-area {
  padding: 96px 48px;
  background: #fff;
  position: relative
}

.mission-page .values-area .radial-spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, #c8d7d038 0%, transparent 72%);
  pointer-events: none
}

.mission-page .values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.mission-page .values-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.mission-page .values-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.mission-page .values-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #86A9AD
}

.mission-page .values-heading {
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #2e3440;
  margin: 0;
  position: relative
}

.mission-page .values-heading .faded-number {
  position: absolute;
  top: -24px;
  left: -12px;
  font-size: 96px;
  font-weight: 900;
  color: #86a9ad17;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

.mission-page .values-heading .heading-text {
  position: relative;
  z-index: 1
}

.mission-page .paragraph-block {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mission-page .paragraph-block .para-lead {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #59616F
}

.mission-page .paragraph-block .para-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444c58;
  margin: 0
}

.mission-page .paragraph-block .para-text .first-letter-accent {
  font-size: 22px;
  color: #86A9AD;
  font-weight: 700;
  line-height: 1
}

.mission-page .pros-cons-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f4f6f7;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 2px 2px 5px 0 #59616f12
}

.mission-page .pros-cons-block .pc-heading {
  font-size: 15px;
  font-weight: 700;
  color: #2e3440;
  margin: 0 0 12px;
  letter-spacing: .04em
}

.mission-page .pros-cons-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.mission-page .pc-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mission-page .pc-col-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em
}

.mission-page .pc-col-label.pros-label {
  color: #59616F
}

.mission-page .pc-col-label.cons-label {
  color: #86A9AD
}

.mission-page .pc-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #444c58;
  padding: 12px;
  border-radius: 4px
}

.mission-page .pc-item:nth-child(odd) {
  background: #c8d7d02e
}

.mission-page .pc-item:nth-child(even) {
  background: #86a9ad1a
}

.mission-page .pc-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px
}

.mission-page .pc-indicator.pros-dot {
  background: #59616F
}

.mission-page .pc-indicator.cons-dot {
  background: #C8D7D0;
  border: 2px solid #86A9AD
}

.mission-page .portrait-pair {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.mission-page .portrait-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border-radius: 4px;
  background: #f4f6f7;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: box-shadow .35s ease-in-out
}

.mission-page .portrait-card:hover {
  box-shadow: 2px 9px 48px 0 #59616f1c
}

.mission-page .portrait-frame {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 2px 6px 20px 0 #86a9ad1a
}

.mission-page .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.mission-page .portrait-bio {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mission-page .portrait-name {
  font-size: 15px;
  font-weight: 700;
  color: #2e3440
}

.mission-page .portrait-role {
  font-size: 14px;
  color: #86A9AD;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em
}

.mission-page .portrait-quote {
  font-size: 14px;
  line-height: 1.5;
  color: #59616F;
  margin: 0
}

.mission-page .content-visual-block {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mission-page .visual-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.mission-page .visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowPan 18s ease-in-out infinite alternate
}

@keyframes slowPan {
  from {
    transform: scale(1.04) translateX(-2%)
  }

  to {
    transform: scale(1.04) translateX(2%)
  }
}

.mission-page .visual-caption {
  font-size: 14px;
  color: #86A9AD;
  line-height: 1.5
}

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

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

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

.mission-page .animated-gradient-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 36px;
  background: linear-gradient(120deg, #C8D7D0, #86A9AD, #C8D7D0);
  background-size: 200% 200%;
  animation: gradientAngle 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  font-size: 14px;
  font-weight: 700;
  color: #2e3440;
  letter-spacing: .06em
}

@media (max-width: 768px) {
  .mission-page .banner-area {
    padding: 48px 24px 72px
  }

  .mission-page .banner-heading {
    font-size: 30px
  }

  .mission-page .banner-heading .first-letter-accent {
    font-size: 42px
  }

  .mission-page .banner-image-secondary {
    display: none
  }

  .mission-page .values-area {
    padding: 48px 24px
  }

  .mission-page .values-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .mission-page .pros-cons-columns {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .mission-page .portrait-card {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 375px) {
  .mission-page .banner-area {
    padding: 48px 12px 72px
  }

  .mission-page .banner-heading {
    font-size: 22px
  }

  .mission-page .values-area {
    padding: 48px 12px
  }

  .mission-page .portrait-card {
    padding: 12px
  }
}

@media (min-width: 1366px) {
  .mission-page .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 96px
  }
}

.about-author-page {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.about-author-page .author-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.about-author-page .author-split__visual {
  position: relative;
  background: #59616F;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden
}

.about-author-page .author-split__visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 2px solid #c8d7d02e;
  border-radius: 50%;
  pointer-events: none
}

.about-author-page .author-split__visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 1.5px solid #86a9ad38;
  border-radius: 50%;
  pointer-events: none
}

.about-author-page .curved-line-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.about-author-page .curved-line-decor svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.about-author-page .image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px
}

.about-author-page .image-frame__border {
  border: 3px solid #c8d7d059;
  border-radius: 4px;
  padding: 12px;
  position: relative
}

.about-author-page .image-frame__border::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid #86a9ad33;
  border-radius: 4px;
  pointer-events: none
}

.about-author-page .image-frame__photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  display: block;
  filter: blur(0px)
}

.about-author-page .image-frame__photo.depth-blur {
  filter: blur(0.8px) brightness(0.95)
}

.about-author-page .author-split__text {
  background: #fff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.about-author-page .author-split__text::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, #C8D7D0 0%, #86A9AD 100%);
  border-radius: 36px
}

.about-author-page .author-label {
  font-size: 14px;
  letter-spacing: .12em;
  color: #86A9AD;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block
}

.about-author-page .author-heading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #2c3038;
  margin-bottom: 12px;
  font-weight: 700
}

.about-author-page .author-heading .punctuation-accent {
  color: #86A9AD
}

.about-author-page .author-role {
  font-size: 18px;
  line-height: 1.3;
  color: #59616F;
  margin-bottom: 24px;
  font-weight: 400
}

.about-author-page .author-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #454c58;
  margin-bottom: 24px
}

.about-author-page .author-lead .lead-first-letter {
  font-size: 22px;
  font-weight: 700;
  color: #86A9AD;
  line-height: 1;
  float: left;
  margin-right: 4px;
  margin-top: 2px
}

.about-author-page .author-portraits {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 12px
}

.about-author-page .portrait-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.about-author-page .portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-author-page .portrait-meta {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.about-author-page .portrait-name {
  font-size: 15px;
  font-weight: 600;
  color: #2c3038;
  line-height: 1.3
}

.about-author-page .portrait-role-tag {
  font-size: 14px;
  color: #59616F;
  line-height: 1.3
}

.about-author-page .divider-band {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  background: #fff
}

.about-author-page .divider-band__line {
  height: 2px;
  width: 120px;
  background: linear-gradient(90deg, #C8D7D0 0%, #86A9AD 50%, #C8D7D0 100%);
  border-radius: 36px
}

.about-author-page .expertise-zone {
  background: linear-gradient(168deg, #59616F 0%, #7a8390 100%);
  padding: 96px 48px;
  position: relative;
  overflow: hidden
}

.about-author-page .expertise-zone__geo-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.about-author-page .expertise-zone__geo-texture svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.about-author-page .expertise-zone__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto
}

.about-author-page .expertise-zone__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px
}

.about-author-page .expertise-zone__heading-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start
}

.about-author-page .expertise-number-bg {
  font-size: 56px;
  font-weight: 700;
  color: #c8d7d01f;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: -12px;
  user-select: none
}

.about-author-page .expertise-zone__heading {
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 24px
}

.about-author-page .expertise-zone__body {
  font-size: 15px;
  line-height: 1.7;
  color: #c8d7d0e0
}

.about-author-page .expertise-zone__body .para-label {
  font-weight: 700;
  color: #C8D7D0;
  display: inline
}

.about-author-page .expertise-zone__image-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-author-page .expertise-image-wrap {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 9px 48px 0 #59616f1c
}

.about-author-page .expertise-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-author-page .expertise-image-small-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.about-author-page .expertise-image-small {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 2px 5px 0 #59616f12
}

.about-author-page .expertise-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-author-page .timeline-strip {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 48px;
  padding-top: 24px
}

.about-author-page .timeline-strip::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c8d7d040
}

.about-author-page .timeline-point {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-top: 24px;
  padding-right: 12px
}

.about-author-page .timeline-point__dot {
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C8D7D0;
  border: 2px solid #86A9AD
}

.about-author-page .timeline-point__year {
  font-size: 14px;
  font-weight: 700;
  color: #C8D7D0;
  letter-spacing: .06em;
  margin-bottom: 4px
}

.about-author-page .timeline-point__label {
  font-size: 14px;
  line-height: 1.5;
  color: #c8d7d0bf
}

.about-author-page .knowledge-zone {
  background: #fff;
  padding: 96px 48px
}

.about-author-page .knowledge-zone__inner {
  max-width: 1200px;
  margin: 0 auto
}

.about-author-page .knowledge-zone__header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start
}

.about-author-page .knowledge-number-bg {
  font-size: 56px;
  font-weight: 700;
  color: #c8d7d059;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: -12px;
  user-select: none
}

.about-author-page .knowledge-zone__heading {
  font-size: 30px;
  line-height: 1.3;
  color: #2c3038;
  font-weight: 600;
  letter-spacing: -.01em
}

.about-author-page .knowledge-zone__text-block {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-author-page .knowledge-para {
  font-size: 15px;
  line-height: 1.7;
  color: #454c58
}

.about-author-page .knowledge-para .para-label {
  font-weight: 700;
  color: #59616F;
  display: inline
}

.about-author-page .knowledge-para .first-letter-accent {
  font-size: 22px;
  font-weight: 700;
  color: #86A9AD;
  line-height: 1;
  float: left;
  margin-right: 4px;
  margin-top: 2px
}

.about-author-page .knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.about-author-page .knowledge-card {
  border: 1px solid #C8D7D0;
  border-radius: 4px;
  padding: 24px;
  position: relative;
  background: #f5f7f8;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: box-shadow .28s ease-in-out, border-color .25s ease-in-out;
  cursor: default;
  overflow: hidden
}

.about-author-page .knowledge-card:hover {
  box-shadow: 2px 6px 20px 0 #59616f1a;
  border-color: #86A9AD
}

.about-author-page .knowledge-card:nth-child(odd) {
  background: #f0f4f4
}

.about-author-page .knowledge-card:nth-child(even) {
  background: #f5f7f8
}

.about-author-page .knowledge-card__unfold {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-author-page .knowledge-card:hover .knowledge-card__unfold {
  max-height: 200px
}

.about-author-page .knowledge-card__icon-float {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  animation: float-sway 3.2s ease-in-out infinite
}

.about-author-page .knowledge-card__icon-float svg {
  width: 100%;
  height: 100%
}

@keyframes float-sway {

  0%,
  100% {
    transform: translateY(0px) rotate(-1deg)
  }

  50% {
    transform: translateY(-5px) rotate(1deg)
  }
}

.about-author-page .knowledge-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3038;
  line-height: 1.3;
  margin-bottom: 12px
}

.about-author-page .knowledge-card__summary {
  font-size: 14px;
  line-height: 1.5;
  color: #59616F
}

.about-author-page .knowledge-card__detail {
  font-size: 14px;
  line-height: 1.5;
  color: #59616F;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #C8D7D0
}

.about-author-page .knowledge-image-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 48px
}

.about-author-page .knowledge-image-main {
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.about-author-page .knowledge-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-author-page .knowledge-contributors {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center
}

.about-author-page .contributor-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.about-author-page .contributor-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 2px 2px 5px 0 #59616f12
}

.about-author-page .contributor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-author-page .contributor-info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.about-author-page .contributor-name {
  font-size: 15px;
  font-weight: 600;
  color: #2c3038;
  line-height: 1.3
}

.about-author-page .contributor-desc {
  font-size: 14px;
  color: #59616F;
  line-height: 1.5
}

.about-author-page .divider-band-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  background: #f0f4f4
}

.about-author-page .divider-band-bottom__line {
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, #86A9AD 0%, #C8D7D0 100%);
  border-radius: 36px
}

@media (max-width: 1366px) {
  .about-author-page .author-split {
    grid-template-columns: 1fr 1fr
  }

  .about-author-page .expertise-zone__top {
    grid-template-columns: 1fr 1fr
  }

  .about-author-page .knowledge-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width: 768px) {
  .about-author-page .author-split {
    grid-template-columns: 1fr
  }

  .about-author-page .author-split__visual {
    padding: 48px 24px
  }

  .about-author-page .author-split__text {
    padding: 48px 24px
  }

  .about-author-page .author-split__text::before {
    display: none
  }

  .about-author-page .expertise-zone {
    padding: 48px 24px
  }

  .about-author-page .expertise-zone__top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .about-author-page .expertise-image-small-row {
    grid-template-columns: 1fr 1fr
  }

  .about-author-page .timeline-strip {
    flex-direction: column;
    gap: 24px
  }

  .about-author-page .timeline-strip::before {
    display: none
  }

  .about-author-page .timeline-point {
    padding-top: 0;
    padding-right: 0
  }

  .about-author-page .timeline-point__dot {
    display: none
  }

  .about-author-page .knowledge-zone {
    padding: 48px 24px
  }

  .about-author-page .knowledge-zone__header {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .about-author-page .knowledge-grid {
    grid-template-columns: 1fr
  }

  .about-author-page .knowledge-image-row {
    grid-template-columns: 1fr
  }

  .about-author-page .author-heading {
    font-size: 30px
  }
}

@media (max-width: 375px) {
  .about-author-page .author-heading {
    font-size: 22px
  }

  .about-author-page .expertise-zone__heading {
    font-size: 22px
  }

  .about-author-page .knowledge-zone__heading {
    font-size: 22px
  }

  .about-author-page .expertise-image-small-row {
    grid-template-columns: 1fr
  }

  .about-author-page .author-split__visual {
    padding: 24px 12px
  }

  .about-author-page .author-split__text {
    padding: 24px 12px
  }

  .about-author-page .expertise-zone {
    padding: 48px 12px
  }

  .about-author-page .knowledge-zone {
    padding: 48px 12px
  }
}

@media (min-width: 769px) {
  .about-author-page .knowledge-card__unfold {
    transition: max-height .38s cubic-bezier(0.4, 0, 0.2, 1)
  }

  .about-author-page .knowledge-card {
    transition: box-shadow .28s ease-in-out, border-color .25s ease-in-out
  }

  .about-author-page .image-frame__photo {
    transition: filter .35s ease-in-out
  }
}

@media (max-width: 768px) {
  .about-author-page .knowledge-card__unfold {
    max-height: none;
    overflow: visible;
    transition: none
  }

  .about-author-page .knowledge-card {
    transition: none
  }
}

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

.blog-root .blog-posts-grid-area,
.blog-root .blog-metrics-area,
.blog-root .blog-technique-area,
.blog-root .blog-subscribe-area,
.blog-root .blog-visual-area {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto
}

.blog-root .blog-title-band {
  background: #2e3340;
  padding: 96px 48px;
  position: relative;
  overflow: hidden
}

.blog-root .blog-title-band-inner {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2
}

.blog-root .blog-title-faded-letter {
  position: absolute;
  top: -24px;
  right: 48px;
  font-size: 280px;
  font-weight: 900;
  color: #86A9AD;
  opacity: .07;
  line-height: 1.1;
  pointer-events: none;
  user-select: none;
  z-index: 1
}

.blog-root .blog-title-eyebrow {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #86A9AD;
  margin-bottom: 24px;
  display: block
}

.blog-root .blog-title-heading {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #f5f5f0;
  margin: 0 0 24px;
  max-width: 800px
}

.blog-root .blog-title-heading .blog-title-first-letter {
  font-size: 72px;
  color: #86A9AD;
  line-height: 1
}

.blog-root .blog-title-description {
  font-size: 18px;
  line-height: 1.7;
  color: #b8c4c6;
  max-width: 600px;
  margin: 0
}

.blog-root .blog-divider-zigzag {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.blog-root .blog-posts-full-band {
  background: #f4f5f3;
  padding: 96px 48px
}

.blog-root .blog-posts-grid-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.blog-root .blog-post-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 5px 0 #59616f12;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  clip-path: inset(0% 0% 100% 0%);
  animation: blog-card-reveal .55s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.blog-root .blog-post-card:nth-child(1) {
  animation-delay: .05s
}

.blog-root .blog-post-card:nth-child(2) {
  animation-delay: .12s
}

.blog-root .blog-post-card:nth-child(3) {
  animation-delay: .19s
}

.blog-root .blog-post-card:nth-child(4) {
  animation-delay: .26s
}

.blog-root .blog-post-card:nth-child(5) {
  animation-delay: .33s
}

.blog-root .blog-post-card:nth-child(6) {
  animation-delay: .4s
}

@keyframes blog-card-reveal {
  to {
    clip-path: inset(0% 0% 0% 0%)
  }
}

.blog-root .blog-post-card:hover {
  box-shadow: 2px 9px 48px 0 #59616f1c
}

.blog-root .blog-post-image-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden
}

.blog-root .blog-post-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.blog-root .blog-post-card:hover .blog-post-image-frame img {
  transform: scale(1.04)
}

.blog-root .blog-post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.blog-root .blog-post-heading {
  font-size: 18px;
  line-height: 1.3;
  color: #2e3340;
  margin: 0 0 12px;
  letter-spacing: -.01em
}

.blog-root .blog-post-description {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0 0 24px;
  flex: 1
}

.blog-root .blog-post-link {
  display: inline-block;
  padding: 12px 24px;
  background: #59616F;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  align-self: flex-start;
  transition: background-color .35s ease-in-out, box-shadow .35s ease-in-out
}

.blog-root .blog-post-link:hover {
  background: #86A9AD;
  box-shadow: 2px 6px 20px 0 #86a9ad1a
}

.blog-root .blog-post-link:focus-visible {
  outline: 2px solid #86A9AD;
  outline-offset: 3px
}

.blog-root .blog-metrics-full-band {
  background: #fff;
  padding: 96px 48px;
  position: relative
}

.blog-root .blog-metrics-accent-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #59616F 0%, #C8D7D0 100%)
}

.blog-root .blog-metrics-area {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 48px;
  align-items: start
}

.blog-root .blog-metrics-label-col {
  padding-top: 12px
}

.blog-root .blog-metrics-section-number {
  font-size: 42px;
  font-weight: 900;
  color: #C8D7D0;
  line-height: 1.1;
  display: block;
  margin-bottom: 12px
}

.blog-root .blog-metrics-section-heading {
  font-size: 22px;
  line-height: 1.3;
  color: #2e3340;
  margin: 0 0 12px
}

.blog-root .blog-metrics-section-text {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.blog-root .blog-metrics-middle-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.blog-root .blog-metric-item {
  border-radius: 4px;
  padding: 24px;
  background: #f4f5f3;
  box-shadow: 2px 2px 5px 0 #59616f12
}

.blog-root .blog-metric-item.odd {
  background: #eef2f1
}

.blog-root .blog-metric-item.even {
  background: #f7f8f6
}

.blog-root .blog-metric-label {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #86A9AD;
  display: block;
  margin-bottom: 4px
}

.blog-root .blog-metric-before {
  font-size: 15px;
  color: #59616F;
  margin: 0 0 4px
}

.blog-root .blog-metric-after {
  font-size: 22px;
  font-weight: 700;
  color: #2e3340;
  margin: 0 0 4px
}

.blog-root .blog-metric-indicator {
  display: inline-block;
  font-size: 14px;
  color: #59616F;
  background: #C8D7D0;
  border-radius: 36px;
  padding: 4px 12px
}

.blog-root .blog-metrics-image-col {
  position: relative
}

.blog-root .blog-metrics-image-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 9px 48px 0 #59616f1c
}

.blog-root .blog-metrics-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.blog-root .blog-metrics-image-caption {
  font-size: 14px;
  color: #86A9AD;
  margin-top: 12px;
  display: block
}

.blog-root .blog-technique-full-band {
  background: #59616F;
  padding: 96px 48px;
  position: relative
}

.blog-root .blog-technique-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.blog-root .blog-technique-bg-pattern svg {
  width: 100%;
  height: 100%;
  opacity: .06
}

.blog-root .blog-technique-area {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.blog-root .blog-technique-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.blog-root .blog-technique-heading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #f5f5f0;
  margin: 0
}

.blog-root .blog-technique-heading .blog-technique-first-letter {
  font-size: 56px;
  color: #C8D7D0
}

.blog-root .blog-technique-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.blog-root .blog-technique-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 4px
}

.blog-root .blog-technique-step.odd {
  background: #c8d7d01f
}

.blog-root .blog-technique-step.even {
  background: #86a9ad1a
}

.blog-root .blog-technique-step-num {
  font-size: 22px;
  font-weight: 900;
  color: #C8D7D0;
  opacity: .5;
  min-width: 32px;
  line-height: 1.3
}

.blog-root .blog-technique-step-text {
  font-size: 15px;
  line-height: 1.7;
  color: #d8dfe0;
  margin: 0
}

.blog-root .blog-technique-step-text strong {
  color: #f5f5f0;
  font-weight: 600
}

.blog-root .blog-technique-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.blog-root .blog-technique-stat-card {
  background: #ffffff12;
  border-radius: 4px;
  padding: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.blog-root .blog-technique-stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #C8D7D0;
  line-height: 1.1;
  display: block;
  margin-bottom: 4px
}

.blog-root .blog-technique-stat-label {
  font-size: 15px;
  color: #b8c4c6;
  margin: 0
}

.blog-root .blog-subscribe-full-band {
  background: #C8D7D0;
  padding: 96px 48px;
  position: relative
}

.blog-root .blog-subscribe-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.blog-root .blog-subscribe-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.blog-root .blog-subscribe-heading {
  font-size: 30px;
  line-height: 1.3;
  color: #2e3340;
  margin: 0;
  letter-spacing: -.01em
}

.blog-root .blog-subscribe-heading .blog-subscribe-first-letter {
  font-size: 42px;
  color: #59616F
}

.blog-root .blog-subscribe-body {
  font-size: 15px;
  line-height: 1.7;
  color: #3d4550;
  margin: 0
}

.blog-root .blog-subscribe-form-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.blog-root .blog-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.blog-root .blog-subscribe-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.blog-root .blog-subscribe-label {
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #59616F
}

.blog-root .blog-subscribe-input {
  padding: 12px;
  border: 1px solid #86A9AD;
  border-radius: 4px;
  font-size: 15px;
  color: #2e3340;
  background: #fff;
  outline: none;
  transition: border-color .28s ease-in-out, box-shadow .28s ease-in-out;
  box-shadow: inset 2px 2px 5px 0 #59616f12
}

.blog-root .blog-subscribe-input::placeholder {
  color: #86A9AD;
  transition: opacity .35s ease-in-out
}

.blog-root .blog-subscribe-input:focus::placeholder {
  opacity: 0
}

.blog-root .blog-subscribe-input:focus {
  border-color: #59616F;
  box-shadow: inset 2px 2px 5px 0 #59616f12 0 0 0 3px #86a9ad2e
}

.blog-root .blog-subscribe-button {
  padding: 12px 24px;
  background: #59616F;
  color: #fff;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color .32s ease-in-out, box-shadow .32s ease-in-out
}

.blog-root .blog-subscribe-button:hover {
  background: #2e3340;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.blog-root .blog-subscribe-button:focus-visible {
  outline: 2px solid #2e3340;
  outline-offset: 3px
}

.blog-root .blog-visual-full-band {
  background: #fff;
  padding: 96px 48px;
  position: relative
}

.blog-root .blog-visual-area {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start
}

.blog-root .blog-visual-about-col {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.blog-root .blog-visual-number-bg {
  font-size: 56px;
  font-weight: 900;
  color: #C8D7D0;
  opacity: .35;
  line-height: 1.1;
  display: block;
  margin-bottom: -12px
}

.blog-root .blog-visual-heading {
  font-size: 30px;
  line-height: 1.3;
  color: #2e3340;
  margin: 0
}

.blog-root .blog-visual-para {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.blog-root .blog-visual-para strong {
  color: #2e3340
}

.blog-root .blog-visual-link-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap
}

.blog-root .blog-visual-link {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #59616F;
  color: #59616F;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color .28s ease-in-out, color .28s ease-in-out, box-shadow .28s ease-in-out
}

.blog-root .blog-visual-link:hover {
  background: #59616F;
  color: #fff;
  box-shadow: 2px 6px 20px 0 #59616f1a
}

.blog-root .blog-visual-link:focus-visible {
  outline: 2px solid #59616F;
  outline-offset: 3px
}

.blog-root .blog-visual-stat-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px
}

.blog-root .blog-visual-stat-item {
  padding: 24px;
  border-radius: 4px;
  box-shadow: 2px 2px 5px 0 #59616f12
}

.blog-root .blog-visual-stat-item.odd {
  background: #f4f5f3
}

.blog-root .blog-visual-stat-item.even {
  background: #eef2f1
}

.blog-root .blog-visual-stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #86A9AD;
  line-height: 1.1;
  display: block
}

.blog-root .blog-visual-stat-desc {
  font-size: 14px;
  color: #59616F;
  margin: 4px 0 0
}

@media (max-width: 1366px) {
  .blog-root .blog-posts-grid-area {
    grid-template-columns: repeat(2, 1fr)
  }

  .blog-root .blog-metrics-area {
    grid-template-columns: 1fr 1fr
  }

  .blog-root .blog-metrics-image-col {
    grid-column: span 2
  }

  .blog-root .blog-visual-area {
    grid-template-columns: 1fr 1fr
  }

  .blog-root .blog-visual-about-col {
    grid-column: span 1
  }
}

@media (max-width: 768px) {
  .blog-root .blog-title-band {
    padding: 48px 24px
  }

  .blog-root .blog-title-heading {
    font-size: 42px
  }

  .blog-root .blog-title-faded-letter {
    font-size: 160px;
    right: 12px
  }

  .blog-root .blog-posts-full-band {
    padding: 48px 24px
  }

  .blog-root .blog-posts-grid-area {
    grid-template-columns: 1fr
  }

  .blog-root .blog-metrics-full-band {
    padding: 48px 24px
  }

  .blog-root .blog-metrics-area {
    grid-template-columns: 1fr
  }

  .blog-root .blog-metrics-image-col {
    grid-column: span 1
  }

  .blog-root .blog-technique-full-band {
    padding: 48px 24px
  }

  .blog-root .blog-technique-area {
    grid-template-columns: 1fr
  }

  .blog-root .blog-subscribe-full-band {
    padding: 48px 24px
  }

  .blog-root .blog-subscribe-area {
    grid-template-columns: 1fr
  }

  .blog-root .blog-visual-full-band {
    padding: 48px 24px
  }

  .blog-root .blog-visual-area {
    grid-template-columns: 1fr
  }

  .blog-root .blog-visual-about-col {
    grid-column: span 1
  }
}

@media (max-width: 375px) {
  .blog-root .blog-title-heading {
    font-size: 30px
  }

  .blog-root .blog-title-heading .blog-title-first-letter {
    font-size: 42px
  }

  .blog-root .blog-title-description {
    font-size: 15px
  }

  .blog-root .blog-posts-full-band,
  .blog-root .blog-metrics-full-band,
  .blog-root .blog-technique-full-band,
  .blog-root .blog-subscribe-full-band,
  .blog-root .blog-visual-full-band {
    padding: 48px 12px
  }
}

@media (min-width: 769px) {

  .blog-root .blog-post-card,
  .blog-root .blog-post-link,
  .blog-root .blog-subscribe-input,
  .blog-root .blog-subscribe-button,
  .blog-root .blog-visual-link,
  .blog-root .blog-metrics-image-frame img {
    transition-property: transform, background-color, box-shadow, border-color, color, opacity
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: linear-gradient(170deg, #fff 0%, #e8eef0 100%)
}

.success-page .confirmation-wrapper {
  max-width: 1600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px
}

.success-page .confirmation-icon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.success-page .confirmation-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 36px;
  background: #fff;
  box-shadow: 2px 6px 20px 0 #86a9ad1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.success-page .confirmation-checkmark svg {
  display: block
}

.success-page .confirmation-label {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #86A9AD;
  line-height: 1.3
}

.success-page .confirmation-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 9px 48px 0 #59616f1c;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left
}

.success-page .confirmation-card .card-heading {
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #59616F;
  margin: 0
}

.success-page .confirmation-card .card-heading span {
  font-size: 42px;
  color: #86A9AD;
  line-height: 1.1;
  display: block
}

.success-page .confirmation-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.success-page .confirmation-card .card-body .body-paragraph {
  font-size: 15px;
  line-height: 1.7;
  color: #59616F;
  margin: 0
}

.success-page .confirmation-card .card-body .body-paragraph strong {
  font-weight: 600;
  color: #59616F
}

.success-page .confirmation-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #86A9AD 0%, #C8D7D0 100%);
  border-radius: 4px;
  flex-shrink: 0
}

.success-page .confirmation-card .contact-note {
  font-size: 14px;
  line-height: 1.5;
  color: #86A9AD;
  margin: 0
}

.success-page .confirmation-card .contact-note a {
  color: #59616F;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s ease-in-out
}

.success-page .confirmation-card .contact-note a:hover {
  color: #86A9AD
}

.success-page .confirmation-action-area {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.success-page .action-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  background: #59616F;
  color: #fff;
  border: 2px solid #59616F;
  cursor: pointer;
  box-shadow: 2px 2px 5px 0 #59616f12;
  transition: box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1), background .28s ease-in-out
}

.success-page .action-button-primary:hover {
  background: #86A9AD;
  border-color: #86A9AD;
  box-shadow: 2px 9px 48px 0 #59616f1c
}

.success-page .action-button-primary:focus-visible {
  outline: 3px solid #86A9AD;
  outline-offset: 3px
}

.success-page .action-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  color: #59616F;
  border: 2px solid #C8D7D0;
  cursor: pointer;
  box-shadow: 2px 2px 5px 0 #86a9ad12;
  transition: box-shadow .4s cubic-bezier(0.4, 0, 0.2, 1), border-color .28s ease-in-out, color .28s ease-in-out
}

.success-page .action-button-secondary:hover {
  border-color: #86A9AD;
  color: #86A9AD;
  box-shadow: 2px 6px 20px 0 #86a9ad1a
}

.success-page .action-button-secondary:focus-visible {
  outline: 3px solid #86A9AD;
  outline-offset: 3px
}

@media (max-width: 768px) {
  .success-page {
    padding: 48px 24px
  }

  .success-page .confirmation-wrapper {
    gap: 24px
  }

  .success-page .confirmation-card {
    padding: 24px;
    gap: 12px
  }

  .success-page .confirmation-card .card-heading span {
    font-size: 30px
  }

  .success-page .confirmation-action-area {
    flex-direction: column;
    align-items: stretch;
    gap: 12px
  }

  .success-page .action-button-primary,
  .success-page .action-button-secondary {
    text-align: center;
    justify-content: center
  }
}

@media (max-width: 375px) {
  .success-page {
    padding: 48px 12px
  }

  .success-page .confirmation-card {
    padding: 24px 12px
  }
}