.plan7cruises-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin: 0;
}

.plan7cruises-cards__empty {
	margin: 0;
	color: #1f2a44;
	font-size: 1.125rem;
	font-weight: 600;
	text-align: center;
}

.plan7cruises-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border-radius: 1.5rem;
	background: #ffffff;
	box-shadow: 0 16px 36px rgba(31, 42, 68, 0.14);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan7cruises-card:hover {
	transform: scale(1.02);
	box-shadow: 0 22px 46px rgba(31, 42, 68, 0.2);
}

.plan7cruises-card__content {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 0;
	padding: 1.5rem;
	border-radius: 1.5rem;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='55' viewBox='0 0 110 55'%3E%3Cpath d='M0 12c12 0 12-6 24-6s12 6 24 6 12-6 24-6 12 6 24 6 12-6 24-6' stroke='%23d4a437' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0 28c12 0 12-6 24-6s12 6 24 6 12-6 24-6 12 6 24 6 12-6 24-6' stroke='%23d4a437' stroke-width='2.2' fill='none' stroke-linecap='round' opacity='0.82'/%3E%3Cpath d='M0 44c12 0 12-6 24-6s12 6 24 6 12-6 24-6 12 6 24 6 12-6 24-6' stroke='%23d4a437' stroke-width='2.2' fill='none' stroke-linecap='round' opacity='0.68'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem top 0.625rem;
	background-size: 5.5rem 2.75rem;
	color: #1f2a44;
}

.plan7cruises-card__title {
	margin: 0;
	color: #103562;
	font-size: clamp(1.1rem, 4vw, 1.5rem);
	font-weight: 800;
	line-height: 1.02;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.plan7cruises-card__subtitle {
	margin: -0.6rem 0 0;
	color: #103562;
	font-size: clamp(0.7rem, 3vw, 1.0rem);
	font-weight: 600;
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.plan7cruises-card__accent {
	width: 3.8rem;
	height: 0.22rem;
	border-radius: 999px;
	background: #d4a437;
}

.plan7cruises-card__description {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
}

.plan7cruises-card__departure {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.plan7cruises-card__departure-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #eef2f7;
	color: #103562;
	font-size: 1rem;
	line-height: 1;
}

.plan7cruises-card__departure-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.plan7cruises-card__departure-label {
	margin: 0;
	color: #1f2a44;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.plan7cruises-card__departure-port {
	margin: 0;
	color: #103562;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
}

.plan7cruises-card__departure-date {
	margin: 0;
	color: #1f2a44;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.25;
}

.plan7cruises-card__footer {
	margin-top: 0.75rem;
}

.plan7cruises-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 100%;
	padding: 0.8rem 1rem;
	border: 0;
	border-radius: 0.9rem;
	background: #0d325d;
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 18px rgba(13, 50, 93, 0.18);
}

.plan7cruises-card__button-arrow {
	font-size: 1.5rem;
	line-height: 1;
}

@media (min-width: 768px) {
	.plan7cruises-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.plan7cruises-cards {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
