        .posts-grid {
            display: flex;
            flex-wrap: wrap;
            gap:35px;
            justify-content: center;
        }

        .post-card {
            background-color: white;
            overflow: hidden;
            width:390px;
            height:auto;
            text-align: center;
        }

        .image-container {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
            border-radius: 10px;
        }

        .post-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .post-card:hover .post-image {
            transform: scale(1.05);
        }

        .post-content {
            padding: 20px;
        }

        .post-content a{
            text-decoration: none;
         }

        .post-date {
            color: #7f8c8d;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .post-title {
            font-size: 1.1rem;
            color: var(--black);
            line-height:1.4;
            margin-bottom:30px;
            font-weight:500;
            display:flex;
            justify-content:center;
            align-items: center;
            min-height:50px;
            transition: all ease .3s;
        }


        .post-card:hover .post-title{
            color:var(--primary);
        }


        .read-more {
            padding:10px 40px;
            background-color: var(--grayextralight);
            border: 1px solid #DFDDDD;
            color: var(--black);
            font-size: 16px;
            font-weight:600;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-align: center;
            text-decoration:none;
        }

        .read-more:hover {
            background-color: var(--primary);
            color:var(--white);
        }






        /* -- detalle del post */

        .containerPost {
            margin: 0 auto;
            display: flex;
            justify-content:space-between;
            gap: 30px;
            align-items: stretch; 
        }

        

       .main-content {
            flex: 0 0 70%;
        }

        .sidebar {
            flex: 0 0 25%;
        }

        .separatorVertical{
            flex: 0 0 0.01%;
            background-color:var(--graylight);
        }
      

        .post-date { 
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .post-titleDetail {
            font-size: 32px;
            color: var(--primary);
            line-height:1.4;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .post-image {
            width: 100%;
            height: auto;
            margin-bottom: 25px;
        }

        .post-contentDetail {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .post-secondary-image {
            width: 100%;
            height: auto;
            margin: 30px auto;
            display: block;
        }


        .sidebar-title {
            font-size: 28.5px;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            font-weight:600;
            text-align:left;
            line-height:1.2;
            border-bottom: 2px solid var(--graylight);
        }

        .recent-post {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--grayextralight);
        }

        .recent-post-date {
            color: #7f8c8d;
            font-size: 13px;
            font-weight: 500;
            margin-top:10px;
            margin-bottom: 5px;
        }

        .post-dateRd{
            color: #7f8c8d;
            font-size: 16px;
            font-weight: 500;
            margin-top:10px;
            margin-bottom: 20px;
        }

        .recent-post-title {
            font-size: 16px;
            color: var(--black);
            margin-bottom: 10px;
            font-weight:500;
        }

        .read-more {
            color: var(--black);
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
        }

        .imageRec-container{
            width:100%;
            height:250px;
            overflow: hidden;
            border-radius:10px;
        }

        .imageRec-container img{ 
            width:100%;
            height:100%;
            object-fit: cover;
        }







        @media(max-width:1440px){

            .sidebar-title {
                font-size: 26px;
            }

        }

        @media(max-width:1200px){

           .main-content {
            flex: 0 0 60%;
            }

            .sidebar {
                flex: 0 0 30%;
            }

         
        
            .imageRec-container{
                height:200px;
            }
        }




           @media(max-width:1000px){

           .main-content {
            flex: 0 0 65%;
            }

            .sidebar {
                flex: 0 0 28%;
            }

        
            .imageRec-container{
                height:150px;
            }
        }



        @media (max-width: 768px) {
            .containerPost {
                flex-direction: column;
            }
            
            .main-content, .sidebar {
                flex: 0 0 100%;
            }
            
            .post-titleDetail {
                font-size:30px;
            }

            
            .separatorVertical{
                display:none;
            }
            .imageRec-container{
                height:400px;
            }

            .sidebar-title{
                font-size:20px;
            }
        }


         @media (max-width: 650px) {
           .imageRec-container{
                height:300px;
            }
        }

         @media (max-width: 550px) {
            .image-container,.imageRec-container{
                height:250px;
            }

             .post-titleDetail {
                font-size:22px;
            }


        }

            @media (max-width:430px) {
            .image-container,.imageRec-container{
                height:200px;
            }
        }