/*
Theme Name: Wordpress Fiesta Sohbet Temasi
Theme URI: https://www.sohbettema.com/fiesta
Author: HizliShell internet Hizmetleri
Author URI: https://www.hizlishell.com
Description: Wordpress Fiesta Sohbet Temasi
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blue
*/
        /* HIZLISHELL INTERNET HIZMETLERI */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        :root {
            --primary: #FF6B6B;
            --secondary: #4ECDC4;
            --accent: #FFBE0B;
            --light: #F7F9FC;
            --dark: #2B2D42;
            --navbar-height: 80px;
        }
        
        body {
            background: linear-gradient(135deg, #FF9AA2, #b38aee, #FFDAC1, #E2F0CB, #B5EAD7);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            min-height: 100vh;
            padding: 20px;
            padding-top: calc(var(--navbar-height) + 20px);
        }
        
        /* NAVBAR STİLLERİ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--navbar-height);
            background: linear-gradient(135deg, #ff6b6b 0%, #ffbe0b 100%);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .navbar.scrolled {
            height: 70px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .logo-nav {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-icon-nav {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            animation: pulse 2s infinite;
        }
        
        .logo-icon-nav i {
            font-size: 24px;
            color: white;
        }
        
        .logo-text-nav {
            font-size: 28px;
            font-weight: 800;
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 600;
            font-size: 20px;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            border-radius: 10px;
            transition: width 0.4s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .btn-login, .btn-signup {
            padding: 10px 22px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-login {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-login:hover {
            background: rgba(255, 107, 107, 0.1);
            transform: translateY(-3px);
        }
        
        .btn-signup {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }
        
        .btn-signup:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            width: 35px;
            height: 30px;
            position: relative;
            z-index: 1001;
        }
        
        .hamburger span {
            display: block;
            position: absolute;
            height: 4px;
            width: 100%;
            background: var(--primary);
            border-radius: 4px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.4s ease;
        }
        
        .hamburger span:nth-child(1) {
            top: 0px;
        }
        
        .hamburger span:nth-child(2) {
            top: 13px;
        }
        
        .hamburger span:nth-child(3) {
            top: 26px;
        }
        
        .hamburger.active span:nth-child(1) {
            top: 13px;
            transform: rotate(135deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .hamburger.active span:nth-child(3) {
            top: 13px;
            transform: rotate(-135deg);
        }
        
        /* ANA İÇERİK STİLLERİ */
        .header-container {
            width: 100%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            margin: 0 auto;
        }
        
        .chat-header {
            display: flex;
            min-height: 550px;
            position: relative;
            overflow: hidden;
        }
        
        /* SOL TARAF - GİRİŞ ALANI */
        .login-section {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            animation: pulse 2s infinite;
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
        }
        
        .logo-icon i {
            font-size: 28px;
            color: white;
        }
        
        .logo-text {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .welcome-text {
            margin-bottom: 40px;
        }
        
        .welcome-text h1 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .welcome-text p {
            font-size: 20px;
            color: #5a5a5a;
            line-height: 1.6;
        }
        
        .login-form {
            display: flex;
            flex-direction: column;
        }
        
        .input-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .input-group input {
            width: 100%;
            padding: 18px 25px 18px 60px;
            border: 2px solid #e0e6ed;
            border-radius: 15px;
            font-size: 18px;
            transition: all 0.3s ease;
            outline: none;
            background: rgba(255, 255, 255, 0.8);
        }
        
        .input-group input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.3);
        }
        
        .input-group i {
            position: absolute;
            left: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .input-group input:focus + i {
            color: var(--secondary);
        }
        
        .btn-connect {
            background: linear-gradient(135deg, var(--primary), var(--accent));
			display: inline-block;
			text-decoration: none;
			text-align: center;
            color: white;
            border: none;
            padding: 20px;
            border-radius: 15px;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .btn-connect:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 30px rgba(255, 107, 107, 0.5);
        }
        
        .additional-links {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            font-size: 16px;
        }
        
        .additional-links a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .additional-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        
        /* SAĞ TARAF - INTERAKTİF SOHBET ANİMASYONU */
        .interactive-section {
            flex: 1;
            background: rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        
        .chat-animation {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .floating-users {
            display: flex;
            margin-bottom: 40px;
        }
        
        .user-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 -10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            animation: float 6s infinite ease-in-out;
        }
        
        .user-avatar:nth-child(1) {
            background: linear-gradient(135deg, #FF9AA2, #FFB7B2);
            z-index: 3;
            animation-delay: 0s;
        }
        
        .user-avatar:nth-child(2) {
            background: linear-gradient(135deg, #B5EAD7, #C7CEEA);
            z-index: 2;
            animation-delay: 1s;
        }
        
        .user-avatar:nth-child(3) {
            background: linear-gradient(135deg, #FFDAC1, #E2F0CB);
            z-index: 1;
            animation-delay: 2s;
        }
        
        .user-avatar i {
            font-size: 30px;
            color: white;
        }
        
        .chat-bubbles {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 200px;
        }
        
        .bubble {
            position: absolute;
            background: white;
            border-radius: 25px;
            padding: 15px 20px;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(20px);
            animation: bubbleAppear 8s infinite;
        }
        
        .bubble:nth-child(1) {
            top: 20px;
            left: 10px;
            animation-delay: 0.5s;
            max-width: 70%;
            background: linear-gradient(135deg, #B5EAD7, #C7CEEA);
            color: var(--dark);
        }
        
        .bubble:nth-child(2) {
            top: 80px;
            right: 10px;
            animation-delay: 2.5s;
            max-width: 65%;
            background: linear-gradient(135deg, #FF9AA2, #FFB7B2);
            color: white;
        }
        
        .bubble:nth-child(3) {
            top: 140px;
            left: 50px;
            animation-delay: 4.5s;
            max-width: 60%;
            background: linear-gradient(135deg, #FFDAC1, #E2F0CB);
            color: var(--dark);
        }
        
        .bubble::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: inherit;
        }
        
        .bubble:nth-child(1)::after {
            bottom: -10px;
            left: 20px;
            clip-path: polygon(0 0, 100% 0, 100% 100%);
            transform: rotate(-30deg);
        }
        
        .bubble:nth-child(2)::after {
            bottom: -10px;
            right: 20px;
            clip-path: polygon(0 0, 100% 0, 0 100%);
            transform: rotate(30deg);
        }
        
        .bubble:nth-child(3)::after {
            bottom: -10px;
            left: 40px;
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }
        
        .chat-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--dark);
            font-weight: 600;
        }
        
        /* ÖZELLİK KUTULARI BÖLÜMÜ */
        .features-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .feature-box {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 20px;
            padding: 40px 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            z-index: 1;
        }
        
        .feature-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
            z-index: -1;
            transition: all 0.6s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .feature-box:hover::before {
            transform: translate(25%, 25%);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }
        
        .feature-box:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-box h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .feature-box p {
            color: #5a5a5a;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Kutu renkleri */
        .feature-box:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, #FF9AA2, #FFB7B2);
            color: white;
        }
        
        .feature-box:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #B5EAD7, #C7CEEA);
            color: white;
        }
        
        .feature-box:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #FFDAC1, #E2F0CB);
            color: #5a5a5a;
        }
        
        .feature-box:nth-child(4) .feature-icon {
            background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
            color: white;
        }
        
        /* ANİMASYONLAR */
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        @keyframes bubbleAppear {
            0% { opacity: 0; transform: translateY(20px); }
            10% { opacity: 1; transform: translateY(0); }
            90% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(-20px); }
        }
        
        /* RESPONSIVE TASARIM */
        @media (max-width: 1100px) {
            .nav-links li {
                margin: 0 10px;
            }
            
            .nav-links a {
                font-size: 16px;
            }
            
            .btn-login, .btn-signup {
                padding: 8px 18px;
                font-size: 15px;
            }
        }
        
        @media (max-width: 900px) {
            .chat-header {
                flex-direction: column;
            }
            
            .login-section, .interactive-section {
                padding: 30px;
            }
            
            .interactive-section {
                min-height: 400px;
            }
            
            .welcome-text h1 {
                font-size: 32px;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: var(--navbar-height);
                right: -100%;
                width: 300px;
                height: calc(100vh - var(--navbar-height));
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: flex-start;
                padding: 40px 30px;
                transition: all 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
                width: 100%;
            }
            
            .nav-links a {
                font-size: 20px;
                display: block;
                padding: 10px 0;
				color: black;
            }
            
            .nav-buttons {
                display: none;
            }
            
            .mobile-buttons {
                display: flex;
                flex-direction: column;
                width: 100%;
                margin-top: 30px;
                gap: 15px;
            }
            
            .mobile-buttons .btn-login,
            .mobile-buttons .btn-signup {
                width: 100%;
                padding: 12px;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .features-container {
                flex-direction: column;
                align-items: center;
            }
            
            .feature-box {
                min-width: 100%;
                max-width: 100%;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text {
                font-size: 28px;
            }
            
            .logo-text-nav {
                font-size: 24px;
            }
            
            .logo-icon-nav {
                width: 40px;
                height: 40px;
            }
            
            .logo-icon-nav i {
                font-size: 20px;
            }
            
            .welcome-text h1 {
                font-size: 26px;
            }
            
            .welcome-text p {
                font-size: 16px;
            }
            
            .input-group input {
                padding: 15px 20px 15px 50px;
                font-size: 16px;
            }
            
            .btn-connect {
                padding: 16px;
                font-size: 18px;
            }
            
            .additional-links {
                flex-direction: column;
                gap: 12px;
            }
            
            .user-avatar {
                width: 50px;
                height: 50px;
            }
            
            .chat-stats {
                gap: 15px;
            }
            
            .stat-value {
                font-size: 28px;
            }
            
            .nav-links {
                width: 250px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
        }
    .features-section {
        padding: 0px 0px;
    }

    .section-title h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
        color: #2B2D42;
    }

    .hizlishell-posts {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hizlishell-main {
        flex: 1 1 70%;
    }

    .hizlishell-sidebar {
        flex: 1 1 25%;
        border-radius: 15px;
        height: fit-content;
        top: 30px;
    }

    .hizlishell-sidebar h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: #2B2D42;
        border-bottom: 2px solid #FF6B6B;
        padding-bottom: 10px;
    }

    .hizlishell-sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hizlishell-sidebar ul li {
        margin-bottom: 15px;
    }

    .hizlishell-sidebar ul li a {
        text-decoration: none;
        color: #5a5a5a;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .hizlishell-sidebar ul li a:hover {
        color: #FF6B6B;
        padding-left: 5px;
    }

    .hizlishell-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }

    .post-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .post-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .post-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .post-card:hover .post-image img {
        transform: scale(1.05);
    }

    .image-placeholder {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #6a11cb, #2575fc);
        color: white;
        font-size: 3rem;
    }

    .category-tag {
        position: absolute;
        top: 15px;
        left: 15px;
        background: linear-gradient(135deg, #ff6b6b, #ffbe0b);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .post-content {
        padding: 25px;
    }

    .post-meta {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #7f8c8d;
        font-size: 0.9rem;
    }

    .post-meta .date {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .post-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .post-content h3 a {
        text-decoration: none;
        color: #2B2D42;
        transition: all 0.3s ease;
    }

    .post-content h3 a:hover {
        color: #FF6B6B;
    }

    .excerpt {
        color: #5a5a5a;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .read-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
		padding: 10px 20px;
        border-radius: 50px;
		background-color: orange;
    }

    .read-more:hover {
        gap: 12px;
        color: #4ECDC4;
    }

    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .pagination a,
    .pagination span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 15px;
        border-radius: 10px;
        background: white;
        color: #2B2D42;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .pagination a:hover {
        background: linear-gradient(135deg, #FF6B6B, #FFBE0B);
        color: white;
        transform: translateY(-3px);
    }

    .pagination .current {
        background: linear-gradient(135deg, #FF6B6B, #FFBE0B);
        color: white;
    }

    .no-posts-message {
        text-align: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        padding: 50px 20px;
        border-radius: 15px;
        color: #5a5a5a;
        font-size: 1.2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin: 30px 0;
    }

    .no-posts-message i {
        font-size: 3rem;
        color: #FF6B6B;
        margin-bottom: 20px;
        display: block;
    }

    @media (max-width: 1024px) {
        .hizlishell-posts {
            flex-direction: column;
        }

        .hizlishell-main,
        .hizlishell-sidebar {
            flex: 1 1 100%;
        }
    }

    @media (max-width: 768px) {
        .hizlishell-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .post-image {
            height: 180px;
        }
    }

    @media (max-width: 480px) {
        .hizlishell-grid {
            grid-template-columns: 1fr;
        }

        .pagination a,
        .pagination span {
            min-width: 35px;
            height: 35px;
            font-size: 0.9rem;
            padding: 0 10px;
        }
    }
	
	
	
.popular-posts {
    margin-top: 40px;
}

.popular-posts h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2B2D42;
    border-bottom: 2px solid #FF6B6B;
    padding-bottom: 10px;
}

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

.popular-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.popular-post-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #5a5a5a;
    transition: all 0.3s ease;
}

.popular-post-item a:hover span {
    color: #FF6B6B;
}

.popular-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.thumbnail-placeholder {
    width: 60px;
    height: 60px;
    background: #eee;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
}	

































/* Sidebar Genel */
.hizlishell-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Kutular arası boşluk */
}

/* Ortak kutu stili */
.sidebar-box {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Başlıklar */
.sidebar-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2B2D42;
    border-bottom: 2px solid #FF6B6B;
    padding-bottom: 10px;
}

/* Kategori listesi */
.categories-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-box ul li {
    margin-bottom: 15px;
}

.categories-box ul li a {
    text-decoration: none;
    color: #5a5a5a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.categories-box ul li a:hover {
    color: #FF6B6B;
    padding-left: 5px;
}

/* Popüler yazılar listesi */
.popular-posts-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.popular-post-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #5a5a5a;
    transition: all 0.3s ease;
}

.popular-post-item a:hover span {
    color: #FF6B6B;
}

.popular-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.thumbnail-placeholder {
    width: 60px;
    height: 60px;
    background: #eee;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
}






.wp-pagenavi {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 6px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-flex !important;
    width: auto !important;
    height: auto;
}






