/*------------------------------------*
  >>> BLOG SINGLE STYLES
*------------------------------------*/

.post-meta-items,
.post-navigation {
  width: 100%;
}

.post-meta:not(:last-child),
.post-content:not(:last-child),
.post-meta-items:not(:last-child),
.post-navigation:not(:last-child),
.fzt-blog-single div[class*="post-"]:not(:last-child) {
    margin-bottom: 25px;
}

.fzt-blog-single div[class*="post-content"]:not(:last-child) {
  margin: 0;
}

.post-meta:empty,
.post-content:empty,
.post-meta-items:empty,
.post-navigation:empty,
.fzt-blog-single div[class*="post-"]:empty {
  display: none;
}

.fzt-blog-single .post-navigation:not(:last-child),
.fzt-blog-single div[class*="-author-bio"]:not(:last-child),
.fzt-blog-single div[class*="-related"]:not(:last-child) {
  margin: 30px 0;
}

.post-meta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}

.related-post-title {
    word-wrap: break-word;
}

.fzt-blog-single {
    display: inline-block;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.fzt-blog-single div[class*="post-"] {
  float: left;
  width: 100%;
  clear: both;
}

.fzt-blog-single .post-meta > span:not(:last-child) {
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
  border-right: 1px solid var(--soriva-body-text-color);
}

.fzt-blog-single .post-thumbnail {
    position: relative;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.fzt-blog-single .post-thumbnail img {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

.fzt-blog-single .post-content iframe {
  width: 100%;
}

.fzt-blog-single .post-title h2 {
  font-family: var(--soriva-h3-font-family);
  font-size: var(--soriva-h3-font-size);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin: 0;
  color: var(--soriva-heading-color);
  width: 100%;
  text-shadow: 0px 3px 8px rgba(var(--soriva-heading-color-rgb), 0.1);
}

/* Post Author Bio */

.post-author-bio {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  border: 2px dashed var(--soriva-primary-color);
  padding: 30px;
  width: 100%;
  border-radius: 12px;
  background: rgba(var(--soriva-primary-color-rgb), 0.05);
  -webkit-box-shadow: 0px 6px 15px 5px rgba(var(--soriva-dark-color-rgb), 0.05);
  box-shadow: 0px 6px 15px 5px rgba(var(--soriva-dark-color-rgb), 0.05);
}

.post-author-bio .author-bio-avatar a {
    display: inline-block;
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.post-author-bio .author-bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post-author-bio .author-bio-content {
    margin-left: 25px;
}

.post-author-bio .author-bio-content .author-bio-title {
    display: inline-block;
    font-size: var(--soriva-h5-font-size);
    width: 100%;
    position: relative;
    margin: 0 0 15px;
    line-height: 1;
    text-transform: capitalize;
}

.post-author-bio .author-bio-content .author-bio-title > a {
  font-weight: 500;
}

/* Post Navigation */

.fzt-blog-single .post-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-width: 1px 0;
    border-style: solid;
    border-color: var(--soriva-border-light-color);
}

.fzt-blog-single .post-navigation > div {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 160px;
    padding: 30px 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.fzt-blog-single .post-navigation > div:not(:last-child) {
  margin: 0;
}

.fzt-blog-single .post-navigation .no-post {
  cursor: not-allowed;
}

.fzt-blog-single .post-navigation .prev-post-nav {
  justify-content: flex-end;
  padding-right: 50px;
}

.fzt-blog-single .post-navigation .next-post-nav {
  justify-content: flex-start;
  padding-left: 50px;
}

.fzt-blog-single .post-navigation .next-post-nav:before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 50%;
  background: var(--soriva-border-light-color);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.fzt-blog-single .post-navigation .post-nav-anchor {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1;
}

.fzt-blog-single .post-navigation .post-nav-thumb {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 50%;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.fzt-blog-single .post-navigation .prev-post-nav .post-nav-thumb {
  left: 0;
}

.fzt-blog-single .post-navigation .next-post-nav .post-nav-thumb {
  right: 0;
}

.fzt-blog-single .post-navigation div[class*="-nav"] > *:not(:last-child) {
  margin: 0;
}

.fzt-blog-single .post-navigation .post-nav-content {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.fzt-blog-single .post-navigation .prev-post-nav .post-nav-content {
  text-align: right;
}

.fzt-blog-single .post-navigation .next-post-nav .post-nav-content {
  text-align: left;
}

.fzt-blog-single .post-navigation > div *[class*="-nav-thumb"] ~ .post-nav-content {
  width: calc(100% - 150px);
}

.fzt-blog-single .post-navigation .post-nav-content .post-nav-link {
  font-size: calc(var(--soriva-body-font-size) - 5px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soriva-primary-color);
}

.fzt-blog-single .post-navigation .post-nav-content .post-nav-title {
  font-size: var(--soriva-h5-font-size);
  color: var(--soriva-heading-color);
  font-weight: 600;
  line-height: 1.5;
  font-family: var(--soriva-h1-font-family);
  hyphens: auto;
  word-break: break-word;
  transition: var(--transition);
}

.fzt-blog-single .post-navigation div[class*="-post-nav"]:hover .post-nav-content .post-nav-title {
  color: var(--soriva-primary-color);
}

.fzt-blog-single .post-navigation div[class*="-post-nav"]:hover.no-post .post-nav-content .post-nav-title {
  color: var(--soriva-heading-color);
}

/* Related Posts */

.fzt-blog-single .post-related-posts .related-posts-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--soriva-h4-font-size);
  font-weight: 600;
  margin: 0 0 20px;
  width: 100%;
}

.fzt-blog-single .post-related-posts .related-posts-container .fzt-blog-list {
  margin: 0;
}

/* Pagination */

ul.page-numbers,
.page-links,
.wp-block-query-pagination > .wp-block-query-pagination-numbers,
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  position: relative;
  margin: 50px 0 0 0;
}

ul.page-numbers:not(:last-child),
.page-links:not(:last-child),
.wp-block-query-pagination:not(:last-child) {
  margin: 0 0 20px;
}

.page-links,
.wp-block-query-pagination {
  justify-content: flex-start;
  width: 100%;
}

ul.page-numbers li {
  margin: 0;
  padding: 0;
}

ul.page-numbers li .page-numbers,
.page-links a,
.page-links span,
.wp-block-query-pagination .page-numbers,
.wp-block-query-pagination > .wp-block-query-pagination-next,
.wp-block-query-pagination > .wp-block-query-pagination-previous,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid var(--soriva-dark-color);
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soriva-dark-color);
  position: relative;
}

.woocommerce nav.woocommerce-pagination ul li span:empty {
  display: none;
}

ul.page-numbers li .next.page-numbers,
ul.page-numbers li .prev.page-numbers,
.wp-block-query-pagination > .wp-block-query-pagination-next,
.wp-block-query-pagination > .wp-block-query-pagination-previous,
.woocommerce nav.woocommerce-pagination ul li a.next.page-numbers,
.woocommerce nav.woocommerce-pagination ul li a.prev.page-numbers,
.woocommerce nav.woocommerce-pagination ul li span.next.page-numbers,
.woocommerce nav.woocommerce-pagination ul li span.prev.page-numbers {
  font-size: 0;
}

ul.page-numbers li .prev.page-numbers > span:before,
.wp-block-query-pagination > .wp-block-query-pagination-previous > span:before,
.woocommerce nav.woocommerce-pagination ul li a.prev.page-numbers > span:before,
.woocommerce nav.woocommerce-pagination ul li span.prev.page-numbers > span:before {
  content: "\f104";
}

ul.page-numbers li .next.page-numbers > span:before,
.wp-block-query-pagination > .wp-block-query-pagination-next > span:before,
.woocommerce nav.woocommerce-pagination ul li a.next.page-numbers > span:before,
.woocommerce nav.woocommerce-pagination ul li span.next.page-numbers > span:before {
  content: "\f105";
}

ul.page-numbers li .next.page-numbers > span:before,
ul.page-numbers li .prev.page-numbers > span:before,
.wp-block-query-pagination > .wp-block-query-pagination-next > span:before,
.wp-block-query-pagination > .wp-block-query-pagination-previous > span:before,
.woocommerce nav.woocommerce-pagination ul li a.next.page-numbers > span:before,
.woocommerce nav.woocommerce-pagination ul li a.prev.page-numbers > span:before,
.woocommerce nav.woocommerce-pagination ul li span.next.page-numbers > span:before,
.woocommerce nav.woocommerce-pagination ul li span.prev.page-numbers > span:before {
  position: absolute;
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: currentColor;
  font-size: var(--soriva-body-font-size);
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  margin: auto;
}

ul.page-numbers li .page-numbers:hover,
ul.page-numbers li .page-numbers.current,
.page-links a:hover, .page-links span,
.wp-block-query-pagination .page-numbers:hover,
.wp-block-query-pagination .page-numbers.current,
.wp-block-query-pagination > .wp-block-query-pagination-next:hover,
.wp-block-query-pagination > .wp-block-query-pagination-previous:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--soriva-primary-color);
  color: var(--soriva-light-color);
  border: 1px solid var(--soriva-primary-color);
}

