/* .news_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
} */
.news_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 26px;
    margin-top: 30px;
    align-items: stretch;
}

.news_card {
    /* background: #FFFFFF; */
    border: 1px solid #ededed;
    /* display: flex;
            flex-direction: column; */
 min-height: 300px; /* istədiyiniz minimum hündürlük */
    max-height: 433px; 
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
    /* max-width: 358px; */
    padding: 18px;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.news_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.news_content h3 {
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;

    color: #161130;
    ;
}

.news_date {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #231D537C;

    margin-bottom: 12px;
}

.news_snippet {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #5F5E6C;
    margin-bottom: 35px 20px;
}

.news_content .fa-arrow-right {
    color: #240E4A;
    font-size: 16px;
    display: flex;
    align-items: end;
    justify-content: end;

}

#last_news {
    padding: 70px 0;
}

#last_news .title {
    font-family: 'Clash', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 16px;
    text-align: center;
    margin-bottom: 50px;
    color: #161130;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background: #FFFFFF;
    border: 1px solid #F1F1F1;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-item:hover {
    background: #F8F9FA;
    border-color: #1347F5;
    /* color: #240E4A; */
    text-decoration: none;
}

.pagination-item.active {
    /* background: #240E4A; */
    background: #1347F5;

    border-color: #1347F5;
    color: #FFFFFF;
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-item i {
    font-size: 12px;
}

.pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #999999;
    font-weight: bold;
}

.news_card .arrow_button {
    display: flex;
    align-items: end;
    justify-content: end;
}

@media (max-width: 768px) {
    .pagination {
        gap: 4px;
    }

    .pagination-item {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}