/**
 * Velvet Editorial - Split-content luxury magazine section
 * Aman-inspired editorial design
 */

/* ----------------------------------------------
   Section
---------------------------------------------- */
.velvet-editorial {
	padding: 120px 0;
	background-color: #F7F5F0;
}

.velvet-editorial__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 48px;
}

/* ----------------------------------------------
   Left: Text content
---------------------------------------------- */
.velvet-editorial__content {
	max-width: 480px;
}

.velvet-editorial__label {
	display: block;
	margin-bottom: 20px;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.6rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #0F3D2E;
}

.velvet-editorial__heading {
	margin: 0 0 32px;
	font-family: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.2;
	color: #111111;
}

.velvet-editorial__paragraph {
	margin: 0 0 28px;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.75;
	color: #555555;
}

.velvet-editorial__quote {
	margin: 0 0 36px;
	font-family: 'Cormorant Garamond', 'Libre Baskerville', Georgia, serif;
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.5;
	color: #111111;
	border: none;
	padding: 0;
}

.velvet-editorial__btn {
	display: inline-block;
	padding: 14px 28px;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	color: #0F3D2E;
	background: transparent;
	border: 1px solid #0F3D2E;
	border-radius: 0;
	transition: background-color 0.35s ease, color 0.35s ease;
}

.velvet-editorial__btn:hover,
.velvet-editorial__btn:focus {
	background-color: #0F3D2E;
	color: #ffffff;
	outline: none;
}

/* ----------------------------------------------
   Right: Large square image
---------------------------------------------- */
.velvet-editorial__image-wrap {
	position: relative;
	aspect-ratio: 1;
	max-width: 560px;
	justify-self: end;
}

.velvet-editorial__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ----------------------------------------------
   Responsive
---------------------------------------------- */
@media screen and (max-width: 1024px) {
	.velvet-editorial {
		padding: 100px 0;
	}

	.velvet-editorial__container {
		gap: 56px;
		padding: 0 32px;
	}
}

@media screen and (max-width: 768px) {
	.velvet-editorial {
		padding: 80px 0;
	}

	.velvet-editorial__container {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 0 24px;
	}

	.velvet-editorial__content {
		max-width: none;
	}

	.velvet-editorial__heading {
		margin-bottom: 24px;
	}

	.velvet-editorial__image-wrap {
		max-width: none;
		justify-self: stretch;
		order: -1;
	}
}
