
.blog-page.container-sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.blog-page__post-item {
    max-width: 50%;
    padding: 0 1rem;
    width: 486px;
}
.blog-page-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 0;
    width: 1032px;
    margin: 0 auto;
    max-width: 100%;
}
.blog-page__post-item {
    max-width: 50%;
    padding: 0 1rem;
}
.blog-page__item__body {
    overflow: hidden;
    position: relative;
    display: flex;
}
.blog-page__item__thumbail {
    display: inline-flex;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
}
.blog-page__item__thumbail::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(93,81,226, 0.25);
}
.blog-page__item__thumbail img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}
.blog-page__item__meta {
    position: absolute;
    top: 33px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 0.875rem;
}
.blog-page__item__content__text {
    color: var(--white);
    transition: color 0.2s ease-in-out 0s;
    cursor: pointer;
    padding: 1.875rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.blog-page__item__content__text:hover {
    color: var(--violet_french);
}
.blog-page__item__content__link {
    position: absolute;
    inset: 0;
}
.blog-page__item__title {
    font-size: 1.625rem;
}
.blog-page__item__description {
    display: none;
}
.blog-page-posts-loader:not(.visible) {
    opacity: 0;
}
.blog-page-posts-loader.visible {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.25rem;
}
.blog-page-posts-loader .dot {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--black_rock);
    border-radius: 50%;
    transform: scale(0.7);
    opacity: 0.3;
    animation: loader_dot 1s linear infinite;
}
.blog-page-posts-loader .dot:nth-child(2) {
    animation-delay: 0.1s;
}
.blog-page-posts-loader .dot:nth-child(3) {
    animation-delay: 0.2s;
}
@keyframes loader_dot {
    0% { opacity: 0.3; transform: scale(0.7);} 50%{ opacity: 1; transform: scale(1.2);} 100%{ opacity: 0.3; transform: scale(0.7);}
}
@media screen and ( max-width: 991px ) {
    .blog-page__item__content__text {
        padding: 1.25rem;
    }
    .blog-page__item__title {
        font-size: 1.375rem;
    }
}
@media screen and ( max-width: 767px ) {
    .blog-page__post-item {
        max-width: 100%;
        margin: 0 auto;
    }
    .blog-page__item__body {
        flex-wrap: wrap;
    }
    .blog-page__item__thumbail {
        position: relative;
        margin-bottom: 2.375rem;
    }
    .blog-page__item__thumbail::after {
        visibility: hidden;
    }
    .blog-page__item__content {
        border-bottom: 1px solid rgba(50,51,51,0.2);
        padding-bottom: 1.5rem;
    }
    .blog-page__item__meta {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        color: var(--black_rock);
        margin-bottom: 1.375rem;
    }
    .blog-page__item__content__text {
        position: relative;
        color: var(--black_rock);
        padding: 0;
    }
    .blog-page__item__title {
        margin-bottom: 0.625rem;
    }
    .blog-page__item__description {
        display: block;
        font-size: 1.125rem;
    }
}
@media screen and ( max-width: 450px ) {
    .blog-page__post-item {
        padding: 0;
        margin: 0 -30px;
        max-width: 100vw;
    }
    .blog-page__item__content {
        padding: 0 1.875rem 1.5rem;
        border-bottom: 1px solid rgba(50,51,51,0.2);
    }
}