       .blog-main-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
           background-color:white;
        }
/* =========================
   Blog Hero – Modern Corporate 2025
   ========================= */

.blog-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 63px;
    padding: 35px;
    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #003b66 0%,
        #002a4a 100%
    );

    display: flex;
    flex-direction: column;
    gap: 18px;
    isolation: isolate;
}
/* Ana derinlik katmanı */
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            600px 400px at 85% 25%,
            rgba(0, 156, 166, 0.22),
            transparent 70%
        ),
        radial-gradient(
            500px 300px at 15% 85%,
            rgba(255, 255, 255, 0.06),
            transparent 65%
        );
}
/* İnce cam vurgusu */
.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        transparent 40%
    );

    pointer-events: none;
}
/* Başlık */
.blog-hero-title {
    max-width: 680px;
    font-size: clamp(2.1rem, 2.8vw, 2.7rem);
    line-height: 1.18;
    letter-spacing: -0.018em;
    color: #ffffff;
}
/* Açıklama */
.blog-hero-description {
    max-width: 720px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}
/* Arama alanı */
.blog-search-section {
    max-width: 600px;
    margin-top: 10px;
}
/* Arama kutusu */
.blog-search-box {
    position: relative;
}
/* Input – modern yüzey */
.blog-search-field {
    width: 100%;
    height: 54px;
    padding: 0 64px 0 22px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    box-shadow:
        0 10px 24px rgba(2, 32, 56, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.blog-search-field::placeholder {
    color: #94a3b8;
    font-weight: 500;
}
.blog-search-field:focus {
    outline: none;
    border-color: rgba(0, 156, 166, 0.6);
    box-shadow:
        0 14px 32px rgba(0, 156, 166, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
/* İkon – floating hissi */
.blog-search-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
/* =========================
   Blog Content – Modern Grid
   ========================= */
/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;

    animation: blog-grid-appear 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes blog-grid-appear {
    from {
        opacity: 0;
        transform: translateY(24px);
    }    to {
        opacity: 1;
        transform: translateY(0);
    }}
/* =========================
   Blog Card – Modern UI
   ========================= */

/* =========================
   Blog Card – Final Enterprise
   ========================= */

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;

    background: linear-gradient(
        to bottom,
        var(--background-alt),
        var(--background-soft)
    );

    border-radius: 20px;
    overflow: hidden;
    color: inherit;

    border: 1px solid var(--border-color);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}
/* Modern, kurumsal glow border */
.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--primary-color)
    );

    opacity: 0;
    pointer-events: none;

    transition: opacity var(--transition-normal);

    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    padding: 1px;
}
/* Hover – kontrollü yükselme */
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-card:hover::before {
    opacity: 0.9;
}
/* =========================
   Image
   ========================= */

.blog-card-image-wrapper {
    position: relative;
    height: 210px;
    background: var(--background-soft);
    overflow: hidden;
}
.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.01);
    transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image {
    transform: scale(1.08);
}
/* Overlay – minimal ve kurumsal */
.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 48, 87, 0.4)
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.blog-card:hover .blog-card-overlay {
    opacity: 1;
}
/* =========================
   Body
   ========================= */

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    flex: 1;
}
/* Title */
.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: var(--text-dark);

    transition: color var(--transition-fast);
}
.blog-card:hover .blog-card-title {
    color: var(--secondary-color);
}
/* Excerpt */
.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-color);
    flex: 1;
}
/* =========================
   Footer
   ========================= */

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 10px;
    padding-top: 12px;

    border-top: 1px solid var(--border-color);
}
.blog-card-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}
.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
}
.blog-card-arrow {
    transition: transform var(--transition-fast);
}
.blog-card:hover .blog-card-arrow {
    transform: translateX(3px);
}
/* =========================
   Blog Pagination – Modern UI
   ========================= */

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding: 14px 18px;
    border-radius: 20px;
    background: linear-gradient(
        to bottom,
        var(--background-alt),
        var(--background-soft)
    );
    box-shadow: var(--shadow-sm);
}
/* Genel buton */
.blog-pagination-button {
    position: relative;
    min-width: 48px;
    height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    background-color: var(--background-alt);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        background-color var(--transition-normal),
        border-color var(--transition-normal),
        color var(--transition-normal);
}
/* Hover – soft yükselme */
.blog-pagination-button:hover:not(:disabled):not(.blog-pagination-active) {
    transform: translateY(-2px);
    background-color: var(--background-soft);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}
/* Aktif sayfa */
.blog-pagination-active {
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        #00b8c2
    );
    color: var(--background-alt);
    border-color: transparent;

    box-shadow:
        0 10px 28px rgba(0, 156, 166, 0.35);
}
/* Aktif buton hover olmasın */
.blog-pagination-active:hover {
    transform: none;
}
/* Disabled */
.blog-pagination-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}
/* Ok butonları (Prev / Next) */
#btnPrev,
#btnNext {
    font-size: 1.05rem;
    padding: 0 16px;
}        /* Empty State */
        .blog-empty {
            text-align: center;
            padding: 20px;
            background-color: var(--background-alt);
            border-radius: 36px;
            box-shadow: var(--shadow-sm);
            animation: blog-fade-in 0.8s ease-out;
        }
        .blog-empty-icon {
            width: 65px;
            height: 65px;
            margin: 0 auto 40px;
            background: linear-gradient(135deg, rgba(0, 156, 166, 0.12) 0%, rgba(0, 156, 166, 0.06) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
        }
        .blog-empty-title {
            color: var(--text-dark);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .blog-empty-text {
            color: var(--text-color);
            font-size: 1rem;
            line-height: 1.75;
            max-width: 520px;
            margin: 0 auto;
        }
        /* Loading State */
        .blog-loading {
            text-align: center;
            padding: 130px 40px;
        }
        .blog-loading-spinner {
            width: 75px;
            height: 75px;
            border: 6px solid var(--background-soft);
            border-top-color: var(--secondary-color);
            border-radius: 50%;
            animation: blog-spin 0.75s linear infinite;
            margin: 0 auto 40px;
        }
        @keyframes blog-spin {
            to { transform: rotate(360deg); }        }
        .blog-loading-text {
            font-size: 1.2rem;
            color: var(--text-color);
            font-weight: 600;
        }
        /* Responsive Design */
/* =========================
   ≤ 1024px
   ========================= */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }}
/* =========================
   ≤ 968px
   ========================= */
@media (max-width: 968px) {

    .blog-hero-title {
        font-size: clamp(2.4rem, 3.8vw, 3rem);
    }
    .blog-hero-description {
        font-size: 1.1rem;
    }
    .blog-grid {
        gap: 28px;
    }}
/* =========================
   ≤ 768px (Tablet / Mobile)
   ========================= */
@media (max-width: 768px) {

    .blog-hero-title {
        font-size: 2.4rem;
    }
    .blog-hero-description {
        font-size: 1.05rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .blog-card-title {
        font-size: 1.3rem;
    }
    .blog-content {
        margin-top: 56px;
    }
    .blog-pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    .blog-pagination-button {
        min-width: 46px;
        height: 46px;
    }}
/* =========================
   ≤ 640px (Mobile)
   ========================= */
@media (max-width: 640px) {

    .blog-hero-title {
        font-size: 2.1rem;
    }
    .blog-hero-description {
        font-size: 1rem;
    }
    .blog-search-field {
        height: 52px;
        padding: 0 56px 0 20px;
        font-size: 0.95rem;
    }
    .blog-card-body {
        padding: 22px;
    }
    .blog-card-image-wrapper {
        height: 200px;
    }
    .blog-card-title {
        font-size: 1.25rem;
    }}