body.blog .inner__wrapper section.spacer-100:first-of-type {
    padding: 50px 0;
}
body.blog .inner__wrapper section:first-of-type h1,
body.blog .inner__wrapper section:first-of-type h2 {
    font-size: var(--h1-font-size);
    font-family: var(--secondary-font);
    font-style: italic;
    color: var(--primary-darker);
    margin-bottom: 20px;
}
body.blog .inner__wrapper section:first-of-type h2 {
    font-size: var(--h2-font-size);
}

.post-item,
.single-post:first-of-type .post-item {
    border: 1px solid #DEDEDE;
    border-radius: 5px;
}
.single-post .post-item {
    transition: var(--transition);
}
.single-post:hover .post-item {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}

.post-item .image__wrapper {
    height: 250px;
    border-radius: 5px 5px 0 0;
}
.post-item .image__wrapper img {
    border-radius: 4px 4px 0 0;
}
.post-item .inner__wrapper {
    padding: 20px;
}
.single-post:first-of-type .post-item img {
    border-radius: 5px 5px 0 0;
}
.single-post h3,
.single-post h2,
.single-post h1 {
    color: var(--primary-darker);
    font-weight: 700;
}
body.blog .single-post hgroup h1 {
    font-weight: 900;
}
.blog__post_single .post-links .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog__post_single .post-links .nav-links .dtmg__btn {
  min-width: 100px;
}
.blog__post_single .post-links #scroll__up_blog {
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
}
.blog__post_single .a2a_svg.a2a_s__default {
  border-radius: 50%;
}
.page__navigation li {
    width: 38px;
    height: 38px;
    background-color: var(--primary);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.page__navigation li {
    background-color: var(--primary-darker);
}
.page__navigation li.active {
    background-color: #CCCCCC;
}

.page__navigation li a {
    color: var(--white);
}
.page__navigation li.next,
.page__navigation li.prev {
    font-size: 10px;
}

a.read-more {
    transition: var(--transition);
}
a.read-more:hover {
    color: var(--primary-darker);
}
blockquote {
    font-weight: 700;
    padding: 30px 60px;
    display: flex;
  }
  blockquote:before {
    content: "\201C";
    font-size: 100px;
    line-height: 0.78;
    position: relative;
    top: 5px;
    left: 0;
    margin-right:20px;
    z-index: 1;
    font-family: sans-serif, serif;
    color: #ccc;
    opacity: 0.9;
  }
  .sidebar-widgets ul, .sidebar-widgets li {
    list-style: none;
  }
  .category__list .category__list_item {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all .3s ease-out;
  }
  .category__list .category__list_item a {
    color: var(--white);
  }
  .category__list .category__list_item:hover {
    background-color: var(--primary-darker);
  }
  .blog__post_single aside h2,
  .blog__post_single aside h3 {
    font-style: normal;
    font-family: var(--primary-font);
  }
  #comments {
    background: #F5F5F5;
    padding:60px 0;
  }
  #commentform input[type="text"] {
    width: 100%;
    border:1px solid #DFE2EE;
    padding:20px;
    border-radius: 4px;
  }
  #commentform input[type="submit"] {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all .3s ease-out;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.32px;
  }
  #commentform input[type="submit"]:hover {
    background-color: var(--primary-darker);
  }
  #commentform textarea#comment {
    border:1px solid #DFE2EE;
    padding:20px;
    min-height: 200px;
    border-radius: 4px;
  }
  #commentform textarea#comment:focus,
  #commentform textarea#comment:focus-visible {
    outline: none;
    border:1px solid #DEDEDE;
  }
  .comment-form-comment {
    display: flex;
    flex-direction: column;
  }
