/**
 * Cover Highlights — self-contained block CSS.
 *
 * Full-bleed φωτογραφία background (cover) με ένα lavender card (#D5D1D8)
 * τοποθετημένο αριστερά ή δεξιά (.cover-highlights--left / --right, default
 * right). ΣΤΑΤΙΚΟ — δεν κάνει scroll/sticky.
 *
 * Όλο το styling (δομικό + οπτικό/τυπογραφία) είναι εδώ, ΩΣΤΕ το block να
 * είναι αυτόνομο: φορτώνεται αυτόματα μέσω του block.json ("style") όπου κι αν
 * τοποθετηθεί το block, χωρίς εξάρτηση από το restyle.css. Οι γραμματοσειρές
 * (Cormorant Garamond / Montserrat) φορτώνονται ήδη site-wide από το
 * functions.php (restyle-google-fonts). Τιμές ακριβώς από Figma
 * (screenshots/acf-new-field-block.png).
 */

.cover-highlights {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 100vh;
}

/* Full-bleed background photo (cover) */
.cover-highlights__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}

.cover-highlights__bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Content row — τοποθετεί το card αριστερά ή δεξιά, + περιθώρια σελίδας */
.cover-highlights__inner {
	position: relative;
	z-index: 1;
	display: flex;
	width: 100%;
	box-sizing: border-box;
	padding: 15vh 7.5%;
}

.cover-highlights--right .cover-highlights__inner {
	justify-content: flex-end;
}

.cover-highlights--left .cover-highlights__inner {
	justify-content: flex-start;
}

/* Lavender card. Πλάτος: Figma 566px ως ανώτατο όριο, responsive. */
.cover-highlights__card {
	flex: 0 0 auto;
	width: 566px;
	max-width: 100%;
	box-sizing: border-box;
	background-color: #D5D1D8;
	padding: 64px 90px;
}

/* --------------------------------------------------------------------------
   Title — "Key" (κανονικό) + "Highlights" (italic), ίδια γραμμή
   -------------------------------------------------------------------------- */
.cover-highlights__title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	line-height: 1.2;
}

.cover-highlights__title-main {
	color: #222222;
	font-size: 45px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.cover-highlights__title-accent {
	color: #222222;
	font-size: 45px;
	font-style: italic;
	font-weight: 500;
	line-height: normal;
}

.cover-highlights__title-main + .cover-highlights__title-accent {
	margin-left: 0.25em;
}

/* --------------------------------------------------------------------------
   Decorative divider (γραμμή-λουλούδι-γραμμή) — accent χρώμα #B8A8C7.
   Ίδιο asset με το suites-hover-gallery. Path relative σε ΑΥΤΟ το css αρχείο
   (blocks/cover-highlights/) -> ../../assets/...
   -------------------------------------------------------------------------- */
.cover-highlights__graphic {
	display: block;
	width: 152px;
	max-width: 100%;
	height: 17px;
	margin: 24px 0 40px;
	background: url("../../assets/media/icons/graphic-divider-accent.svg") left center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   Highlights bullet list — Cormorant 18px / 400 / lh 28 / #222
   -------------------------------------------------------------------------- */
.cover-highlights__list {
	margin: 0;
	padding-left: 1.1em;
	list-style: disc;
	color: #222222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.cover-highlights__list li {
	margin-bottom: 4px;
}

.cover-highlights__list li::marker {
	color: #222222;
}

/* --------------------------------------------------------------------------
   Text mode (content type: text) — σκέτο κείμενο, ίδιο style με τη λίστα
   -------------------------------------------------------------------------- */
.cover-highlights__text p {
	margin: 0 0 1em;
	color: #222222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

.cover-highlights__text p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Intro text — κείμενο ΠΑΝΩ από τα highlights (ίδια τυπογραφία με τη λίστα)
   -------------------------------------------------------------------------- */
.cover-highlights__intro {
	margin-bottom: 24px;
}

.cover-highlights__intro p {
	margin: 0 0 1em;
	color: #222222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

.cover-highlights__intro p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Tagline παράγραφος — ίδια τυπογραφία με τη λίστα
   -------------------------------------------------------------------------- */
.cover-highlights__tagline {
	margin-top: 24px;
}

.cover-highlights__tagline p {
	margin: 0 0 1em;
	color: #222222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* 155.556% */
}

.cover-highlights__tagline p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Button — "BOOK NOW", 164x51, border 1px #222, Montserrat 14px/400 uppercase
   -------------------------------------------------------------------------- */
.cover-highlights__actions {
	margin-top: 40px;
}

.cover-highlights__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 164px;
	min-height: 51px;
	padding: 14px 24px;
	box-sizing: border-box;
	border: 1px solid #222222;
	border-radius: 0;
	background-color: transparent;
	color: #222222;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.cover-highlights__button:hover,
.cover-highlights__button:focus-visible {
	background-color: #222222;
	color: #ffffff;
	border-color: #222222;
}

/* --------------------------------------------------------------------------
   Mobile — το card γεμίζει το πλάτος και κεντράρεται
   -------------------------------------------------------------------------- */
@media (max-width: 781.98px) {
	.cover-highlights__inner {
		padding: 56px 5%;
	}

	.cover-highlights--right .cover-highlights__inner,
	.cover-highlights--left .cover-highlights__inner {
		justify-content: center;
	}

	.cover-highlights__card {
		width: 100%;
		padding: 40px 32px;
	}

	.cover-highlights__title-main,
	.cover-highlights__title-accent {
		font-size: 32px;
	}
}
