/**
 * Minimal CSS - Daha cok kritik stiller index.php icinde inline 
 * Bu dosya sadece non-kritik stiller icin
 */

/* ===== Blog Page Specific ===== */
.blog-hero {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0d14 100%);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: #12121a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 85, 0.3);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #3a3d42;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    color: #6c757d;
    font-size: 0.85rem;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.blog-card-title a:hover {
    color: #d4a855;
}

.blog-card-excerpt {
    color: #a0a3a8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.pagination a,
.pagination span {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 500;
    background: #12121a;
    color: #a0a3a8;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pagination a:hover {
    border-color: #d4a855;
    color: #d4a855;
}

.pagination .active {
    background: #d4a855;
    color: #0a0a0f;
    border-color: #d4a855;
}

/* ===== Blog Detail ===== */
.blog-detail {
    padding: 150px 0 80px;
    background: #0a0a0f;
}

.blog-detail-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: #6c757d;
}

.blog-detail-image {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    color: #a0a3a8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-detail-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 40px 0 20px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 20px 0 20px 30px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

/* ===== Related Posts ===== */
.related-posts {
    padding: 80px 0;
    background: #0d0d14;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Social Share ===== */
.social-share {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
}

.social-share a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #12121a;
    color: #a0a3a8;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-share a:hover {
    background: #d4a855;
    color: #0a0a0f;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .blog-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .blog-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-title {
        font-size: 1.8rem;
    }
}