.single-article-content-grid {
    display: flex;
		gap: 26px;
		margin-bottom: 40px;
}

.toc.stiky.--new-design {
    position: sticky;
    top: 80px;
}

.single-article-header {
    display: grid;
    grid-template-areas:
        "bread preview"
        "main preview";
    grid-template-columns: 1fr 414px;
    gap: 10px 26px;
}

.single-article-breadcrumbs {
    grid-area: bread;
    color: #B2B2B2;
}

.single-article-main {
    grid-area: main;
    letter-spacing: 0.32px;
    color: #282F32;
    font-size: 16px;
    line-height: 28px;
}

.single-article-header-preview {
    grid-area: preview;
    box-shadow: 0px 0px 6px #00000029;
    border: 1px solid #DEE9F7;
    border-radius: 5px;
    overflow: hidden;
    align-self: flex-start;
    min-height: 185px; /* CLS fix */
}

.single-article-header-preview img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

header.single-article-header-wrapper {
    margin-bottom: 30px;
    background: #FAFCFF;
    border: 1px solid #DEE9F7;
    padding-block: 40px;
}

.single-article-caption {
    letter-spacing: 0.64px;
    color: #333333;
    font-size: 32px;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 20px;
}

.single-article-main p {
    margin-bottom: 30px;
    letter-spacing: 0.32px;
    color: #282F32;
    font-size: 16px;
    line-height: 28px;
}

span.breadcrumbs-delimiter {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    width: 19px;
}

span.breadcrumbs-delimiter:before {
    border-style: solid;
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    transform-origin: top;
}

.breadcrumbs-item {
    letter-spacing: 0.32px;
    color: #B2B2B2;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    transition: all 450ms;
    display: inline-flex;
}

span.breadcrumbs-item {
    color: #F24175;
}

a.breadcrumbs-item:hover {
    color: #F24175;
}

.single-article-meta {
    width: 100%;
    display: grid;
    grid-template-areas:
        "author date read";
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px clamp(15px, 2dvw, 40px);
    align-items: center;
}

.entry-meta-item:first-child {grid-area: label;}
.entry-meta-item:nth-child(2) {grid-area: author;}

.entry-meta-item:nth-child(3) {
    grid-area: date;
}

.entry-meta-item:nth-child(4) {
    grid-area: read;
}

.meta-item {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #333333;
}

a.meta-item {
    text-decoration: underline;
}

a.meta-item.author {
    display: flex;
    align-items: center;
    gap: 6px;
}

a.meta-item.author > img {
    border-radius: 100%;
}

span.entry-meta-link-label > svg {
    margin-left: 4px;
    width: auto;
    height: 10px;
}

.single-article-content {
    flex: 0 1 100%;
    max-width: 700px;
}

aside.single-article-content-aside {
    flex: 0 0 414px;
}

.toc.--new-design {
    transform: none;
    width: 100%;
    background: #FAFCFF;
    border: 1px solid #DEE9F7;
    border-radius: 5px;
    padding: 12px 20px;
    max-height: max(334px, 60dvh);
    padding-right: 14px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
}

.toc.stiky.--new-design {
    max-height: max(334px, 60dvh);
}

.toc.--new-design li.toc_item {
    display: block;
    padding: 0;
    margin-bottom: 15px;
    border: 0;
    position: relative;
    padding-left: 38px;
    line-height: 1;
}

.toc.--new-design li.toc_item:last-child {
	margin-bottom: 0;
}

.toc.--new-design .toc_list {
    flex: 0 1 100%;
    height: 100%;
    overflow: auto;
    padding-right: 20px;
}

.toc.--new-design .toc_list::-webkit-scrollbar {
  width: 5px;
	border-radius: 4px;
}

/* Track */
.toc.--new-design .toc_list::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.toc.--new-design .toc_list::-webkit-scrollbar-thumb {
  background: #DEE9F7;
	border-radius: 4px;
}

/* Handle on hover */
.toc.--new-design .toc_list::-webkit-scrollbar-thumb:hover {
  background: #dee9f776;
}

.toc.--new-design .toc-title {
    letter-spacing: 0.32px;
    color: #282F32;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    text-shadow: none;
    text-transform: capitalize;
    margin-bottom: 18px;
    padding: 0;
}

.toc.--new-design li.toc_item a {
    letter-spacing: 0.32px;
    font-size: 16px;
    color: #282F32;
    line-height: 24px;
}

.toc.--new-design li.toc_item a.active{
	color: #f24175;
}

.toc.--new-design li.toc_item:before {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 15px;
    background: url(https://influencermarketinghub.com/wp-content/themes/voice-child/img/sum_icon.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
    height: 10px;
}

.single-article-header.--no-preview {
    grid-template-areas:
        "bread"
        "main";
    grid-template-columns: 100%;
}

.--capitalize{
	text-transform: capitalize;
}

@media screen and (max-width: 1250px) and (min-width: 1201px) {
	.single-article-tpl .container{
		padding: 0 !important;
		max-width: min(1140px, 100%) !important;
	}
}

@media screen and (max-width: 1200px) {
	.single-article-tpl .container{
		padding: 0 !important;
	}
	.single-article-content-grid{
		gap: 15px;
	}
	aside.single-article-content-aside{
		flex: 1 0 224px;
	}
	.toc.--new-design{
		padding: 12px 10px;
		padding-right: 5px;
	}
	.toc.stiky.--new-design .toc-title{
		margin-bottom: 12px;
	}
	.toc.stiky.--new-design .toc_list{
		padding-right: 5px;
	}
	.toc.stiky.--new-design li.toc_item{
		padding-left: 20px;
	}
	.toc.stiky.--new-design li.toc_item a{
		font-size: 14px;
		line-height: 20px;
	}
}

@media screen and (max-width: 1024px) {
	aside.single-article-content-aside{
		display: none;
	}
	.single-article-content{
		margin: auto;
	}
	.single-article-header{
		max-width: 700px;
		margin: auto;
		grid-template-areas:
        "bread "
				"preview"
        "main";
    grid-template-columns: 100%;
		gap: 30px;
	}
	
}

@media screen and (min-width: 577px){
    .mobile-label{
        display: none;
    }
}
@media screen and (min-width: 1025px){
	.single-article-content .toc{
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.single-article-tpl .container{
		padding-inline: 15px !important;
	}
	.single-article-content{
		max-width: 100%;
	}
}

@media screen and (max-width: 576px){
	.single-article-meta{
		grid-template-areas: "label date"
								"author read";
        grid-template-columns: 1fr auto;
        gap: 5px 10px;
	}

    .mobile-label{
        grid-area: label;
        display: block;
    }
}