.wp-block-query-pagination > .wp-block-query-pagination-next,
.wp-block-query-pagination > .wp-block-query-pagination-numbers,
.wp-block-query-pagination > .wp-block-query-pagination-previous
{
  margin: 0;
}

.nav-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links [class*="nav-"] a {
  height: 50px;
  line-height: 50px;
  font-size: var(--soriva-body-font-size);
  background: var(--soriva-primary-color);
  border: 1px solid var(--soriva-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  color: var(--soriva-light-color);
}

.nav-links [class*="nav-"] a:hover {
  background: var(--soriva-secondary-color);
  color: var(--soriva-light-color);
  border: 1px solid var(--soriva-secondary-color);
}

/* Woocommerce - Pagination Overwrites */

.woocommerce nav.woocommerce-pagination
{
  margin: 60px 0 0;
}

.woocommerce nav.woocommerce-pagination ul
{
  border: none;
  margin: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers:after,
.woocommerce .woocommerce-pagination ul.page-numbers:before,
.woocommerce-page .woocommerce-pagination ul.page-numbers:after,
.woocommerce-page .woocommerce-pagination ul.page-numbers:before
{
  content: none;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li
{
  display: inline-flex;
  border: none;
  float: none;
}

/* Comments Style */

.commententries {
	float: left;
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
}

.commentlist {
	padding-left: 0;
}

.commentlist, .commentlist ul.children {
	display: inline-block;
	list-style: none;
	width: 100%;
}

.commentlist ul.children {
	margin: 0;
	padding-left: 80px;
}

.commentlist ul.children li > .children {
	padding-top: 0;
	padding-left: 60px;
}

.commentlist li.comment,
.commentlist li.pingback,
.commentlist li.trackback {
	padding-bottom: 0;
}

.commentlist li.comment .comment-respond p #email-notes,
.comment-form > p #email-notes,
.comment-form .comment-notes,
.comment-form > .logged-in-as {
	display: inline-block;
	font-size: var(--soriva-body-font-size);
	margin-bottom: 0;
}

.comment-form > .logged-in-as a {
  color: inherit;
}

.comment-form > .logged-in-as a:hover {
  color: var(--soriva-primary-color);
}

.comment-form .comment-notes {
	margin-bottom: 15px;
}

#comments {
	clear: both;
}

.comments-title {
	font-size: var(--soriva-h4-font-size);
  margin: 0;
  font-weight: 600;
}

.comment-list, .comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list li {
  padding: 0;
}

.comment-list li:before {
	display: none;
}

.comment-body {
	border-bottom: 1px solid var(--soriva-border-light-color);
	display: inline-block;
	float: none;
	margin: 25px 0 0;
  padding-left: 90px;
	padding-bottom: 35px;
	position: relative;
	width: 100%;
}

.comment-body + #respond.comment-respond {
	margin-top: 30px;
}

.commentlist > li:first-child > .comment-body {
	margin-top: 0;
}

ul.children li .comment-body {
	padding-left: 60px;
}

.comment-body .comment-meta,
.comment-body .comment-content {
	display: inline-block;
	position: relative;
  line-height: 1.7;
	width: 100%;
}

.comment-body .comment-meta:not(:last-child) {
  margin-bottom: 25px;
}

.comment-body .comment-content:not(:last-child) {
  margin-bottom: 30px;
}

.comment-body p:last-child {
	margin-bottom: 0;
}

.comment-author {
	display: inline-block;
	line-height: normal;
	margin-bottom: 0;
	position: relative;
	width: 100%;
}

.comment-author b {
	font-size: var(--soriva-h5-font-size);
  font-family: var(--soriva-h5-font-family);
  color: var(--soriva-heading-color);
  font-weight: 500;
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
}

.comment-author b a {
  font-weight: 700;
  color: inherit;
}

.comment-author .avatar {
  position: absolute;
	height: 70px;
	left: -90px;
	width: 70px;
	top: 0;
  border-radius: 50%;
	-webkit-border-radius: 50%;
}

.children .comment-author .avatar {
	height: 40px;
	left: -60px;
	width: 40px;
	top: 0;
}

.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
	border: 1px solid var(--soriva-border-light-color);
	padding: 2px;
}

