    :root {
        --primary: #ffffff;
        --secondary: #f5576c;
        --accent: #4facfe;
        --text-dark: #2d3748;
        --text-light: #718096;
        --shadow: 0 10px 25px rgba(0,0,0,0.1);
        --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
        --radius: 20px;
    }


    * { font-family: 'Montserrat', sans-serif; }
    body { background: #f8fafc; }

    /* PAGE */
    #page-wrap {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Header Section */
    .blog-header {
        padding: 80px 0;
        background: black;
        color: white;
        text-align: center;
        position: relative;
        margin-bottom: 50px;
    }

    .blog-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.1);
    }

    .blog-header .container {
        position: relative;
        z-index: 2;
    }

    .blog-header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .blog-header p {
        font-size: 1.25rem;
        opacity: 0.9;
        font-weight: 300;
    }

    /* Post Cards */
    .post-card {
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: all 0.4s ease;
        height: 100%;
        border: none;
        position: relative;
    }

    .post-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

    .post-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--primary) ;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .post-card:hover::before {
        transform: scaleX(1);
    }

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

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

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

    .post-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .post-overlay i {
        color: white;
        font-size: 2rem;
    }

    .post-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        height: calc(100% - 250px);
        text-align: center;
		
    }

    .post-title {
        color: var(--text-dark);
        font-weight: 600;
        font-size: 1.25rem;
        margin-bottom: 10px;
        line-height: 1.4;
}


    .post-date {
        color: var(--text-light);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 15px;
    }

    .post-excerpt {
        color: var(--text-light);
        line-height: 1.6;
        flex-grow: 1;
        margin-bottom: 20px;
    }

    .post-button {
        background: black;
        border: none;
        padding: 12px 25px;
        border-radius: 25px;
        color: white;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        align-self: center;
    }

    .post-button:hover {
        transform: translateY(-2px);
        color: white;
    }

    a:hover, a:active {
        color: white!important;
    }

    /* Animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

 /*  SELECT FORM RICERCA ARTICOLI CATEGORIA */
  select.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgb(196, 191, 191);
  }


	span.input-group-text.bg-primary.text-white.border-0.rounded-start-pill{
		background-color: #dbca74!important;
	}

    /* Responsive */
    @media (max-width: 768px) {
        .blog-header h1 { 
            font-size: 2rem; 
        }
        .blog-header p {
            font-size: 1rem;
        }
        .blog-header {
            padding: 60px 0;
        }
    }