@import '../components/header/header.css';
@import '../components/footer/footer.css';
@import '../components/container/base.css';
@import '../components/modal/modal.css';

.daily_content {
	padding-top: 71px;
	background-color: #fff;
	width: 100%;
}

.daily_container_fix {
	display: block !important;
	margin: 0 auto;
	padding: 100px 40px 120px 40px;
}

.daily_timeline {
	display: flex;
	flex-direction: column;
	gap: 120px;
}

.day_row {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 80px;
}

.day_row:nth-child(even) {
	flex-direction: row-reverse;
}

.day_img_box {
	flex: 0 0 440px;
	width: 440px;
}

.day_img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.day_text_box {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: auto;
}

.day_title {
	font-size: 32px;
	font-weight: 700;
	color: #32325d;
	line-height: 1.25;
	letter-spacing: -0.02em;
	margin-top: 0;
	margin-bottom: 40px;
	text-transform: uppercase;
}

.day_paragraphs {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.day_paragraphs p {
	font-size: 18px;
	line-height: 1.65;
	color: #525f7f;
	margin: 0;
}

.cta {
	padding: 160px 0 00px 0;
}

.cta_btn {
	display: inline-block;
	background: #e96362;
	color: #fff;
	text-decoration: none;
	padding: 18px 50px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 600;
	transition:
		transform 0.3s,
		background 0.3s;
}

.cta_btn:hover {
	background: #d45251;
	transform: translateY(-2px);
}

@media (max-width: 992px) {
	.day_row,
	.day_row:nth-child(even) {
		flex-direction: column-reverse;
		gap: 30px;
		align-items: flex-start;
	}

	.day_img_box {
		width: 100%;
		flex: none;
	}

	.day_text_box {
		width: 100%;
		justify-content: flex-start;
	}

	.day_title {
		margin-bottom: 20px;
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.daily_container_fix {
		padding: 60px 20px 80px 20px;
	}

	.daily_timeline {
		gap: 80px;
	}

	.day_row,
	.day_row:nth-child(even) {
		flex-direction: column;
		gap: 25px;
		align-items: flex-start;
	}

	.day_img_box {
		width: 100%;
		flex: none;
	}

	.day_text_box {
		width: 100%;
		justify-content: flex-start;
	}

	.day_title {
		font-size: 20px;
		margin-bottom: 15px;
		text-transform: none;
	}

	.day_paragraphs {
		gap: 12px;
	}

	.day_paragraphs p {
		font-size: 14px;
		line-height: 1.6;
	}

	.cta_btn {
		padding: 12px 30px;
		font-size: 14px;
	}
}
