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

.profile {
	padding: 160px 0 80px;
}

.profile_inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start;
	flex-direction: row;
}

.profile_image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.profile_name {
	font-size: 32px;
	margin-top: 50px;
	color: #3e3e5c;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 40px;
}

.profile_list {
	list-style: none;
}

.profile_list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 1.6;
	color: #555;
}

.profile_list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #e96362;
}

.experience {
	padding-top: 100px;
	background: #fff;
}

.experience_inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}

.exp_title {
	color: #e96362;
	text-transform: lowercase;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 130px;
}

.exp_text p {
	font-size: 16px;
	width: 500px;
	line-height: 1.8;
	color: #333;
}

.experience_image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.cta {
	padding: 40px 0 100px;
	text-align: center;
}

.cta_btn {
	display: inline-block;
	background: #e87a79;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 60px;
	border-radius: 35px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

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

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

	.profile_inner {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.profile_info {
		display: contents;
	}

	.profile_name {
		font-size: 24px;
		margin-top: 30px;
		margin-bottom: 0px;
		order: 1;
	}

	.profile_image {
		order: 2;
	}

	.profile_list {
		order: 3;
	}

	.profile_list li {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.experience {
		padding: 60px 0;
	}

	.experience_inner {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.experience_info {
		display: contents;
	}

	.exp_title {
		font-size: 24px;
		margin-bottom: 10px;
		align-self: flex-start;
		order: 1;
	}

	.experience_image {
		order: 2;
	}

	.exp_text {
		order: 3;
	}

	.exp_text p {
		font-size: 14px;
		width: 100%;
	}

	.cta_btn {
		padding: 16px 40px;
		font-size: 13px;
	}
}
