/* =========================================================
   PrestaShop Modules Archive
   ========================================================= */

.presta-modules-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	margin-top: 56px;
}

.presta-module-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #e4e0d8;
	border-radius: 18px;
	background: #fff;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.presta-module-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.presta-module-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f5f2ec;
}

.presta-module-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.presta-module-card__content {
	padding: 30px;
}

.presta-module-card__eyebrow {
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #cd2653;
}

.presta-module-card__title {
	margin: 0 0 16px !important;
	font-size: 30px !important;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.presta-module-card__title a {
	color: inherit;
	text-decoration: none;
}

.presta-module-card__description {
	margin-bottom: 22px;
	color: #555;
	font-size: 16px;
	line-height: 1.6;
}

.presta-module-card__link {
	font-size: 15px;
	font-weight: 600;
	color: #cd2653;
	text-decoration: none;
}

.presta-module-card__link:hover {
	text-decoration: underline;
}

@media (max-width: 700px) {

	.presta-modules-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.presta-module-card__content {
		padding: 24px;
	}

	.presta-module-card__title {
		font-size: 26px !important;
	}
}