.mainBlog {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: clamp(100px, 30vw, 152px);
    padding: 0 16px;
    box-sizing: border-box;
}

.inMainBlog {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1320px;
    width: 100%;
    flex-direction: column;
    gap: 24px;
}

.titleBlog {
    color: #242424;
    font-family: Muller;
    font-size: clamp(36px, 5vw, 44px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.boxAreaItemsBlog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.boxAreaItemsBlog a {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.cardBlog {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 12px);
    border-radius: clamp(12px, 1vw, 16px);
    background: #242424;
}

.imageBlog {
    height: 202px;
    overflow: hidden;
}

.imageBlog img {
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.titleBlogCard {
    padding: clamp(8px, 1vw, 12px);
    display: flex;
    color: #FFF;
    font-family: Muller;
    font-size: clamp(20px, 2.15vw, 24px);
    font-style: normal;
    font-weight: 500;
    line-height: 125%;

}

.bottomCardBlog {
    display: flex;
    gap: 14px;
}

.viewsBlog,
.dateCardBlog {

    display: flex;
    gap: 6px;
    color: #C2C2C2;
    font-family: Muller;
    font-size: clamp(11px, 0.7vw, 13px);
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    padding: 0 12px 12px 12px;
    box-sizing: border-box;

}




.paginationBox {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.areaPaginataion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.arrowPag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(32px, 3vw, 40px);
    cursor: pointer;
    height: clamp(32px, 3vw, 40px);
    border-radius: 8px;
    border: 1px solid #6A4C93;
    transition: 0.24s;
}

.arrowPag svg {
    width: clamp(16px, 1.3vw, 21px);
    height: clamp(16px, 1.3vw, 21px);
}

.arrowPag:hover {
    background: #6A4C93;
}

.arrowPag:hover svg path {
    fill: #F8F4E9;
}

.paginationPages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.itemPage {
    width: clamp(32px, 3vw, 40px);
    height: clamp(32px, 3vw, 40px);
    color: #242424;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Muller;
    font-size: clamp(14px, 1.3vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.24s;
}

.itemPage:hover {
    background: #6A4C93;
    color: #F8F4E9;
}

@media screen and (max-width: 1130px) {
    .boxAreaItemsBlog {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 660px) {
    .boxAreaItemsBlog {
        grid-template-columns: repeat(1, 1fr);
    }
}