/* Blog Bölümü Stilleri */
.blog-section {
    padding: 100px 0 150px;
    background-color: var(--light-bg);
    position: relative;
    width: 100%;
}

/* Blog Başlık Alanı - Sola hizalı */
.blog-header {
    text-align: left;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-header h2 span {
    color: var(--red);
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Blog Wrapper - Ana Düzen */
.blog-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

/* Sol Taraf - Blog Tanıtım */
.blog-intro {
    flex: 0 0 35%; /* Daha dar bir alan */
    position: relative;
}

.blog-description {
    position: relative;
    padding-right: 20px;
}

.blog-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--red);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: #c50000;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Sol Alt Köşe SVG Şekil - Ekrandan tamamen taşan */
.blog-bottom-shape {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
}

.blog-bottom-shape svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Sağ Üst Köşe SVG Şekil - Ekrandan tamamen taşan */
.blog-top-shape {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    z-index: 1;
    pointer-events: none;
}

.blog-top-shape svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* SVG Üzerindeki Görseller - Genel Stiller */
.blog-shape-image {
    position: absolute;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Sağ Üst Köşe Görseli */
.blog-top-shape .blog-shape-image {
    top: 30%;
    right: 30%;
    width: 55%;
    animation: floatAnimation1 15s infinite ease-in-out;
    transform: rotate(15deg);
}

/* Sol Alt Köşe Görseli */
.blog-bottom-shape .blog-shape-image {
    bottom: 30%;
    left: 30%;
    width: 55%;
    animation: floatAnimation2 15s infinite ease-in-out;
    transform: rotate(-10deg);
}

/* Sağ Taraf - Blog Kartları */
.blog-cards-container {
    flex: 0 0 60%; /* Daha geniş bir alan */
    position: relative;
    z-index: 3;
}

/* Blog Kartları */
.blog-cards {
    display: flex;
    flex-direction: row;
    gap: 30px;
    position: relative;
}

.blog-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background-color: var(--red);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--red);
}

.blog-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-date {
    display: block;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: auto;
}

/* Animasyonlar */
@keyframes floatAnimation1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(15px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(5px) translateX(20px) rotate(-1deg);
    }
    75% {
        transform: translateY(10px) translateX(5px) rotate(1deg);
    }
}

@keyframes floatAnimation2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) translateX(15px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) translateX(5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) translateX(10px) rotate(2deg);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .blog-wrapper {
        flex-direction: column;
    }
    
    .blog-intro, .blog-cards-container {
        flex: 0 0 100%;
    }
    
    .blog-cards {
        flex-direction: column;
    }
    
    .blog-top-shape {
        top: -100px;
        right: -40px;
        width: 280px;
        height: 280px;
    }
    
    .blog-bottom-shape {
        bottom: -100px;
        left: -40px;
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .blog-header h2 {
        font-size: 2.8rem;
    }
    
    .blog-cards {
        gap: 20px;
    }
    
    .blog-card h3 {
        font-size: 1.2rem;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blog-header h2 {
        font-size: 2.2rem;
    }
    
    .blog-card-image {
        height: 160px;
    }
}