
.blog {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.blog .tags-area{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.blog .tags-area .tag{
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid #DFDFDF;
    color: #222422;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    transition: background 0.7s, color 0.7s, border 0.7s;
    cursor: pointer;
}
.blog .tags-area .tag:hover{
    background: #007444;
    border: 1px solid transparent;
    color: #FFF;
}
.blog .tags-area .tag.active{
    background: #007444;
    border: 1px solid transparent;
    color: #FFF;
}
@media (max-width: 767px) {
    .blog .tags-area {
        gap: 8px;
        flex-wrap: unset;
        overflow: scroll;
        width: 100%;
        overflow-y: hidden;
         scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        }

        .blog .tags-area::-webkit-scrollbar {
            display: none;
        }
    
        .blog .tags-area .tag {
            flex-shrink: 0;
            font-size: 16px;
        }
}


.blog .news-events-items {
    display: flex;
    gap: 24px;
    /* justify-content: center; */
    flex-wrap: wrap;
}
.blog .news-events-items .item {
    display: flex;
    width: 100%;
    max-width: calc(33% - 12px);
    padding-bottom: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    background: #F0F0F0;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.blog .news-events-items .item .img-area {
    position: relative;
    width: 100%;
    height: 262px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.blog .news-events-items .item .img-area img {
    width: 100%;
    height: 100%;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
}

.blog .news-events-items .item .cat-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    gap: 10px;
    position: absolute;
    top: 16px;
    left: 16px;
}
.blog .news-events-items .item .cat-area {
   
    display: inline-flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #222422;
    font-size: 10px;
    font-weight: 500;
    line-height: 100%;
    border-radius: 100px;
    background: #FFF;
    transition: background 0.7s, color 0.7s;
}
.blog .news-events-items .item .cat-area:hover {
    background: #007444;
    color: #FFF;
}

.blog .news-events-items .item .text-area {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    gap: 12px;
}

.blog .news-events-items .item .text-area .date-area {
    color: #B3B3B3;
    font-size: 14px;
    font-weight: 500;
}

.blog .news-events-items .item .text-area .title-item {
    color: #222422;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}

.blog .news-events-items .item .text-area .text {
    color: #222422;
    font-size: 14px;
    line-height: 140%;
}

.blog .news-events-items .item .text-area .more {
    margin-top: 5px;
    color: #007444;
    font-size: 14px;
    font-weight: 600;
    line-height: 140%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    transition: 0.7s;
}
.blog .news-events-items .item .text-area .more:hover {
 
    color: #222422;
}

.blog .more-button {
    display: none;
}
.blog .news-events-items .item .text-area .more::after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.92712 5.07312L7.84334 6.99478L9.75956 8.91644L5.92712 12.7598' stroke='%23007444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media (max-width: 1252px) {
    .blog .news-events-items .item {
        max-width: calc(50% - 12px);
    }
}
@media (max-width: 630px) {
    .blog .news-events-items .item {
        max-width: 100%;
    }
}
@media (max-width: 555px) {
    .blog .more-button {
        display: flex;
        width: 100%;
        color: #222422;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 110%;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}


.blog .pagination-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.blog .pagination-area .pagination{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #B3B3B3;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
}
.blog .pagination-area .pagination .page{
    cursor: pointer;
}
.blog .pagination-area .pagination .page.active,
.blog .pagination-area .pagination .page:hover{ 
    color: #007444;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.blog .pagination-area .pagination .arrow {
    cursor: pointer;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M6.75101 4.49998L8.90675 6.66185L11.0625 8.82372L6.75101 13.1475' stroke='%23222422' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}
.blog .pagination-area .pagination .arrow.left {
    transform: rotate(180deg);
}
.blog .pagination-area .pagination .arrow:hover,
.blog .pagination-area .pagination .arrow.no-page {
    opacity: 0.3;
}
.blog .pagination-area .to-up {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #007444;
    font-size: 16px;
    font-weight: 600;
    line-height: 110%;
    margin-left: auto;
}
.blog .pagination-area .to-up .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007444;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M5.86914 8.90233L10.9275 3.84399L15.9858 8.90233' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.9277 18.0106V3.9856' stroke='white' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 21px 21px;
}


@media (max-width: 555px) {
    .blog .pagination-area {
        display: none;
    }
}
















