h5.card-date {
    color: #00C851;
    font-size: 16px;
    font-family: "Mulish";
}

h5.card-title {
    font-family: Mulish;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24.11px;
    leading-trim: NONE;
    line-height: 32.15px;
    letter-spacing: 0%;
    color: #00194A;
}

.card {
    border: none !important;
}

.card {
    margin-bottom: 22px;
}

.blog-card .card-body {
    padding: 20px 0 0 0px;
}

.blog-row {
    margin-top: 113px !important;
}

img.blogimg {
    width: 100%;
}

.blogimg-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 16px;
}

    .blogimg-container, .blogimg-container > img {
        aspect-ratio: 2/1.25;
        object-fit: cover;
    }

.blogimg-container img.blogimg {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    border-radius: 16px;
}

.blogimg-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #003BAF6B;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 16px;
}

        .blogimg-container .hover-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            opacity: 0;
            transition: opacity 0.3s ease;
            width: 50px;
            height: 50px;
        }

.blogimg-container .hover-icon img {
    border-radius: 50%;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.blogimg-container:hover::before,
.blogimg-container:hover .hover-icon {
    opacity: 1;
}

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 0 12px;
}

.custom-pagination button {
    width: 48px;
    height: 48px;
    border: 2px solid #bbb;
    border-radius: 50%;
    background-color: white;
    color: #444;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.custom-pagination button:hover {
    background-color: #003BAF6B;
    color: white;
    border-color: transparent;
    border-radius: 16px;
}

.custom-pagination button img {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

@media (max-width: 991px) {
    .blog-row {
        margin-top: 80px !important;
    }
}

@media (max-width: 776px) {
    h5.card-title {
        font-size: 18px;
    }
    h5.card-date {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    html,
    body {
        overflow-x: hidden;
    }
    /* Sadece 1-2 ve oklar kalsın, diğer sayfalar gizlensin */
    .custom-pagination button:nth-child(4),
    .custom-pagination button:nth-child(5) {
        display: none;
    }
    .custom-pagination {
        gap: 8px;
        margin-bottom: 40px;
    }
}