:root {
    --grey-color: #696969;
}

.blog .card {
    border-radius: 0;
    border: none;
}


.blog .card-img-top {
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 0;
}
.blog .card-img-top.tier-1 {
    background: var(--tier-blue);
    position: relative;
}
.blog .card-img-top .placeholder-img {
    width: 70px;
    height: auto;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}
.blog .heading_article .card-img-top {
    height: auto;
    border-radius: 0;
}
.blog .card-title,
.post .post_title {
    font-size: 40px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 40px;
    letter-spacing: 5%;
    color: var(--color);
}
.blog .heading_article .card-title {
    font-size: 25px;
}
.blog .card-subtitle {
    font-size: 11px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    color: var(--grey-color);
    margin-bottom: 0.2rem;
}
.blog .heading_article .card-subtitle {
    font-size: 15px;
}
.blog .card-text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--grey-color);
}
.blog .heading_article .card-text {
    font-size: 22px;
}
.blog .card-date,
.post .post_date {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 100%;
    letter-spacing: normal;
    color: var(--color);
    margin-top: 0;
    margin-bottom: 0.9rem;
}
.blog .card-date .dot:after,
.post .post_date .dot:after {
    font-size: 12px;
    padding-inline: 3px;
}
.blog .heading_article .card-date {
    font-size: 15px;
    margin-top: 1rem;
    margin-bottom: 1.15rem;
}
.blog .card-date .calendar-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}
.blog .heading_article .card-date .calendar-icon {
    width: 18px;
    height: 18px;
}

.read_more {
    width: 100%;
    height: 54px;
    border-radius: 6px;
    background-color: var(--color);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.read_more:hover {
    color: #fff;
}
.heading_article .read_more {
    width: fit-content;
    padding-left: 4rem;
    padding-right: 4rem;
}

.post .img-fluid {
    aspect-ratio: 9 / 16;
    object-fit: cover;
}
.post .img-fluid.tier-1 {
    background: var(--tier-blue);
    position: relative;
}
.post .img-fluid.tier-1 .placeholder-img {
    width: 70px;
    height: auto;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}
.post .post_category {
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: normal;
    color: var(--grey-color);
}

.post .post_content,
.post .post_content *,
.post .social-text {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 16px;
    letter-spacing: normal;
    color: var(--color);
}
.post .post_content,
.post .post_content * {
    text-transform: none;
}

.post .post_date .calendar-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

@media (min-width: 970px) and (max-width: 1199px) {
    .blog .col-lg-5 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
}

@media (min-width: 750px) and (max-width: 1199px) {
    .post .post-row .col-md-5 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .post .post-row .col-md-11 {
        flex: 0 0 66.66666%;
        max-width: 66.66666%;
    }
}
@media (max-width: 1199px) {
    .more-posts div:nth-child(4) {
        display: none;
    }
}
@media (max-width: 969px) {
    .more-posts div:nth-child(3) {
        display: none;
    }
}
@media (max-width: 575px) {
    .blog .card-title,
    .post .post_title {
        font-size: 24px;
        line-height: 24px;
    }
}