.section-blogs-list {
    width: 100%;
    padding: 70px 100px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.blogs-list-title {
    color: var(--Dark-Shade-blue-500, #0B0A33);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -1.44px;
}

.blogs-list-category-title {
    color: var(--Dark-Shade-blue-500);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -1.44px;
}

.blogs-list-header {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.blogs-list-header-title {
    color: var(--Dark-Shade-blue-500);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -1.44px;
}

.blogs-list-header-categories {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.blogs-list-header-categories-title {
    color: var(--Dark-Shade-blue-300);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.blogs-list-header-categories-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blogs-list-header-category {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--bg-color-secondary);
    background: var(--color-white);
    color: var(--Dark-Shade-blue-200);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    width: fit-content;
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s ease;
}

.blogs-list-header-category:hover,
.blogs-list-header-category:focus,
.blogs-list-header-category.is-active {
    border-color: #CFC6FF;
    background: #F4F1FF;
    color: #5335D9;
}

.blogs-list-blogs {
    display: flex;
    width: 100%;
    height: 100%;
    /*width: 1238px;*/
    align-items: flex-start;
    align-content: center;
    justify-content: center;
    gap: 29px 30px;
    flex-wrap: wrap;
}

.blogs-list-blog-item {
    display: flex;
    padding: 5px 5px 24px 5px;
    flex-direction: column;
    align-items: center;
    /*justify-content: space-between;*/
    gap: 20px;
    border-radius: 16px;
    border: 1px solid var(--bg-color-secondary);
    background: var(--color-white);
    transition: all .25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;

    width: 100%;
    max-width: 390px;
    min-width: 0;
    height: 100%;
}

.blogs-list-blog-item:hover {
    transform: translateY(-2px);
    border-color: #D9D4FF;
    box-shadow:
            inset 0 0 0 2px #E7E2FF,
            0 0 0 3px #F4F1FF;
}

.blogs-list-blog-item:hover .blogs-list-blog-title {
    color: #1747E5;
}

.blogs-list-blog-item-image-wrapper {
    width: 100%;
    aspect-ratio: 380 / 210;

    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f7;
}

.blogs-list-blog-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.blogs-list-blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eee, #ddd);
    border-radius: 12px;
}

.blogs-list-blog-main {
    display: flex;
    /*width: 350px;*/
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 16px;
}

.blogs-list-blog-meta {display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;}

.blogs-list-blog-categories {

}

.blogs-list-blog-category {
    color: #5335D9;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #EEEBFB;
}

.blogs-list-blog-date {
    color: var(--Dark-Shade-blue-200);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.blogs-list-blog-title {
    color: var(--Dark-Shade-blue-500);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    min-height: 56px;
}

.blogs-list-blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blogs-list-blog-author-name {
    color: var(--Dark-Shade-blue-200);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

#load-more-button {
    align-self: center;

    display: inline-flex;
    height: 32px;
    padding: 4px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 6px;
    border: 1px solid #06061C;
    background: linear-gradient(180deg, #252459 0%, #0B0A33 100%);
    box-shadow: 0 2px 4px 0 rgba(255, 255, 255, 0.50) inset;

    color: var(--color-white);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 600px) {
    .section-blogs-list {
        padding: 30px 16px;
        gap: 30px;
    }
    .blogs-list-category-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1.28px;
    }
    .blogs-list-title {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -1.28px;
    }
}