.comment-author .says {
	display: none;
}

.comment-metadata {
	display: inline-block;
	font-size: calc(var(--soriva-body-font-size) - 4px);
	position: relative;
}

.comment-metadata a.comment-edit-link {
	margin-left: 1em;
}

.comment-metadata, .comment-metadata a, .comment-metadata a.comment-edit-link {
	color: inherit;
}

.comment-metadata a.comment-edit-link:hover {
  color: var(--soriva-primary-color);
}

.comment-details .reply {
	display: table;
}

.commentlist li.comment .reply {
	display: inline-block;
	right: 0;
	top: 0;
	position: absolute;
	margin: 0;
	padding: 0;
}

.with-left-sidebar .commentlist li.comment.depth-5 .reply {
	margin-top: 15px;
	position: relative;
}

.comment-reply-link {
	font-size: var(--soriva-body-font-size);
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  padding: 12px 35px;
  border: 1px solid var(--soriva-primary-color);
  line-height: 1;
  display: inline-block;
  background: var(--soriva-primary-color);
  color: var(--soriva-light-color);
  border-radius: 8px;
}

.comment-reply-link:hover {
  background: var(--soriva-secondary-color);
  color: var(--soriva-light-color);
  border: 1px solid var(--soriva-secondary-color);
}

.comment-reply-link .icon {
	left: -2em;
	height: 1em;
	position: absolute;
	top: 0;
	width: 1em;
}

