.single-layout {
  display: grid;
  grid-template-columns: 52px minmax(0, 820px) 330px;
  justify-content: center;
  align-items: start;
  gap: 28px;
  margin-top: 28px;
}
.single-layout .single {
  width: 100%;
  max-width: none;
  margin: 0;
}
.share-rail {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.share-rail > span {
  font-size: 10px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 4px;
  color: #697586;
}
.share-rail a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font: 700 15px Arial;
}
.share-fb {
  background: #1877f2;
}
.share-x {
  background: #111;
}
.share-in {
  background: #0a66c2;
}
.share-wa {
  background: #22a85a;
}
.share-mail {
  background: #df3d36;
}
.single-latest {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 108px);
  overflow: auto;
  scrollbar-width: thin;
}
.single-latest > h2 {
  font-size: 20px;
  margin: 0 0 16px;
  padding-bottom: 7px;
  border-bottom: 2px solid #052d66;
}
.single-latest .latest {
  grid-template-columns: 100px 1fr;
}
.single-latest .latest img {
  width: 100px;
  height: 74px;
}
.single-latest .latest h3 {
  font-size: 14px;
}
.single-latest .latest .meta {
  display: none;
}
.single-layout .single h1 {
  font-size: 42px;
}
.single-layout .single-content {
  font-size: 18px;
  line-height: 1.7;
}
.topic-tags {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid #d8e0e8;
}
.topic-tags h2 {
  font-size: 18px;
  margin: 0 0 13px;
}
.topic-tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-tags span {
  padding: 7px 11px;
  background: #edf3f8;
  border-radius: 3px;
  color: #052d66;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.comments-section {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #cfd6de;
}
.comments-section > h2 {
  font-size: 22px;
}
.comments-section > h2 span {
  color: #566475;
}
.comment {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid #e1e7ed;
}
.comment > img {
  border-radius: 50%;
}
.comment-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 7px;
}
.comment-head time {
  font-size: 12px;
  color: #566475;
}
.comment-text {
  color: #27374a;
  line-height: 1.55;
}
.comment-form {
  margin-top: 28px;
  padding: 24px;
  background: #f4f7fa;
  border-radius: 5px;
}
.comment-form h3 {
  margin: 0 0 18px;
  color: #052d66;
}
.comment-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.comment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid #bac6d2;
  border-radius: 4px;
  padding: 11px;
  background: #fff;
  font: 15px Arial;
}
.comment-form textarea {
  resize: vertical;
  margin-bottom: 14px;
}
.comment-form button {
  min-width: 170px;
  border: 0;
  border-radius: 4px;
  background: #052d66;
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}
.comment-form button:disabled {
  opacity: 0.75;
}
.comment-note {
  font-size: 12px;
  color: #566475;
}
.comment-status {
  margin-top: 12px;
  font-weight: 700;
}
.comment-status.success {
  color: #15803d;
}
.comment-status.error {
  color: #c62828;
}
.comment-hp {
  position: absolute !important;
  left: -10000px !important;
}
.no-comments,
.comments-closed {
  color: #566475;
}
@media (max-width: 1150px) {
  .single-layout {
    grid-template-columns: 46px minmax(0, 820px);
  }
  .single-latest {
    display: none;
  }
}
@media (max-width: 700px) {
  .single-layout {
    display: block;
    margin-top: 20px;
  }
  .share-rail {
    position: static;
    display: flex;
    flex-direction: row;
    margin: 0 0 18px;
  }
  .share-rail > span {
    writing-mode: initial;
    transform: none;
    margin: 0 5px 0 0;
  }
  .single-layout .single h1 {
    font-size: 31px;
  }
  .comment-fields {
    grid-template-columns: 1fr;
  }
  .comment-form {
    margin-left: -14px;
    margin-right: -14px;
    padding: 18px;
  }
  .comment-head {
    display: block;
  }
  .comment-head time {
    display: block;
    margin-top: 4px;
  }
}
