/* WeTheme About Us Widget */
.wetheme-about-us {
	width: 100%;
	background-color: #faf7f2;
	direction: rtl;
}

.wetheme-about-us__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	margin: 0 auto;
}

.wetheme-about-us__visual {
	flex: 0 0 42%;
	max-width: 42%;
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wetheme-about-us__capsules {
	position: relative;
	width: 100%;
	max-width: 380px;
	height: 100%;
	min-height: inherit;
	margin: 0 auto;
}

.wetheme-about-us__capsule {
	position: absolute;
	border-radius: 999px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.wetheme-about-us__capsule--back {
	width: 220px;
	height: 420px;
	background-color: #6f4e37;
	top: 0;
	right: 0;
	z-index: 1;
}

.wetheme-about-us__capsule--front {
	width: 200px;
	height: 380px;
	background-color: #e1d1c1;
	border: 4px solid #fff;
	top: 100px;
	right: 200px;
	z-index: 2;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.wetheme-about-us__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	text-align: center;
	padding: 16px;
}

.wetheme-about-us__placeholder .eicon-image {
	font-size: 28px;
	line-height: 1;
	opacity: 0.95;
}

.wetheme-about-us__placeholder span {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.wetheme-about-us__content {
	flex: 1 1 50%;
	min-width: 0;
	text-align: right;
}

.wetheme-about-us__title {
	margin: 0 0 20px;
	font-size: clamp(26px, 3.2vw, 36px);
	font-weight: 700;
	line-height: 1.45;
	color: #3d4759;
	font-family: inherit;
}

.wetheme-about-us__desc {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.9;
	color: #777;
}

.wetheme-about-us__desc p {
	margin: 0 0 12px;
}

.wetheme-about-us__desc p:last-child {
	margin-bottom: 0;
}

.wetheme-about-us__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 36px;
	border: 1.5px solid #3d4759;
	border-radius: 999px;
	color: #3d4759;
	background: transparent;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.wetheme-about-us__btn:hover,
.wetheme-about-us__btn:focus {
	color: #faf7f2;
	background-color: #3d4759;
	border-color: #3d4759;
}

@media (max-width: 1024px) {
	.wetheme-about-us__inner {
		gap: 32px;
	}

	.wetheme-about-us__visual {
		flex: 0 0 46%;
		max-width: 46%;
	}

	.wetheme-about-us__capsule--front {
		right: 88px;
		top: 48px;
	}
}

@media (max-width: 767px) {
	.wetheme-about-us__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.wetheme-about-us__visual {
		flex: none;
		max-width: 100%;
		width: 100%;
		order: 1;
		min-height: 400px;
	}

	.wetheme-about-us__content {
		order: 2;
		text-align: right;
	}

	.wetheme-about-us__capsules {
		max-width: 320px;
	}

	.wetheme-about-us__capsule--back {
		right: 50%;
		transform: translateX(58%);
	}

	.wetheme-about-us__capsule--front {
		right: 50%;
		transform: translateX(-8%);
	}
}
