.wp-block-act-tema-sobre {
	background: var(--cor-branco);
}

.sobre__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--spacing-lg, 40px);
}

.sobre__images {
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	max-width: calc(33.3% - 40px);
}

.sobre__image {
	width: 100%;
	max-width: 306px;
	aspect-ratio: 306 / 681;
	cursor: pointer;
	overflow: hidden;
}

.sobre__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sobre__image-placeholder {
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(45deg, #eee, #eee 10px, #f5f5f5 10px, #f5f5f5 20px);
}

.sobre__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	text-align: center;
	width: 100%;
	max-width: 33.3%;
}

.sobre__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.sobre__text>* {
	margin-bottom: 0;
}

.sobre__text :is(h1, h2, h3, h4, h5, h6) {
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	line-height: 1.2;
}

.sobre__text p {
	font-size: var(--fs-6);
	line-height: 1.4;
	color: var(--cor-destaque-secundaria);
	max-width: 473px;
}

.sobre__content .btn-principal {
	max-width: 400px;
	text-transform: uppercase;
}

@media (max-width: 1200px) {
	.sobre__row {
		flex-direction: column;
	}

	.sobre__content {
		max-width: 680px;
	}
}

@media (max-width: 991px) {
	.sobre__row {
		gap: var(--spacing-xl, 24px);
	}

	.sobre__images {
		gap: var(--spacing-xs);
		max-width: 460px;
	}
}

@media (max-width: 767px) {
	.sobre__row {
		padding: 10px;
	}
}