.commententries ul.commentlist li .reply a.comment-reply-login {
	background-color: transparent;
}

.no-comments, p.no-comments, .comment-awaiting-moderation {
  display: inline-block;
	font-size: 14px;
	font-style: italic;
  margin: 15px 0;
}

.comments-pagination {
	margin: 2em 0 3em;
}

.form-submit {
	text-align: left;
	display: inline-block;
	width: 100%;
}

li.comment .comment-form p.form-submit {
	margin-bottom: 15px;
}

.commententries .comments-area:empty {
	display: none;
}

.commententries .comments-area > h3 {
	padding-bottom: 0;
}

.commententries .comments-area > h3, .commententries .comments-area > #comments > h3, #reviews h3, #respond h3#reply-title {
	font-size: var(--soriva-h4-font-size);
}

.commententries .comments-area > #comments > h3 {
	margin-bottom: 20px;
}

#respond h3#reply-title {
  position: relative;
  display: flex;
  width: 100%;
  font-size: var(--soriva-h4-font-size);
  font-weight: 600;
  margin: 20px 0 0;
  align-items: center;
  justify-content: space-between;
}

#respond h3#reply-title small a {
  font-size: calc(var(--soriva-body-font-size) - 4px);
  font-weight: normal;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  line-height: 1;
}

