.offer-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
}

.offer-card {
	background: #fff;
	border: 1px solid #d7dde7;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(17, 52, 90, 0.15) 0px 10px 40px -10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.offer-card__header {
	background: #0d3768;
	padding: 28px;
	color: #fff;
}

.offer-card__icon-meta {
	display: flex;
	align-items: center;
	column-gap: 15px;
}

.offer-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255,255,255,0.12);
	color: #e0ad68;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.offer-card__icon svg,
.offer-card__icon img {
	width: 20px;
	height: 20px;
}

.offer-card__meta {
	color: #e0ad68;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.offer-card__title {
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 12px;
}

.offer-card__duration {
	color: rgba(255,255,255,0.75);
	font-size: 14px;
	font-weight: 600;
}

.offer-card__body {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.offer-card__description {
	color: #5c6c84;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 24px;
}

.offer-card__points ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.offer-card__points li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 14px;
	color: #163760;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.offer-card__points li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #d8a15f;
	position: absolute;
	left: 0;
	top: 11px;
}

.offer-card__button {
	margin-top: auto;
	background: #163f73;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.35s ease;
}

.offer-card__button:hover {
	background: #0d3768;
	color: #fff;
}

@media (min-width: 1024px) {

	.offer-cards {
		grid-template-columns: repeat(3, 1fr);
	}

}