.owl-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.post-square {
	font-family: 'Poppins', sans-serif;
    flex-basis: calc(33.333% - 10px);
    box-sizing: border-box;
    padding: 20px;
	height: 100%;
    background-color: #fff;
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
	position: relative;
    display: flex;
	align-items: center;
    flex-direction: column;
	justify-content: space-between;
}

.post-square:hover {
    transform: translateY(-5px);
}

.post-square .post-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.post-square .post-img img {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s;
}

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


.post-square .post-title {
    margin: 0 0 15px 0px;
	font-size: 18px;
	font-weight: 600;
	color: #e86f09;
	display: flex;
    justify-content: center;
	align-items: center;
	text-align: center;
	transition: all 0.3s ease 0s;

}

.post-square .post-content {
    font-size: 15px;
	line-height: 23px;
	margin: 7px 0 10px;
}

.post-square .continue-button {
    background-color: #ef6603;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
	box-shadow: 0px 5px 20px 0px rgba(255, 123, 13, 0.2);
    align-self: flex-end;
	margin-top: auto;
}

.post-square .continue-button:hover {
    background-color: #ad4a02;
}

/* Adicione espaçamento entre a imagem e o título da postagem */
.post-square .post-img {
    margin-bottom: 25px;
}

.post-square .post-title {
    margin-bottom: 25px;
}

.post-square .continue-button {
    margin-bottom: 0px;
}

.post-square .post-content {
    margin-bottom: 25px;
}

/* Media query para ajustar o layout em dispositivos com largura máxima de 700 pixels */
@media (max-width: 700px) {
    .post-square {
        height: auto; /* Redefine a altura para se adaptar ao conteúdo */
		margin-bottom: 20px;
    }

    .post-square .continue-button {
        margin-top: 10px; /* Espaçamento para o botão em dispositivos móveis */
    }
}