.pagination-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}

.pagination-btn {
    background: #333;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(:disabled) {
    background: #555;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-info {
    color: #666;
    font-weight: 500;
    padding: 0 20px;
}

.news-item {
    display: none;
}

.news-item.active {
    display: block;
}

/* Kart tasarımı güncellemesi */
.blog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.blog-card__img {
    overflow: hidden;
    position: relative;
}

.blog-card__img img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 45px;
    padding: 30px;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.02);
}

.blog-card__heading {
    padding: 20px 20px 10px;
    min-height: 80px;
    display: flex;
    align-items: flex-start;
}

.blog-card__heading a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    display: block;
    margin: 0;
}

.blog-card__heading a:hover {
    color: #007bff;
}

.blog-card .text-primary {
    color: #007bff !important;
    font-size: 13px;
    font-weight: 500;
    padding: 0 20px;
    margin-bottom: 15px;
    display: block;
}

.blog-card__btn {
    padding: 0 20px 20px;
}

.blog-card__btn button {
    background: #000000;
    color: white;
    border: none;
    padding: 12px 34px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card__btn button:hover {
    background: #555;
    transform: translateY(-1px);
}

.blog-card__btn a {
    text-decoration: none;
}