/* ========================================
   BLOG HERO SLIDER SECTION (Manşet)
======================================== */
.hero-slider-wrapper {
    position: relative;
    margin: 0 0 40px 0;
}

.hero-slider-section {
    position: relative;
}

.hero-slider-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 500px;
    background: #f1f5fa;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Content Animations */
.hero-slide .blog-featured__img {
    transform: scale(1.15);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .blog-featured__img {
    transform: scale(1);
}

.hero-slide .blog-featured__title,
.hero-slide .hashtag {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active .blog-featured__title {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hashtag {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.blog-featured__cover {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-featured__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.blog-featured__cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(27, 36, 78, 0.9) 0%, rgba(27, 36, 78, 0.4) 60%, rgba(27, 36, 78, 0.1) 100%);
    z-index: 1;
}

.blog-featured__cnt {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 5;
}

.blog-featured__status {
    background: #fff;
    color: #1b244e;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-featured__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: #fff;
}


.blog-featured__title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 800px;
}

.hashtag {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.hashtag__item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1b244e;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: #1b244e;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

/* Responsive Hero Slider */
@media (max-width: 992px) {
    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 380px;
        border-radius: 12px;
    }

    .hero-slide {
        height: 380px;
    }

    .blog-featured__cover::after {
        background: linear-gradient(0deg, rgba(27, 36, 78, 0.95) 0%, rgba(27, 36, 78, 0.5) 50%, rgba(27, 36, 78, 0.2) 100%);
    }

    .blog-featured__link {
        padding: 30px 20px;
        justify-content: flex-end;
    }

    .blog-featured__title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-featured__cnt {
        top: 15px;
        right: 15px;
    }

    .blog-featured__status {
        padding: 4px 10px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Hashtag mobilde gizle - daha temiz görünüm */
    .hashtag {
        display: none;
    }

    /* Navigation butonları - daha büyük ve touch-friendly */
    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .slider-nav.prev {
        left: 12px;
    }

    .slider-nav.next {
        right: 12px;
    }

    /* Dots - daha modern ve görünür */
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .slider-dot.active {
        background: #fff;
        width: 24px;
        border-radius: 4px;
    }

    /* Slider wrapper mobilde margin azalt */
    .hero-slider-wrapper {
        margin-bottom: 30px !important;
    }
}

/* ========================================
   BLOG CARD GRID SECTION
======================================== */
.card-grid-section {
    margin: 0 0 50px 0;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: #f1f5fa;
    position: relative;
    overflow: hidden;
}

.blog-card-badge {
    display: inline-block;
    background: rgba(45, 53, 97, 0.05);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(45, 53, 97, 0.1);
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.blog-card-content {
    padding: 16px 20px 20px 20px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-card-link:hover {
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGINATION SECTION
======================================== */
.pagination-section {
    margin: 50px 0 0 0;
    display: flex;
    justify-content: center;
}

.blog-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}

.page-item {
    display: flex;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: var(--text-body);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 76, 157, 0.3);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(76, 76, 157, 0.3);
}

.page-item.disabled .page-link {
    background: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background: #f8fafc;
    color: #cbd5e1;
    border-color: #e2e8f0;
}

.page-arrow {
    min-width: 48px;
    padding: 0;
}

@media (max-width: 768px) {
    .blog-pagination {
        gap: 4px;
    }

    .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 0.85rem;
    }

    .page-arrow {
        min-width: 40px;
    }
}