/* -------------------------------- 

IMAGENS

-------------------------------- */

img {
    border-radius: var(--ifht-sys-raio-borda-sm);
}


figure.image-lightbox {
    position:relative;
    line-height: inherit;
}

figure img {
	margin-bottom:var(--ifht-sys-spacing-padding-md);
}

.block_cocoon_course_instructor img,
.block_cocoon_accordion.equipe img,
.equipe .accordion img {
    clip-path: circle();
    max-width: 70%;
}


/* IMAGEM EM image-lightbox */
.image-lightbox {
	cursor: zoom-in;
	position: relative;
	border-radius: 16px;
}

.image-lightbox::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000000;
	opacity: 0;
	transition: 0.25s ease-out;
}

.image-lightbox:hover::after {
	opacity: 0.25;
}

.lightbox__image {
	position: fixed;
	padding: 30px;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: auto;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.85);
	text-align: center;
	cursor: zoom-out;
	object-fit: contains;
}
.lightbox__image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #ffffff;
	padding: 20px;
}