.sp-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sp-container {
    padding: 0 20px;
  }
}

.single_post__head {
  margin-bottom: 32px;
}

.single_post__title {
  font-family: "Fixel Display", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.8px;
  color: #04083a;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .single_post__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.64px;
  }
}
@media screen and (max-width: 767px) {
  .single_post__title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px;
  }
}

.single_post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.single_post__meta-item {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7a7d98;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.single_post__meta-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #eb7a1b;
}
.single_post__meta-item a, .single_post__meta-item time, .single_post__meta-item span {
  color: inherit;
  text-decoration: none;
}
.single_post__meta-item a:active {
  color: #eb7a1b;
}
@media screen and (min-width: 1025px) {
  .single_post__meta-item a:hover {
    color: #eb7a1b;
  }
}
.single_post__meta-item--place {
  gap: 12px;
  text-transform: none;
  letter-spacing: -0.32px;
}
@media screen and (max-width: 767px) {
  .single_post__meta-item {
    font-size: 14px;
  }
}

.single_post__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 437px;
  column-gap: 64px;
  align-items: start;
}
@media screen and (max-width: 1200px) {
  .single_post__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    column-gap: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .single_post__layout {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

.single_post__main {
  min-width: 0;
  position: relative;
}
.single_post__main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -32px;
  width: 1px;
  background: #a7ccee;
}
@media screen and (max-width: 1200px) {
  .single_post__main::after {
    right: -24px;
  }
}
@media screen and (max-width: 1024px) {
  .single_post__main::after {
    content: none;
  }
}

.single_post__thumb {
  margin-bottom: 32px;
}
.single_post__thumb figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  height: 387px;
}
@media screen and (max-width: 1024px) {
  .single_post__thumb figure {
    height: 280px;
  }
}
@media screen and (max-width: 600px) {
  .single_post__thumb figure {
    height: 200px;
  }
}
.single_post__thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}
.single_post__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single_post__thumb figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #7a7d98;
  text-align: center;
}

.single_post__content {
  margin-bottom: 40px;
}
.single_post__content p, .single_post__content li {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(4, 8, 58, 0.52);
  line-height: 32px;
}
.single_post__content > p + p {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .single_post__content p, .single_post__content li {
    font-size: 17px;
    line-height: 26px;
  }
}
.single_post__content h2, .single_post__content h3, .single_post__content h4 {
  font-family: "Fixel Display", sans-serif;
  color: #04083a;
  margin: 32px 0 16px;
}
.single_post__content a {
  color: #0b70cf;
  text-decoration: underline;
}
.single_post__content a:active {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .single_post__content a:hover {
    text-decoration: none;
  }
}

.single_post__video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background: #04083a;
  margin-bottom: 32px;
}
.single_post__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.single_post__video-link {
  margin: -16px 0 32px;
}
.single_post__video-link a {
  color: #0b70cf;
  text-decoration: underline;
}
.single_post__video-link a:active {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .single_post__video-link a:hover {
    text-decoration: none;
  }
}

.single_post__sidebar {
  min-width: 0;
  position: sticky;
  top: 158px;
}
@media screen and (max-width: 1024px) {
  .single_post__sidebar {
    position: static;
    border-top: 1px solid #a7ccee;
    padding-top: 32px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 600px) {
  .single_post__sidebar {
    grid-template-columns: 1fr;
  }
}

.single_post__related-title,
.single_post__share-title {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.48px;
  color: #04083a;
  margin: 0;
}

.single_post__related-title {
  margin-bottom: 24px;
}

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

.single_post__related-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #a7ccee;
}
.single_post__related-item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}
.single_post__related-item a:active .single_post__related-item__title {
  color: #eb7a1b;
}
@media screen and (min-width: 1025px) {
  .single_post__related-item a:hover .single_post__related-item__title {
    color: #eb7a1b;
  }
}

.single_post__related-item__title {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.32px;
  color: #04083a;
  transition: color 0.2s;
}

.single_post__related-item__date {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7a7d98;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.single_post__related-item__date svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #eb7a1b;
}

.single_post__share {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .single_post__share {
    margin-top: 0;
  }
}

.single_post__share-title {
  flex: 1 1 auto;
  min-width: 0;
}

.single_post__share-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.single_post__share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(235, 122, 27, 0.08);
  border: 1px solid #f5cca9;
  color: #eb7a1b;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.single_post__share-btn svg {
  display: block;
}
.single_post__share-btn:active {
  background-color: #eb7a1b;
  border-color: #eb7a1b;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .single_post__share-btn:hover {
    background-color: #eb7a1b;
    border-color: #eb7a1b;
    color: #fff;
  }
}

