/* Blog Detay Sayfası */
.blog-detail {
    padding: 30px 20px;
    background-color: #ffffff;
}
  
.blog-detail .container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 10px 80px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
  
.blog-detail h1 {
    font-family: 'Great Vibes';
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ffcc00;
}
  
.blog-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}
  
.blog-detail p {
    font-family: 'Great Vibes';
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Başlık stilini eşleştir */
.alt-baslik {
    font-family: 'Great Vibes';
    font-size: 32px;
    color: #001F54;
    text-align: center;
    margin: 40px 0 20px;
}

/* Diğer Bloglar (Ürün stilinde) */
.diger-urunler {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 20px 60px;
    background-color: #f9f9f9;
}

.diger-urun {
    width: 220px;
    text-align: center;
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diger-urun:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.diger-urun img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.diger-urun span {
    display: block;
    padding: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    font-family: 'Great Vibes';
}

/* Mobil uyumluluk */
@media (max-width: 600px) {
    .blog-detail h1 {
        font-size: 1.8rem;
    }

    .blog-detail .container {
        padding: 10px 20px;
    }

    .diger-urun {
        width: 80%;
    }
}
