.franchise-cases {
	.swiper-slide {
		height: auto;
	}

	.case_box {
		display: flex;
		flex-direction: column;
		height: 100%;
		border-radius: 16px;
		overflow: hidden;
	}

	.photo_box {
		position: relative;
		aspect-ratio: 16 / 9;
		background-color: var(--brown-50);

		img {
			object-fit: cover;
		}
	}

	.text_box {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 24px;
	}

	.meta_line {
		display: flex;
		align-items: center;
		gap: 4px;
		font-size: 14px;
		color: var(--brown-400);

		.city {
			font-weight: 500;
			color: var(--title-color);
		}

		.city + .opening_date:before {
			content: "· ";
		}
	}

	.stats_row {
		display: flex;
		gap: 24px;
	}

	.stat {
		display: flex;
		flex-direction: column;
		gap: 4px;

		.stat_value {
			font-size: 24px;
			font-weight: 500;
			line-height: 1.2;
			color: var(--title-color);
		}

		.stat_label {
			font-size: 13px;
			color: var(--brown-400);
		}
	}

	.quote {
		font-style: italic;
	}

	.partner_name {
		font-size: 14px;
		font-weight: 500;
		color: var(--brown-400);
	}

	.disclaimer {
		margin-top: 24px;
		max-width: 780px;
		font-size: 13px;
		color: var(--brown-400);
	}

	@media (max-width: 767px) {
		.stats_row {
			gap: 16px;
		}
	}
}
