.grid-full.pushup{

    margin:0
}

.home-pushup-category{
    padding:0.5rem 1rem;
    color: var(--color-nero);
    background-color: var(--color-grigio);
    position: absolute;
    top: 1rem;
    left:1rem;
    width: auto;
    display: inline-block;
    z-index: 10;
}

.home-pushup-container{
    position: relative;
    height: 50vh;
	width: calc(50% - 8px);
    margin-left:8px;
	margin-bottom: 4px;
    aspect-ratio: 1/1!important;
}

@media (max-width: 768px) {
.home-pushup-container{
    position: relative;
    height: 50vh;
	width: 100%;
	margin-left:0px;
	margin-bottom: 4px;
}
}

@media (max-width: 1024pxpx) {
.home-pushup-container{
    position: relative;
    height: 50vh;
	width: 100%;
	margin-left:0px;
	margin-bottom: 4px;
}
}

.col-100.home-pushup-container {
	width: calc(100% - 8px);
	margin-bottom: 0px;
}

.home-pushup-title{
    position: absolute;
    bottom: 0;
    color: white;
        padding: 1rem;
        z-index: 10;
}

.home-pushup-title p{
    margin-bottom: 0.5rem;
}

.home-pushup-thumbnail{
    width: 100%;
    height: calc(50vh - 5px);
}

.home-pushup-thumbnail-horizontal{
    width: 100%;
    height: 50vh;
    
}

@media (max-width: 768px) {
.col-100.home-pushup-container {
    width: 100%!important;

}
}

.home-pushup-thumbnail-horizontal img,
.home-pushup-thumbnail img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-pushup-thumbnail-horizontal::before,
.home-pushup-thumbnail::before {
  content: ""; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.4) 70%
  );
  z-index: 1;
}

.home-pushup-excerpt {
    max-height: 0;
    opacity: 0;
	padding:0;
    overflow: hidden;
    transition: all 0.4s ease;
	margin:0!important;
}

.home-pushup-container:hover .home-pushup-excerpt {
    max-height: 200px; 
    opacity: 1;
	padding-bottom: 1rem;
	margin:0!important;
}

   /*****Home****/
.space .vc_column-inner .wpb_wrapper{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}


     .didattica_home .vc_column-inner:hover{
        background: var(--color-light-green)!important;
     }

       .didattica_home .vc_column-inner:hover h3{
            color: var(--color-nero)!important;
       }


.home-pushup-container a {
    display: block;
    position: relative;
    overflow: hidden;
}

/* Immagine visibile normalmente */
.home-pushup-thumbnail,
.home-pushup-thumbnail-horizontal {
    position: relative;
    z-index: 2;
}

/* Sfondo blu in hover */
.home-pushup-container a::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light-blue); /* blu */
    z-index: 1;
    opacity: 0;
}

.home-pushup-container:hover .home-pushup-title{
    color: var(--color-nero)
}

.home-pushup-container a:hover::before {
    opacity: 1;
}

.home-pushup-container a:hover .home-pushup-thumbnail,
.home-pushup-container a:hover .home-pushup-thumbnail-horizontal {
    opacity: 0;
}