html {
  overflow-x: hidden;
}

body {
  overflow: visible;
}

.wa-nowrap {
  white-space: nowrap;
}

/* ------------------------------------------------------------------------ */
/* crumbs                                                                    */
/* ------------------------------------------------------------------------ */
.wa-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #74748B;
}

.wa-crumbs a {
  color: #74748B;
  transition: 0.2s;
}

.wa-crumbs a:hover {
  color: #FA6D21;
}

.wa-crumbs > *:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #C4C4CE;
}

@media (max-width: 767px) {
  .wa-crumbs {
    display: none;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* hero                                                                      */
/* ------------------------------------------------------------------------ */
.wa-hero {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  background: linear-gradient(115.2deg, #FFFFFF 6.4%, #FFF9F5 36.8%, #FFE8D8 86.4%);
}

.wa-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.wa-hero__content {
  min-width: 680px;
  max-width: 680px;
}

.wa-hero__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: #1D1D1F;
}

.wa-hero__lead {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wa-hero__media {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 0;
  width: 540px;
  max-width: calc(100% - 760px);
  transform: translateY(-50%);
}

.wa-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .wa-hero {
    min-height: 469px;
  }

  .wa-hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 469px;
  }
}

@media (max-width: 1199px) {
  .wa-hero__title {
    font-size: 38px;
    line-height: 48px;
  }
}

@media (max-width: 1023px) {
  .wa-hero__media {
    display: none;
  }

  .wa-hero__title {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 767px) {
  .wa-hero .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .wa-hero__content {
    min-width: 0;
    max-width: none;
  }

  .wa-hero__title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 40px;
  }

  .wa-hero__lead {
    line-height: 28px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* body layout                                                               */
/* ------------------------------------------------------------------------ */
.wa-body {
  padding: 64px 0 80px;
}

.wa-body__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.wa-body__main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 760px;
}

.wa-block {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}

.wa-block:last-child {
  margin-bottom: 0;
}

.wa-block__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #1D1D1F;
}

.wa-block__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wa-block__text:last-child {
  margin-bottom: 0;
}

.wa-block__accent {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #1D1D1F;
}

.wa-block__accent:last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .wa-body__row {
    flex-direction: column;
    gap: 32px;
  }

  .wa-body__main {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wa-body {
    padding: 40px 0 48px;
  }

  .wa-block {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
  }

  .wa-block__title {
    font-size: 30px;
    line-height: 40px;
  }

  .wa-block__text {
    line-height: 28px;
  }

  .wa-block__accent {
    line-height: 28px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* list                                                                      */
/* ------------------------------------------------------------------------ */
.wa-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wa-list li {
  position: relative;
  margin-bottom: 22px;
  padding-left: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wa-list li:last-child {
  margin-bottom: 0;
}

.wa-list li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #FA6D21;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .wa-list li {
    margin-bottom: 20px;
    line-height: 28px;
  }

  .wa-list li::before {
    top: 10px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* callout                                                                   */
/* ------------------------------------------------------------------------ */
.wa-callout {
  padding: 20px;
  background: #FFF5EF;
  border-radius: 8px;
}

.wa-callout p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

@media (max-width: 767px) {
  .wa-callout {
    padding: 16px;
  }

  .wa-callout p {
    line-height: 28px;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* registration                                                              */
/* ------------------------------------------------------------------------ */
.wa-block__title + .wa-details {
  margin-top: 24px;
}

.wa-details {
  padding: 24px;
  background: #FFF5EF;
  border-radius: 8px;
}

.wa-details__when {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 17px;
  line-height: 26px;
  color: #FA6D21;
}

.wa-details__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wa-cta {
  margin-top: 24px;
}

.wa-cta__text {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
}

.wa-cta__link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FA6D21;
  word-break: break-all;
  transition: 0.2s;
}

.wa-cta__link:hover {
  color: #E25A12;
}

@media (max-width: 767px) {
  .wa-details {
    padding: 16px;
  }

  .wa-details__when {
    line-height: 28px;
  }

  .wa-details__text {
    line-height: 28px;
  }

  .wa-cta__text {
    line-height: 28px;
  }

  .wa-cta__btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* table of contents                                                         */
/* ------------------------------------------------------------------------ */
.wa-toc {
  flex: 0 0 280px;
  max-width: 280px;
  align-self: stretch;
}

.wa-toc__inner {
  position: sticky;
  top: 100px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(56, 82, 122, 0.06);
}

.wa-toc__title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #1D1D1F;
}

.wa-toc__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-toc__list a {
  position: relative;
  padding-left: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #74748B;
  transition: 0.2s;
}

.wa-toc__list a:hover {
  color: #FA6D21;
}

.wa-toc__list a.is-active {
  font-weight: 600;
  color: #FA6D21;
}

.wa-toc__list a.is-active::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 2px;
  height: 16px;
  background: #FA6D21;
  border-radius: 2px;
}

@media (max-width: 1023px) {
  .wa-toc {
    display: none;
  }
}
/* ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------ */
/* more from blog                                                            */
/* ------------------------------------------------------------------------ */
.wa-more {
  background: #F9F9F9;
}

.wa-more__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wa-more__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #ECEEF1;
  border-radius: 8px;
  transition: 0.2s;
}

.wa-more__card:hover {
  border-color: #FA6D21;
}

.wa-more__date {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #74748B;
}

.wa-more__title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #1D1D1F;
}

.wa-more__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FA6D21;
}

.wa-more__link::after {
  content: '';
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: #FFF0E6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M6 3.5 10.5 8 6 12.5' fill='none' stroke='%23FA6D21' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  border-radius: 50%;
  transition: transform 0.2s;
}

.wa-more__card:hover .wa-more__link::after {
  transform: translateX(4px);
}

@media (max-width: 1023px) {
  .wa-more__card {
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 767px) {
  .wa-more__card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .wa-more__title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
  }
}
/* ------------------------------------------------------------------------ */
