﻿/* Blog Kart Tasarımı */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-lang-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    backdrop-filter: blur(5px);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

    .blog-title a {
        color: #2d3436;
        text-decoration: none;
        transition: color 0.2s;
    }

        .blog-title a:hover {
            color: #0984e3;
        }

.blog-description {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    margin-top: auto;
    font-weight: 600;
    color: #0984e3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .blog-read-more i {
        transition: transform 0.2s;
    }

    .blog-read-more:hover i {
        transform: translateX(5px);
    }

/* Arama Çubuğu İyileştirmesi */
.search-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.search-input {
    border: none !important;
    padding-left: 25px !important;
    box-shadow: none !important;
}

.btn-search {
    border-radius: 50px !important;
    padding: 10px 25px !important;
    background: #0984e3;
    color: white;
}
/* Blog Hero Alanı */
.blog-hero-section {
    position: relative;
    background-color: #050a10; /* Ürün sayfasındaki o derin siyah/lacivert */
    padding: 100px 0 140px 0;
    overflow: hidden;
    color: #ffffff;
}

/* Ürün sayfasındaki o kareli/grid desenli arka plan */
.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Badge (Ürün sayfasındaki mavi küçük etiket gibi) */
.hero-badge {
    background: rgba(9, 132, 227, 0.1);
    border: 1px solid rgba(9, 132, 227, 0.3);
    color: #0984e3;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Başlık ve Degrade Efekti */
.blog-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-main-subtitle {
    font-size: 1.2rem;
    color: #b2bec3;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb Modernizasyonu */
.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
}

    .custom-breadcrumb .breadcrumb-item a {
        color: #0984e3;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .custom-breadcrumb .breadcrumb-item.active {
        color: #636e72;
    }

/* Arama Çubuğunu Yukarı Taşıma (Opsiyonel) */
.search-wrapper {
    margin-top: -45px; /* Hero alanının üzerine binsin */
    position: relative;
    z-index: 10;
}