/* Blog Sayfası CSS */

/* Hero bölümü */
.page-hero-container {
	background: #121857;
	background: radial-gradient(circle, rgba(18, 24, 87, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(18, 24, 87, 1) 100%);
    padding: 4rem 0;
    margin-bottom: 0;
}

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Blog Bölümü */
.blog-section {
    padding: 5rem 0;
    background-color: #f8f9ff;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    flex: 0 0 35%;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    flex: 1;
    padding: 2.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.blog-post-date {
    font-size: 0.85rem;
    color: #777;
}

.blog-post-category {
    font-size: 0.85rem;
    color: #5271ff;
    font-weight: 600;
}

.blog-post-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.3;
}

.blog-post-excerpt p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.blog-post-excerpt p:last-child {
    margin-bottom: 0;
}

/* CTA Bölümü */
.cta-section {
    padding: 5rem 0;
    background-color: #0c1339;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.3) 0%, rgba(12, 19, 57, 0) 70%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.cta-section:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.2) 0%, rgba(12, 19, 57, 0) 70%);
    bottom: -100px;
    right: 10%;
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    background-color: #5271ff;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #4562e6;
    transform: translateY(-3px);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .blog-post {
        flex-direction: column;
    }
    
    .blog-post-image {
        flex: 0 0 auto;
        height: 300px;
    }
    
    .blog-post-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .blog-post-image {
        height: 250px;
    }
    
    .blog-post-content {
        padding: 2rem;
    }
    
    .blog-post-title {
        font-size: 1.4rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}