.acc-card{
display:block;
text-decoration:none;
background:#fff;
border-radius:16px;
overflow:hidden;
height:100%;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;

}

.acc-card:hover{
transform:translateY(-5px);
}

.acc-card img{
width:100%;
height:250px;
object-fit:cover;
}



.acc-card h3{
padding:20px 20px 10px;
margin:0;
font-size:24px;
}

.acc-description{
padding:0 20px 25px;
color:#666;
}
.acc-description p, .acc-description .wp-block-paragraph {
	color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Make all slides equal height */
.acc-carousel .swiper-wrapper {
    align-items: stretch;
}

.acc-carousel .swiper-slide {
    height: auto;
    display: flex;
}


/* Make card fill slide height */
.acc-carousel .acc-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}


/* Keep images consistent */
.acc-carousel .acc-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}


/* Push description area naturally */
.acc-carousel .acc-description {
    flex-grow: 1;
}


.swiper{
padding-bottom:50px;
}