.single_post__comments,
#respond {
  scroll-margin-top: 96px;
}
@media screen and (max-width: 1024px) {
  .single_post__comments,
  #respond {
    scroll-margin-top: 80px;
  }
}

.single_post__comments {
  margin-top: 32px;
}

.comments {
  margin-top: 48px;
}

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

.comments__list > .comment-item:not(:last-child) {
  padding-bottom: 28px;
  border-bottom: 1px solid #a7ccee;
}

.comment-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}
.comment-item > .children {
  grid-column: 1/-1;
}
.comment-item__avatar {
  flex-shrink: 0;
}
.comment-item__avatar img {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.comment-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-item__author {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.48px;
  color: #04083a;
}
.comment-item__date {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #7a7d98;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.comment-item__date svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #eb7a1b;
}
.comment-item__text {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(4, 8, 58, 0.52);
  color: rgba(4, 8, 58, 0.52);
}
.comment-item__text p {
  margin: 0;
}
.comment-item__text p + p {
  margin-top: 12px;
}
.comment-item__reply a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #eb7a1b;
  text-decoration: none;
}
.comment-item__reply a svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.comment-item__reply a:active {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (min-width: 1025px) {
  .comment-item__reply a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

.children {
  list-style: none;
  padding-left: 72px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.children > .comment-item {
  padding-top: 32px;
  border-top: 1px solid #a7ccee;
}
@media screen and (max-width: 600px) {
  .children {
    padding-left: 24px;
  }
}

.comment-form-wrap {
  padding-top: 16px;
}

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

.comment-form__field {
  margin: 0;
}

.comment-form .comment-form__field input[type=text],
.comment-form .comment-form__field input[type=email],
.comment-form .comment-form__field textarea {
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 16px;
  border: 1px solid #a7ccee;
  border-radius: 4px;
  font: 500 16px/22px "Work Sans", sans-serif;
  color: #04083a;
  background-color: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.comment-form .comment-form__field input[type=text]::-webkit-input-placeholder,
.comment-form .comment-form__field input[type=email]::-webkit-input-placeholder,
.comment-form .comment-form__field textarea::-webkit-input-placeholder {
  color: rgba(4, 8, 58, 0.25);
  opacity: 1;
}
.comment-form .comment-form__field input[type=text]:-moz-placeholder,
.comment-form .comment-form__field input[type=email]:-moz-placeholder,
.comment-form .comment-form__field textarea:-moz-placeholder {
  color: rgba(4, 8, 58, 0.25);
  opacity: 1;
}
.comment-form .comment-form__field input[type=text]::-moz-placeholder,
.comment-form .comment-form__field input[type=email]::-moz-placeholder,
.comment-form .comment-form__field textarea::-moz-placeholder {
  color: rgba(4, 8, 58, 0.25);
  opacity: 1;
}
.comment-form .comment-form__field input[type=text]:-ms-input-placeholder,
.comment-form .comment-form__field input[type=email]:-ms-input-placeholder,
.comment-form .comment-form__field textarea:-ms-input-placeholder {
  color: rgba(4, 8, 58, 0.25);
  opacity: 1;
}
.comment-form .comment-form__field input[type=text]:focus, .comment-form .comment-form__field input[type=text]:focus-visible,
.comment-form .comment-form__field input[type=email]:focus,
.comment-form .comment-form__field input[type=email]:focus-visible,
.comment-form .comment-form__field textarea:focus,
.comment-form .comment-form__field textarea:focus-visible {
  outline: none;
  border-color: #eb7a1b;
}
.comment-form .comment-form__field textarea {
  height: 160px;
  resize: vertical;
}

.comment-reply-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .comment-reply-head {
    margin-bottom: 16px;
  }
}

.comment-form__title-reply,
.comment-reply-title {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.48px;
  color: #04083a;
  min-width: 0;
  margin: 0;
}

#cancel-comment-reply-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #eb7a1b;
  text-decoration: none;
}
#cancel-comment-reply-link:active {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (min-width: 1025px) {
  #cancel-comment-reply-link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}
@media screen and (max-width: 767px) {
  #cancel-comment-reply-link {
    font-size: 14px;
  }
}

.comment-form .form-submit {
  margin: 8px 0 0;
}

.comment-form__submit,
.comment-form .form-submit input[type=submit] {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 12px 24px 12px 18px;
  background-color: #eb7a1b;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.comment-form__submit:active,
.comment-form .form-submit input[type=submit]:active {
  background-color: rgb(188, 97.6, 21.6);
}
@media screen and (min-width: 1025px) {
  .comment-form__submit:hover,
  .comment-form .form-submit input[type=submit]:hover {
    background-color: rgb(188, 97.6, 21.6);
  }
}

/*# sourceMappingURL=single.css.map */