#respond h3#reply-title small a:hover {
  color: var(--soriva-primary-color);
}

.commentlist li.comment #respond {
	display: block;
}

.commentlist li.comment .comment-body ~ #respond {
	border-top: 1px solid var(--soriva-border-light-color);
	border-bottom: 1px solid var(--soriva-border-light-color);
	display: inline-block;
	margin-top: -1px;
	margin-bottom: 0;
	padding: 10px 0 35px;
	position: relative;
	z-index: 1;
}

.commentlist li.comment .comment-body ~ #respond .comment-form {
	margin-bottom: 0;
}

.commentlist li.comment .comment-body ~ #respond h3#reply-title {
	margin-top: 0;
}

.pingback .comment-body, .trackback .comment-body {
	padding-left: 0;
}

.pingback .comment-body {
	margin-left: 0;
	padding-left: 0;
}

.commentlist li.comment, .commentlist li.pingback {
	padding-bottom: 0;
}

.commentlist li.pingback .comment-body .comment-content > p {
	margin-bottom: 0;
}

.commententries nav.navigation {
	float: left;
	margin-bottom: 40px;
	width: 100%;
}

.commententries .nocomments {
	border-top-width: 0;
	padding: 0;
}

.commententries nav.navigation > div .nav-previous {
	float: left;
}

.commententries nav.navigation > div .nav-next {
	float: right;
}

.commententries .nav-links > div a {
	border-bottom: 1px solid var(--soriva-border-light-color);
	padding-bottom: 5px;
	font-size: var(--soriva-body-font-size);
}

.commententries .nav-previous > a:before, .commententries .nav-next > a:after {
	font-size: 16px;
	font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.commententries .nav-previous > a:before {
	content: "\f104";
	margin-right: 10px;
}

.commententries .nav-next > a:after {
	content: "\f105";
	margin-left: 10px;
}

.commentlist li.pingback .comment-author b,
.commentlist li.trackback .comment-author b {
	font-size: calc(var(--soriva-h6-font-size) - 2px);
}

.comment-form {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 20px;
}

.comment-form:not(:last-child) {
  margin-bottom: 20px;
}

.comment-form > p {
	margin-bottom: 0px;
	width: 100%;
	float: left;
	text-align: left;
	position: relative;
}

.comment-form > p label {
  margin: 0 0 20px 0;
  position: relative;
  display: inline-flex;
  gap: 5px;
  font-size: var(--soriva-h6-font-size);
  color: var(--soriva-heading-color);
  font-weight: 500;
  width: 100%;
}

.comment-form > p label > .required,
.comment-form > p.comment-notes .required,
.comment-form .required-field-message .required {
  color: #ff0000;
}

.comment-form > .form-submit,
.comment-form > .comment-form-cookies-consent,
.comment-form > .comment-notes {
	flex: 100%;
	margin-bottom: 0;
}

.comment-form > .form-submit input[type="submit"] {
  margin: 0;
}

.comment-form > .comment-form-cookies-consent {
  line-height: 1;
}

.comment-form > .comment-form-comment textarea {
	min-height: 250px;
}

.comment-form > .comment-form-url,
.comment-form > .comment-form-email,
.comment-form > .comment-form-author {
	flex: 1;
}

.comment-form>p:last-child,
.commentlist li.comment .comment-respond p:last-child {
	margin-bottom: 0;
}

/* Responsive */

/* Laptop, 1281px and up */
@media (min-width: 1281px) and (max-width: 1400px) {

  .post-author-bio {
    padding: 30px;
  }

}

/* Tablets - Landscape, 1025px and up */
@media (min-width: 1025px) and (max-width: 1280px) {

  .post-author-bio {
    padding: 30px;
  }

  .comment-form > .comment-form-url,
  .comment-form > .comment-form-email,
  .comment-form > .comment-form-author {
    flex: 0 0 auto;
  }

  /* If Sidebar - Enabled */
  #primary[class*="-sidebar"] .fzt-blog-single .post-navigation {
    flex-direction: column;
  }

  #primary[class*="-sidebar"] .fzt-blog-single .post-navigation .prev-post-nav {
    padding-right: 0;
  }

  #primary[class*="-sidebar"] .fzt-blog-single .post-navigation .next-post-nav {
    padding-left: 0;
  }

  #primary[class*="-sidebar"] .fzt-blog-single .post-navigation .next-post-nav:before {
    width: 100%;
    height: 1px;
    top: 0;
  }

  .fzt-blog-single .post-related-posts .related-posts-container .fzt-blog-list {
    flex-direction: column;
  }

  .fzt-blog-single .post-related-posts .related-posts-container .fzt-blog-list .fzt-blog-list-thumb,
  .fzt-blog-single .post-related-posts .related-posts-container .fzt-blog-list .fzt-blog-list-content {
    flex: 1;
    max-width: max-content;
  }

  .fzt-blog-single .post-related-posts .related-posts-container .fzt-blog-list .fzt-blog-list-content:not(:only-child) {
    padding: 30px 0 0 0;
  }

}

