.blog-hero {
    padding: 60px 0;
    background: #1c1d1f;
    border-bottom: 2px solid var(--primary-color);
    color: white;
    text-align: center;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.blog-hero p {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 60px 0;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: var(--primary-color);
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-meta i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #0f172a;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9375rem;
}

.read-more i {
    transition: transform 0.3s;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* Blog Single View */
.post-header {
    background: #1c1d1f;
    padding: 60px 0;
    text-align: center;
    color: white;
    border-bottom: 2px solid var(--primary-color);
}

.post-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    color: white;
}

.post-meta-large {
    display: flex;
    justify-content: center;
    gap: 3rem;
    color: #94a3b8;
    font-weight: 500;
}

.post-meta-large i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.post-featured-image {
    max-width: 850px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
    /* Sabit yükseklik veya limit eklendi */
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-content-wrap {
    max-width: 800px;
    margin: 0 auto 100px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
}

.post-content {
    font-family: inherit;
}

.post-content h2,
.post-content h3 {
    color: #0f172a;
    margin: 3rem 0 1.5rem;
}

.post-content blockquote {
    border-left: 5px solid var(--primary-color);
    padding: 20px 30px;
    background: #f8fafc;
    font-style: italic;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .post-title {
        font-size: 2.5rem;
    }

    .post-meta-large {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .post-featured-image {
        height: 250px;
        margin: 20px 15px;
        border-radius: 12px;
    }
}