

        
        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .post-image {
            width: 20rem;
            height: 24rem;
            object-fit: cover;
            background-color: #f5f5f5;
            border-radius: 8px;
            position: relative;
        }
        

               
        .post-excerpt {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .post-meta {
            font-size: 0.8rem;
            color: #999;
            border-top: 1px solid #eee;
            padding-top: 10px;
            margin-top: 15px;
        }
        
        .filter-section {
            background: white;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .no-posts {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .no-posts i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }



        .post-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            width: 20rem;
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .post-image-hover {
            transition: all 0.4s ease;
            cursor: pointer;
            filter: brightness(1);
        }

        .post-image-hover:hover {
            filter: brightness(0.8);
            transform: scale(1.02);
        }

        .post-title-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            opacity: 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 80%;
            line-height: 1.3;
        }

        .post-card:hover .post-title-overlay {
            opacity: 1;
        }

        .post-title {
            font-size: 14px;
            font-weight: bold;
            margin: 29px 12px;
            line-height: 1.4;
            /* padding: 8px 0; */
            min-height: 3.5em;
            display: flex;
            align-items: flex-start;
            text-align: right;
            border: 1px dashed #e9640a;
            border-radius: 10px;
            padding: 40px 27px;
            justify-content: center;
        }

                .post-title-arcive {
            font-size: 14px;
            font-weight: bold;
            margin: 29px 12px;
            line-height: 1.4;
            /* padding: 8px 0; */
            min-height: 3.5em;
            display: flex;
            align-items: flex-start;
            /* text-align: right; */
            justify-content: center;
        }


        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .page-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .breadcrumb {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 10px 20px;
            margin-top: 20px;
        }
        
        .breadcrumb-item a {
            color: #e9640a;
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: rgb(33 51 115);
        }
        


        .language-switcher {
            margin-left: 15px;
        }
        
        .language-switcher a {
            color: white;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        
        .language-switcher a:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .language-switcher a.active {
            background: rgba(255,255,255,0.3);
        }
        
        .footer {
            background: #333;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .page-header {
                padding: 40px 0;
            }
        }