/* Estilos por defecto (360p) */

.selling-module {
	min-width: 328px;
	width: 100%;
	padding: 40px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
}


/* Article */
.selling-module .article {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 40px;
}

.selling-module .article__image {
	flex: 1 1 50%
}

.selling-module .article__image img {
	width: 100%;
	border-radius: 16px;
}

.selling-module .article__content {
	display: flex;
	flex: 1 1 50%;
	flex-direction: column;
	gap: 24px;
}

.selling-module .article__content .article__body {
	display: flex;
	padding: 0px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}

.selling-module .article__content .article__body-title {
	color: var(--Color-Content-General-1, #2C2C2C);
	margin: 0px;
	padding-bottom: 0rem;
}

.selling-module .article__content .article__body-text {
	color: #2C2C2C;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: IberPangeaText-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	margin: 0px;
}

.selling-module .article__link {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 4px;
}


.selling-module .article__link-ref {
	color: #2F6852;
}

@media (min-width: 576px) {

	.selling-module {
		min-width: 496px;
		padding: 40px 40px 40px 40px;
	}

	.selling-module .article__image img {
		width: 100%;
		height: 250px;
		border-radius: 16px;
		object-fit: cover;
	}

}

@media (min-width: 992px) {

	.selling-module {
		width: 100%;
		padding: 40px 82px;
	}

	/* Article */
	.selling-module .article {
		flex-direction: row;

		align-items: center;
		gap: 40px;
	}

}

@media (min-width: 1200px) {

	.selling-module {
		width: 100%;
		padding: 40px 100px 40px 100px;
	}
}

@media (min-width: 1920px) {

	.selling-module {
		width: 100%;
		padding: 40px 320px 40px 320px
	}
}