/* ===================================
   BLOG SECTION - MESA MEDIA
   Blog Bölümü Stilleri
   =================================== */

.blog-section {
    position: relative;
    padding: 8rem 5%;
    background: #0a0a0a;
    overflow: hidden;
}

/* Header */
.blog-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.blog-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Unbounded', sans-serif;
}

.blog-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}

.blog-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-title .title-word {
    display: inline-block;
    margin: 0 0.3rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-title .accent {
    background: linear-gradient(135deg, #A71623 0%, #FF6B7A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Filter Tabs */
.blog-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-filter-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-filter-tab.active {
    background: #A71623;
    border-color: #A71623;
    color: #fff;
}

/* Blog Grid */
.blog-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 22, 35, 0.5);
    box-shadow: 0 20px 60px rgba(167, 22, 35, 0.2);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    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.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(167, 22, 35, 0.1) 0%, rgba(0, 97, 239, 0.1) 100%);
}

.placeholder-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #A71623;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #8a1119;
    transform: translateX(5px);
}

.blog-card-content {
    padding: 1.5rem;
}

/* ===== Blog Meta - Üst Kısım (Kategori Sol, Tarih Sağ) ===== */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    padding: 0.4rem 0.8rem;
    background: rgba(167, 22, 35, 0.1);
    border: 1px solid rgba(167, 22, 35, 0.3);
    border-radius: 20px;
    color: #A71623;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: #fff;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #A71623;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Blog Card Footer (Yazar Sol, Okuma Süresi Sağ - BEYAZ) ===== */
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #A71623;
}

.author-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.blog-read-time {
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Load More */
.blog-load-more {
    text-align: center;
    margin-top: 4rem;
}

.blog-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-load-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(167, 22, 35, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.blog-load-more-btn:hover .btn-icon {
    transform: rotate(90deg);
}

/* Background Decoration */
.blog-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.blog-deco-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 20s ease-in-out infinite;
}

.blog-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #A71623, #0061EF);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.blog-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0061EF, #FFA1CC);
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.blog-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FFCE00, #A71623);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-title {
        font-size: 3rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 4%;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }
    
    .blog-filter-tab {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-description {
        font-size: 1rem;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
}
