/* =========================
   SINGLE PAGE
========================= */

.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 21px;
    color: #ffffff;
    background: #dd3333;
    padding: 10px 0px;
}

.breadcrumb-wrapper a {
    color: #fff;
    transition: 0.3s;
    font-weight: 600;
}

.breadcrumb-wrapper a:hover {
    color: red;
}

.single-post-section {
    padding: 0px 0 60px;
}

/* GRID */

.single-post-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 50px;
    align-items: start;
    margin-bottom: 30px;
}

/* =========================
   CONTENT
========================= */

.single-post-content {
    min-width: 0;
}

/* CATEGORY */

.single-post-category {
    margin-bottom: 15px;
}

.single-post-category a {
    display: inline-flex;
    padding: 5px 10px;
    background: #dd3333;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* TITLE */

.single-post-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* META */

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.single-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-post-author img {
    width: 40px;
    height: 40px;

    border-radius: 50%;
}

.meta-divider {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #999;
}

/* FEATURED IMAGE */

.single-post-thumbnail {
    margin-bottom: 20px;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
	border: 1px solid #e5e5e5;
    border-radius: 5px;
}

/* CONTENT */

.single-post-description {
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

.single-post-description p,
.wp-block-video{
    margin-bottom: 20px;
}

.single-post-description h2,
.single-post-description h3,
.single-post-description h4 {
    margin-top: 30px;
    margin-bottom: 20px;

    line-height: 1.3;
}

.single-post-description img {
    max-width: 100%;
    height: auto;

    margin: 20px 0;
}

.single-post-description ul,
.single-post-description ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

.single-post-description li {
    margin-bottom: 10px;
}

.single-post-content iframe
{
	width:100%;
	margin-bottom:20px;
	height:450px;
}

/* SHARE */

.single-post-share {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.share-icons {
    display: flex;
    gap: 12px;
}

.share-icons a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #f1f1f1;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000;

    transition: 0.3s;
}

.share-icons a:hover {
    background: #dd3333;
    color: #fff;
}

/* POST NAVIGATION */

.single-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    margin-bottom: 60px;
}

.post-nav-item {
    border: 1px solid #eee;
    padding: 25px;
}

.post-nav-item span {
    display: block;
    font-size: 14px;
    color: #ec3535;
    margin-bottom: 10px;
}

.post-nav-item h4 {
    font-size: 14px;
    line-height: 24px;
}

.post-nav-item a {
    color: #000;
}

/* AUTHOR */

.single-author-box {
    display: flex;
    gap: 25px;
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 60px;
}

.author-image img {
    width: 75px;
    height: 75px;

    border-radius: 50%;
}

.author-content {
    align-items: center;
    display: flex;
}

.author-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.author-content p {
    color: #666;
    line-height: 1.8;
}

/* COMMENTS */

.single-comments-wrapper {
    margin-bottom: 30px;
}

/* RELATED POSTS */

.related-posts h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.related-post-image {
    margin-bottom: 18px;
}

.related-post-image img {
    width: 100%;
    display: block;
}

.related-post-content h3 {
    font-size: 20px;
    line-height: 1.5;

    margin-bottom: 14px;

    color: #000;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

.related-post-meta {
    display: flex;
    gap: 12px;

    flex-wrap: wrap;

    color: #777;

    font-size: 13px;
}

/* =========================
   SIDEBAR
========================= */

.single-post-sidebar {
    align-self: start;
}

.sidebar-wrapper {
    position: sticky;
    top: 110px;
}

/* AD */

.sidebar-ad {
    margin-bottom: 50px;
}

.sidebar-ad img {
    width: 100%;
    display: block;
}

/* POPULAR */

.sidebar-popular h3 {
    font-size: 35px;
    margin-bottom: 40px;
    padding-bottom: 10px;
    position: relative;
}

.sidebar-popular h3::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #dd3333;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.sidebar-posts {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-posts-grid .news-item a,
.sidebar-posts .news-item a {
    box-shadow: 0px 0px 10px -5px rgb(0 0 0 / 50%);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1200px) {

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 991px) {

    .single-post-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-wrapper {
        position: static;
    }

}

@media(max-width: 767px) {

    .single-post-title {
        font-size: 28px;
        line-height: 38px;
    }

    .single-post-description {
        font-size: 16px;
    }

    .single-post-navigation {
        grid-template-columns: 1fr;
    }

    .single-author-box {
        flex-direction: column;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }


}