/* 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 .tag-list span {
    background-color: #ffffff;
    border: 1px solid #d8d5d4;
    padding: 6px 12px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.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;
}

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

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