
.article_list_item_container {
    margin: 6px;
    width: calc((100% / 4) - 12px);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    max-width: 400px;
    border-radius: 8px;
    align-self: center;
    background-color: white;
}

.article_list_item_container .cover_image {
    width: 100%;
    height: 200px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.article_list_item_container .cover_image > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.article_list_item_container .tag {
    background-color: transparent;
    color: var(--colorAccent);
    padding: 0;
    margin: 16px 4px 0;
    box-shadow: none;
}

.article_list_item_container .article_item_title {
    font-size: 18px;
    max-height: 48px;
    line-height: 1.3;
    text-shadow: none;
    text-align: center;
    color: #212121;
    overflow: hidden;
    transition: 0.4s ease;
}

.article_list_item_container .article_item_title:hover {
    color: var(--colorAccent);
}

.article_list_item_container .article_item_description {
    font-size: 14px;
    text-shadow: none;
    color: #6a6a6a;
    text-align: center;
    font-weight: normal;
    line-height: 1.4;
    height: calc(1.4 * 14px * 2);
    margin: 4px;
    overflow: hidden;
}

.article_item_title {
    color: #fff;
    margin: 4px;
    font-weight: 600;
    font-size: 22px;
    text-shadow: 0 0 1px rgba(0, 0, 0, .6);
    font-family: "Poppins", sans-serif;
}


.article_container {
    width: 100%;
    max-width: 900px;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
}

.article_image {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
}

.article_title {
    color: #212121;
    margin: 24px 24px 0;
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s ease;
}

.article_category {
    color: var(--colorAccent);
    margin: 24px 24px 0;
    font-size: 14px;
    font-weight: 700;
    align-self: flex-start;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.article_date {
    color: #8b8b8b;
    font-size: 12px;
    margin: 0 24px;
    font-family: 'Poppins', sans-serif;
}

.post-content {
    padding: 8px 24px;
}

.article_main_content img {
    margin: 24px !important;
    width: calc(100% - 48px) !important;
    height: auto !important;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15) !important;
}

.article_main_content h1,
.article_main_content h2,
.article_main_content h3,
.article_main_content h4,
.article_main_content h5,
.article_main_content h6 {
    width: 100%;
    border: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
}

.article_main_content a,
.article_main_content p,
.article_main_content span,
.article_main_content li,
.article_main_content em,
.article_main_content strong {
    border: none !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    line-height: 28px !important;
    color: #212121 !important;
}

.article_main_content strong {
    font-weight: bold;
}

.article_main_content a {
    text-decoration: none !important;
    color: var(--colorAccent) !important;
}

.article_main_content blockquote {
    border-left: 8px solid var(--colorPrimary) !important;
    border-radius: 4px !important;
    float: left !important;
    background-color: #fcfcfc !important;
    margin: 24px 0 !important;
    font-family: 'Overlock', cursive !important;
    font-size: 20px !important;
    color: var(--colorPrimary) !important;
    display: block !important;
    padding: 20px 20px 20px 40px !important;
    position: relative !important;
    line-height: 1.2;
    box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.2) !important;
}

.article_main_content blockquote::before {
    content: "\201C" !important;
    font-family: Georgia, sans-serif;
    font-size: 40px !important;
    font-weight: bold !important;
    color: #999 !important;
    position: absolute !important;
    left: 10px !important;
    top: 5px !important;

}

.article_main_content blockquote::after {
    content: "" !important;
}

.article_main_content blockquote > * {
    margin: 0 !important;
}

.article_main_content ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.article_main_content ul li {
    padding: 8px 0 4px 24px;
    position: relative;
}


.article_main_content ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 18px;
    border-radius: 50%;
    left: 0;
    background-color: var(--colorAccent);
}

.article_main_content ul ul li {
    padding: 4px 0 4px 20px;
    position: relative;
}

.article_main_content ul ul li::before {
    content: "";
    width: 3px;
    border-radius: 0;
    position: absolute;
    top: 8px;
    bottom: 10px;
    left: 0;
    height: auto;
    background-color: var(--colorAccent);
}

.article_tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 16px 0;
}

.article_tags a {
    margin: 4px;
    text-decoration: none;
    padding: 4px 8px;
    background: var(--tag_back_color);
    color: var(--tag_color);
    border-radius: 4px;
    font-size: smaller;
    text-transform: capitalize;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.article_tags a:hover {
    background: lightgrey;
}

.round-center-cropped {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}

.post-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 auto;
    padding: 24px;
}

.author_wrapper {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
}

.author_wrapper * {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.author_wrapper p {
    font-size: 14px !important;
    color: var(--colorAccent);
}

.author_wrapper a {
    font-size: 16px !important;
    color: var(--textColor);
    font-weight: bold;
}

.image_source {
    align-self: flex-end;
    margin: 2px 8px;
}

.image_source, .image_source span, .image_source a {
    font-size: 10px !important;
    color: #bbbbbb !important;
    font-family: "Poppins", sans-serif !important;
}

.image_source a {
    margin-left: 4px !important;
    cursor: pointer !important;
    text-decoration: underline !important;
}

.article_main_content .image_source {
    align-self: center;
    margin: -40px 8px 4px;
}

.gallery_item_container {
    background-color: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    cursor: pointer;
    padding: 4px;
    margin: 8px;
}

.gallery_item_container > span {
    color: #212121;
    font-family: "Montserrat", sans-serif;
    padding: 6px;
    font-weight: bold;
    max-width: 250px;
    align-self: center;
    overflow-wrap: break-word;
    line-height: 1.4;
    text-align: center;
}

.gallery_item_container > img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    height: 250px;
}

.gallery_item_container > iframe {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: none;
}


.album_item_container {
    color: var(--colorPrimary);
    flex: 1 1 auto;
    max-width: 220px;
    min-width: 120px;
    margin: 20px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.4s;
}

.album_item_container:hover {
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.4s;
}

.album_item_container span {
    text-align: center;
    color: var(--colorPrimary);
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

.album_image_container {
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 8px;
}

.album_image_container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.album_image_container img:nth-child(1) {
    z-index: 10;
}

.album_image_container img:nth-child(2) {
    z-index: 8;
    transform: rotate(4deg);
}

.album_image_container img:nth-child(3) {
    z-index: 6;
    transform: rotate(8deg);
}


@media only screen and (max-width: 800px) {

    .article_list_item_container .cover_image {
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
    }

    .article_list_item_container .cover_image > img {
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
    }

    .article_list_item_container {
        width: calc(100% - 12px);
    }
}