   /* Navbar stilleri */
        .nav-item {
            position: relative;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .nav-item:hover {
            background-color: #f3f4f6;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 280px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 8px;
            margin-top: 4px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.2s;
            z-index: 50;
        }

        .nav-item:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
        }

        .dropdown-item .icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-right: 12px;
        }

        .mega-menu {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            top: 100%;
            background: white;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            z-index: 50;
            margin-top: 8px;
            width: max-content;
            min-width: 800px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        [x-cloak] { display: none !important; }
        
        /* Smooth scroll ve animasyonlar */
        html {
            scroll-behavior: smooth;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease-out forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo-container {
            padding: 10px;
        }
        
        .site-logo {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        /* Hero section için ek stiller */
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-gradient {
            background: linear-gradient(-45deg, #9e2c34, #7e232a, #2b2b2b, #1a1a1a);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        /* Hero section için yeni stiller */
        .hero-section {
            position: relative;
            height: 85vh;
            padding: 2rem;
            display: flex;
            align-items: center;
            margin-top: 100px;
        }

        .hero-container {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0.2) 40%,
                rgba(0, 0, 0, 0.05) 100%
            );
        }

        .hero-content {
            position: absolute;
            padding: 0 2rem;
            bottom: 2.5rem;
            left: 0;
            width: 100%;
        }

        .hero-title {
            font-size: 3.2rem;
            line-height: 1.08;
            font-weight: 700;
            color: white;
            margin-bottom: 0.25rem;
            letter-spacing: -1px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .hero-subtitle {
            font-size: 3.2rem;
            line-height: 1.08;
            font-weight: 700;
            color: white;
            margin-bottom: 0;
            letter-spacing: -1px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        @media (max-width: 768px) {
            .hero-container {
                border-radius: 16px;
            }

            .hero-title,
            .hero-subtitle {
                font-size: 2rem;
                letter-spacing: -0.5px;
                line-height: 1.12;
            }

            .hero-content {
                bottom: 2.5rem;
                padding: 0 1rem;
            }
        
            .hero-content {
                padding: 0 1.5rem;
                bottom: 1.5rem;
            }

            .hero-section {
                margin-top: 100px;
            }
        }

        /* Header stilini güncelle */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background-color: white;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e7eb;
            z-index: 50;
        }

        /* Header ve logo stilleri güncellendi */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 100px; /* Daha yüksek header */
            background-color: white;
            z-index: 50;
            padding: 0 2rem;
        }

        .header-container {
            max-width: 1400px; /* Daha geniş konteyner */
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .brand-text {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.5px;
            color: #111827;
        }

        .main-nav {
            display: flex;
            gap: 2rem; /* Menü öğeleri arası boşluk artırıldı */
        }

        .nav-item {
            font-size: 1.1rem; /* Daha büyük menü yazıları */
            padding: 0.75rem 1.25rem;
        }

        /* Yeni yayın kartı stilleri devamı */
        .publication-card {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            background: white;
            padding: 2rem;
            border-radius: 24px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .publication-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
        }

        .publication-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .publication-date {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1rem;
        }

        .publication-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: #111;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .publication-summary {
            color: #666;
            line-height: 1.6;
        }

        .publication-image-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .publication-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .publication-card {
                grid-template-columns: 1fr;
            }

            .publication-image-wrapper {
                order: -1;
            }
        }

        .category-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 100px;
            font-size: 0.95rem;
            color: #666;
            background: transparent;
            transition: all 0.2s;
        }

        .category-btn.active {
            background: white;
            color: #111;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        /* Featured post stili */
        .featured-post {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 3rem;
            background: white;
            padding: 2rem;
            border-radius: 24px;
            margin-bottom: 3rem;
            transition: all 0.3s ease;
        }

        .featured-post:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
        }

        .featured-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-image {
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16/9;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Grid post stili */
        .grid-post {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .grid-post:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
        }

        .grid-image {
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .grid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .grid-content {
            padding: 1.5rem;
        }

        @media (max-width: 768px) {
            .featured-post {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Featured posts container */
        .featured-posts {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        /* Ana featured post */
        .featured-post-main {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            height: 480px;
            display: flex;
            flex-direction: column;
        }

        .featured-post-main .featured-image {
            width: 100%;
            height: 65%;
        }

        /* İkincil featured post */
        .featured-post-secondary {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            height: 480px;
            display: flex;
            flex-direction: column;
        }

        .featured-post-secondary .featured-image {
            width: 100%;
            height: 65%;
        }

        /* Ortak stiller */
        .featured-image {
            position: relative;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .post-content {
            padding: 1.5rem;
            height: 35%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .post-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.5rem;
        }

        .post-date {
            color: #666;
            font-size: 0.9rem;
        }

        .post-category {
            padding: 0.25rem 0.75rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }

        .post-category.is-hukuku { background: #FEF3C7; color: #92400E; }
        .post-category.sirketler { background: #DBEAFE; color: #1E40AF; }
        .post-category.guncel { background: #FCE7F3; color: #831843; }

        .post-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .author-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-name {
            font-size: 0.9rem;
            color: #374151;
        }

        @media (max-width: 1024px) {
            .featured-posts {
                grid-template-columns: 1fr;
            }
        }

        /* Yayın kartları için ortak stiller */
        .publications-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        .featured-posts {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .grid-posts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .publication-card {
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 360px; /* Sabit kart yüksekliği */
        }

        .publication-image {
            width: 100%;
            height: 200px; /* Daha küçük görsel alanı */
            overflow: hidden;
            flex-shrink: 0; /* Görsel alanının küçülmesini engelle */
        }

        .publication-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .publication-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .category-tag {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 3px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            background-color: #f3f4f6;
            color: #4b5563;
        }

        .publication-content h2 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .publication-content h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .publication-content p {
            font-size: 0.875rem;
            color: #4b5563;
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }

        .publication-meta {
            padding-top: 0.75rem;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #666;
            margin-top: auto;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .author-image {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .publication-date {
            font-size: 0.85rem;
            color: #666;
            padding-left: 1rem;
            border-left: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .meta-icon {
            color: #9e2c34;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        @media (max-width: 1024px) {
            .publication-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .publication-grid {
                grid-template-columns: 1fr;
            }
        }

        /***** Header (ekibimiz ile aynı) override *****/
        .nav-item{padding:12px 20px;border-radius:8px;transition:all .3s ease;font-weight:400;font-size:15px}
        .nav-item:hover{background:rgba(158,44,52,.1);transform:translateY(-1px)}