.article_section_padding {
    padding: 30px 0px;
}

/* breadcrumb */
.breadcrumb {
    padding: 20px 0px;
    background-color: #F7F7F7
}

.breadcrumb_nav {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb_nav li {
    display: flex;
    align-items: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.breadcrumb_nav li a {
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;

}

/*start header */
/* article title */
.article_title_text {
    font-size: 26px;
    line-height: 35px;
    color: #333333;
    font-weight: 700;
}

/* author */
.author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.author_name,
.published_date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author_name span,
.published_date span {
    display: flex;
    align-items: center;
}

.excerpt {
    margin-top: 30px;
    background: rgb(107 173 13 / 9%);
    border-radius: 10px;
    padding: 12px 18px;
}

.excerpt p,
.article_content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #555555;
}

.excerpt p {
    color: #000;
}

/*end header */
/*start article content */
.article_content {
    margin-top: 30px;
}

.article_content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #555555;
}

.article_content p:not(:last-child) {
    margin-bottom: 8px;
}

.article_content img {
    display: block;
    object-fit: cover;
    margin: 12px auto;
}

.article_content a {
    font-size: 14px;
    font-weight: 400;
    color: #005bd3;
    text-decoration: none;
}

.article_content a:hover {
    text-decoration: underline;
}

.article_content a:visited {
    color: #6BAD0D;
}




/*end article content */
/*start article footer */
.article_footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tags {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag {
    padding: 6px;
    background-color: #F7F7F7;
    color: #555;
    font-size: 14px;
    font-weight: 400;
}

.social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

.social_item,
.social_link {
    display: flex;
    align-items: center;
}

/*end article footer */
@media(min-width:724px) {
    .article_section_padding {
        padding: 40px 0px;
    }

    /*start article footer */
    .article_footer {
        flex-direction: row;
        justify-content: space-between;
    }
}
@media(min-width:1200px) {
    .article_section_padding {
        padding: 50px 0px;
    }
}