article {
  max-width: 1320px;
  margin: 0 auto 120px;
  padding: 120px 20px 0;
}
@media (max-width: 1024px) {
  article {
    padding-top: 48px;
  }
}

.single {
  background: #F4F7FA;
}
.single__header {
  border-bottom: 1px solid rgba(12, 45, 69, 0.4);
}
.single__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: #0C2D45;
}
.single__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.single__category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single__category-link {
  font-size: 12px;
  color: #0c2D45;
  letter-spacing: 0.04em;
  padding: 4px 24px;
  border-radius: 64px;
  background-color: #CCDFF2;
}
.single__date {
  font-size: 12px;
  color: #959595;
  letter-spacing: 0.04em;
}
.single__content {
  background: #fff;
  max-width: 1280px;
  padding: 80px 0;
  margin: 0 auto;
}
.single__back {
  width: 220px;
  height: 59px;
  margin: 64px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single__back a {
  font-weight: 500;
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #fff;
  background: #0C2D45;
  padding: 16px 24px;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.single__back a::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  -webkit-mask-image: url(../images/news/icon-arrow-left.svg);
          mask-image: url(../images/news/icon-arrow-left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: transform 0.3s ease;
}
.single__back a:hover {
  background: var(--theme-white);
  color: var(--theme-primary);
}
.single__back a:hover::before {
  transform: translateX(-8px);
  background: #0C2D45;
}
@media (max-width: 767px) {
  .single__title {
    font-size: 20px;
  }
  .single__content {
    padding: 48px 0;
  }
}

.wysiwyg-editor {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.wysiwyg-editor h2,
.wysiwyg-editor h3,
.wysiwyg-editor h4,
.wysiwyg-editor p,
.wysiwyg-editor ul,
.wysiwyg-editor ol,
.wysiwyg-editor table,
.wysiwyg-editor img,
.wysiwyg-editor a,
.wysiwyg-editor blockquote {
  overflow: auto;
}
.wysiwyg-editor .post-img {
  margin-top: 25px;
}
.wysiwyg-editor .post-img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.wysiwyg-editor h2 {
  font-weight: 700;
  font-size: 32px;
  margin: 48px 0 24px;
  padding-left: 40px;
  border-left: 12px solid #0C2D45;
  color: #0C2D45;
}
.wysiwyg-editor h3 {
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin: 24px 0 24px;
  color: #0C2D45;
}
.wysiwyg-editor h4 {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin: 24px 0 24px;
  color: #0C2D45;
}
.wysiwyg-editor h4:before {
  content: none;
}
.wysiwyg-editor h2:first-child,
.wysiwyg-editor h2 + h3,
.wysiwyg-editor h3 + h4 {
  margin-top: 25px;
}
.wysiwyg-editor img {
  margin-top: 25px;
}
.wysiwyg-editor p,
.wysiwyg-editor ul,
.wysiwyg-editor ol,
.wysiwyg-editor table {
  margin: 40px 0 0 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #0C2D45;
}
.wysiwyg-editor ul,
.wysiwyg-editor ol {
  margin-left: 0px;
  padding-left: 1em;
}
.wysiwyg-editor ul {
  list-style-type: disc;
}
.wysiwyg-editor ol {
  list-style-type: decimal;
}
.wysiwyg-editor table {
  border-collapse: collapse;
}
.wysiwyg-editor table th,
.wysiwyg-editor table td {
  border: 1px solid #ddd;
  padding: 10px;
}
.wysiwyg-editor .wp-block-table figcaption {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 10px 0 0 0;
}
.wysiwyg-editor blockquote {
  border-radius: 0;
  margin: 40px 0 0 0;
  padding: 24px;
  background-color: #EEF2F6;
  color: #0C2D45;
}
.wysiwyg-editor blockquote p {
  margin-top: 0;
}
.wysiwyg-editor blockquote cite {
  font-size: 1.4rem;
  margin-top: 10px;
}
.wysiwyg-editor a {
  color: #0C2D45;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.wysiwyg-editor a:hover, .wysiwyg-editor a:focus {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .wysiwyg-editor h2 {
    font-size: 24px;
  }
  .wysiwyg-editor h3 {
    font-size: 18px;
  }
  .wysiwyg-editor h4 {
    font-size: 16px;
  }
}
/*# sourceMappingURL=single.css.map */