/* Mimosa Hotel promotion category archive */

.promotion-section {
	width: 100%;
	padding: 88px 0 122px;
	background: #f6f6f4;
	color: var(--mimo-ink);
}

.promotion-section__inner {
	display: flex;
	flex-direction: column;
	width: min(1180px, calc(100% - 80px));
	max-width: none;
	margin: 0 auto;
	padding: 0;
}

.promotion-section__title {
	align-self: center;
	margin: 0 0 54px;
	color: var(--mimo-ink);
	font-size: clamp(28px, 2.4vw, 36px);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -.02em;
	text-align: center;
}

.promotion-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 44px 18px;
	width: 100%;
}

.promotion-card {
	position: relative;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.promotion-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #ecebe7;
}

.promotion-card__image,
.promotion-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.promotion-card:hover .promotion-card__image img {
	transform: scale(1.025);
}

.promotion-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	width: calc(100% - 36px);
	min-height: 184px;
	margin: -42px auto 0;
	padding: 25px 24px 24px;
	background: var(--mimo-white);
	box-shadow: 0 16px 38px rgba(25, 23, 18, .06);
	text-align: center;
}

.promotion-card__title {
	margin: 0 0 10px;
	color: var(--mimo-ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.45;
	text-transform: uppercase;
}

.promotion-card__title a {
	color: inherit;
	text-decoration: none;
}

.promotion-card__excerpt {
	margin: 0 0 20px;
	color: rgba(10, 10, 9, .62);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.promotion-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	margin: auto 0 0;
	padding: 8px 16px;
	background: var(--mimo-brand-soft);
	color: var(--mimo-white);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .035em;
	text-decoration: none;
	transition: background-color .2s ease;
}

.promotion-card__cta:hover,
.promotion-card__cta:focus-visible {
	background: var(--mimo-brand);
	color: var(--mimo-white);
}

.promotion-pagination {
	margin-top: 54px;
}

.promotion-pagination ul {
	justify-content: center;
}

@media (max-width: 991px) {
	.promotion-section {
		padding: 78px 0 96px;
	}

	.promotion-section__inner {
		width: calc(100% - 56px);
	}

	.promotion-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 20px;
	}
}

@media (max-width: 640px) {
	.promotion-section {
		padding: 64px 0 76px;
	}

	.promotion-section__inner {
		width: calc(100% - 32px);
	}

	.promotion-section__title {
		margin-bottom: 40px;
		font-size: 27px;
	}

	.promotion-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.promotion-card__content {
		width: calc(100% - 28px);
		margin-top: -34px;
		padding: 22px 20px 22px;
	}
}