/* Tablets - Portrait, 768px and up */
@media (min-width: 768px) and (max-width: 1024px) {

  .post-author-bio {
    padding: 30px;
  }

  .fzt-blog-single .post-navigation .post-nav-content .post-nav-title {
  font-size: calc(var(--soriva-h5-font-size) - 2px);
  }

  .comment-form > .comment-form-url,
  .comment-form > .comment-form-email,
  .comment-form > .comment-form-author {
    flex: 0 0 auto;
  }

  .comments-title,
  #respond h3#reply-title,
  .fzt-blog-single .post-related-posts .related-posts-title {
    font-size: calc(var(--soriva-h5-font-size) + 5px);
  }

}

/* Mobile - Landscape, less than 767px */
@media (max-width: 767px) {

  .fzt-blog-single div[class*="post-thumbnail"]:first-child {
    margin: 0 0 50px;
  }

  .post-author-bio {
    padding: 30px;
    flex-direction: column;
  }

  .post-author-bio .author-bio-content {
    margin: 20px 0 0;
  }

  .fzt-blog-single .post-navigation {
    flex-direction: column;
  }

  .fzt-blog-single .post-navigation .prev-post-nav {
    padding-right: 0;
  }

  .fzt-blog-single .post-navigation .next-post-nav {
    padding-left: 0;
  }

  .fzt-blog-single .post-navigation .next-post-nav:before {
    width: 100%;
    height: 1px;
    top: 0;
  }

  .comment-form > .comment-form-url,
  .comment-form > .comment-form-email,
  .comment-form > .comment-form-author {
    flex: 0 0 auto;
  }

  .comments-title,
  #respond h3#reply-title,
  .fzt-blog-single .post-related-posts .related-posts-title {
    font-size: calc(var(--soriva-h5-font-size) + 5px);
  }

  .commentlist li.comment .comment-respond p #email-notes, .comment-form > p #email-notes, .comment-form .comment-notes, .comment-form > .logged-in-as {
    font-size: calc(var(--soriva-body-font-size) - 2px);
  }

}

/* Mobile - Portrait, less than 575px */
@media (max-width: 575px) {

  .fzt-blog-single div[class*="post-meta"] > span:not(:last-child) {
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
  }

  .fzt-blog-single div[class*="post-meta"] > span:not(:last-child):after {
    content: none;
  }

  .post-author-bio .author-bio-content {
    margin: 15px 0 0;
  }

}