/* bread crumb  */
.breadcrumb-container .breadcrumb-box .author-box .img-box {
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.breadcrumb-container .breadcrumb-box .author-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.breadcrumb-container .breadcrumb-box .author-box p {
    color: #655f5f;
}

/* tab */
.tab-container .tab-box {
    border-bottom: 1px solid #e8e7e6;
}

.tab-container .tab-box a {
    color: #655f5f;
    display: block;
    text-decoration: none;
    font-weight: 400;
    padding: 16px;
}

.tab-container .tab-box a.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

/* spinner  */
.spinner-container {
    padding-bottom: 100px;
}

.no-data-container {
    padding-bottom: 100px;
}

.no-data-second {
    height: unset;
    padding: unset;
    padding-top: 10px;
}

/* article  */
.article-box {
    max-width: 850px;
    width: 100%;
}
.article-box p {
    line-height: 1.6;
}

.article-box .img-box {
    height: 400px;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}

.article-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.article-box .caption-box {
    background-color: #fdf0e7;
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
}

.article-box .caption-box p {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.article-box .note-box {
    background-color: #fdf0e7;
    border-top: 4px solid var(--primary-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.article-box .note-box p {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 500;
}

.blog-container .blog-box {
    border-top: 1px solid #e8e7e6;
}

/* responsive  */
@media (max-width: 767px) {
    .tab-container .tab-box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 10px;
    }
    .tab-container .tab-box a {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .article-box .img-box {
        height: 300px;
    }
}
