﻿        /* Blog liste + sidebar — hero: kurumsal.css */

        /* Blog Section */
        .blog-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
        }

        /* Blog liste kartÄ±: gÃ¶rsel Ã¼stte, yazÄ± altta */
        .blog-section .blog-list-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-section .blog-list-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(14, 116, 144, 0.2);
        }

        .blog-section .blog-list-image {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            aspect-ratio: 16 / 9;
            height: auto;
            flex-shrink: 0;
            overflow: hidden;
            order: 1;
            background: #f1f5f9;
        }

        .blog-section .blog-list-image img {
            display: block;
            width: 100%;
            max-width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .blog-section .blog-list-image img[src*="biogen-farma-su-urunleri-yetistiriciligi-calistayina-katilim-sagladi-kapak"] {
            transform: scale(1.08);
            transform-origin: left center;
        }

        .blog-section .blog-list-content {
            order: 2;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .blog-section .blog-list-content h3 {
            font-size: 1.0625rem;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
            font-size: 0.8125rem;
            color: var(--gray);
        }

        .blog-category {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
        }

        .blog-list-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .blog-list-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-list-content h3 a:hover {
            color: var(--primary);
        }

        .blog-list-content p {
            color: var(--gray);
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 1rem;
            flex: 1;
        }

        .read-more-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .read-more-link:hover {
            color: var(--primary-dark);
        }

        .sidebar-widget {
            background: white;
            border-radius: 16px;
            padding: 1.75rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
        }

        .sidebar-widget h4 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border);
            position: relative;
        }

        .sidebar-widget h4::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            margin-bottom: 0.5rem;
        }

        .category-list li:last-child {
            margin-bottom: 0;
        }

        .category-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            background: var(--light);
            border-radius: 8px;
            color: var(--dark);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .category-list a:hover {
            background: white;
            border-color: var(--primary);
            color: var(--primary);
        }

        .category-list a span {
            background: var(--primary);
            color: white;
            padding: 0.125rem 0.5rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .recent-posts-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .recent-post-item {
            display: flex;
            gap: 1rem;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .recent-post-item:last-child {
            padding-bottom: 0;
            margin-bottom: 0;
            border-bottom: none;
        }

        .recent-post-thumb {
            width: 70px;
            height: 70px;
            min-width: 70px;
            border-radius: 10px;
            overflow: hidden;
        }

        .recent-post-thumb img {
            width: 100%;
            max-width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-post-info h5 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }

        .recent-post-info h5 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .recent-post-info h5 a:hover {
            color: var(--primary);
        }

        .recent-post-info span {
            font-size: 0.75rem;
            color: var(--gray);
        }

        /* Pagination */
        .blog-pagination {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 3rem;
        }

        .page-link-custom {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: white;
            border: 1px solid var(--border);
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .page-link-custom:hover,
        .page-link-custom.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.25rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

        }

        @media (max-width: 767px) {
            .page-hero {
                height: 220px;
            }
            
            .page-hero-content h1 {
                font-size: 1.75rem;
            }
        }
