/**
 * Global base – resets, CSS variables, focus styles.
 * Load first; no component-specific styles.
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--color-primary: #aa1c1c;
	--color-primary-dark: #8e0000;
	--color-bg: #f7f7f7;
	--color-text: #222222;
	--color-muted: #777777;
	--container-width: 1100px;
	--radius: 8px;
}

/* .facts-collage__inner {
	max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
} */

/* Focus visible for accessibility (keyboard/skip links) */
:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.section.full-width {
	width: 100vw;
  	margin-left: calc(50% - 50vw);
}

blockquote.wp-block-quote {
	margin: 40px auto;
    max-width: 760px;
    text-align: center;
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 20px);
    line-height: 1.5;
  }

  .wp-block-image.size-large {
	aspect-ratio: 16/9;
  }

  .wp-block-image.size-large img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }

:focus:not(:focus-visible) {
	outline: none;
}

:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

body {
	margin: 0;
	font-family: 'Playfair Display', serif;
	background: #fff;
	color: var(--color-text);
	line-height: 1.5;
}

/* Facts Collage */
/**
 * Block: Facts – Text + Collage
 * Two-column: text left, 3-image collage right. Light section background, responsive stack.
 * Scoped under .facts-collage
 *
 * @package sarantaporo
 */

 .facts-collage {
	box-sizing: border-box;
	width: 100%;
	background: var(--color-bg, #f7f7f7);
	padding: 2rem 1.25rem;
	margin: 40px 0;
}

.facts-collage__inner {
	max-width: var(--container-width, 1100px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.facts-collage__text {
	flex: 0 0 auto;
}

.facts-collage__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.3;
	color: var(--color-text, #222);
	opacity: 0.9;
}

.facts-collage__title {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	line-height: 1.25;
	color: inherit;
}

.facts-collage__body {
	font-size: 1rem;
	line-height: 1.6;
	color: inherit;
}

.facts-collage__body p:first-child {
	margin-top: 0;
}

.facts-collage__body p:last-child {
	margin-bottom: 0;
}

.facts-collage__media {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.facts-collage__img {
	position: relative;
	border-radius: var(--radius, 8px);
	overflow: hidden;
	line-height: 0;
}

.facts-collage__img img {
	width: 90%;
    height: 90%;
    margin-left: auto;
    border-radius: inherit;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.facts-collage__img--top {
	width: 100%;
    min-height: auto;
    border-radius: 0;
    border-top-left-radius: 24px;
}

.facts-collage__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}

.facts-collage__img--bottom-left,
.facts-collage__img--bottom-right {
	aspect-ratio: 4 / 3;
	min-height: 120px;
}

.facts-collage--placeholder .facts-collage__empty {
	margin: 0;
	padding: 1.5rem;
	text-align: center;
	color: var(--color-muted, #777);
	font-size: 0.9rem;
}

/* Desktop: two columns */
@media (min-width: 768px) {
	.facts-collage {
		padding: 3rem 2rem;
	}

	.facts-collage__inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 2.5rem;
	}

	.facts-collage__text {
		flex: 0 0 45%;
		max-width: 45%;
	}

	.facts-collage__title {
		font-size: 1.75rem;
		margin-bottom: 1.25rem;
	}

	.facts-collage__media {
		flex: 1 1 55%;
		min-width: 0;
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		gap: 0.5rem;
		position: relative;
	}

	.facts-collage__img--top {
		aspect-ratio: 16 / 10;
		min-height: 220px;
	}

	.facts-collage__row {
		gap: 0.5rem;
	}

	.facts-collage__img--bottom-left,
	.facts-collage__img--bottom-right {
		position: absolute;
        width: 220px;
        min-height: auto;
        bottom: -28px;
        border-radius: 0;
        border-top-left-radius: 24px;
	}

	.facts-collage__img--bottom-left img {
		width: 100%;
		height: 100%;
	}
}

@media (min-width: 1024px) {
	.facts-collage {
		padding: 4rem 2rem;
	}

	.facts-collage__inner {
		gap: 3rem;
	}

	.facts-collage__img--top {
		min-height: 260px;
	}
}

/* Single bottom image: full width of row */
.facts-collage__row .facts-collage__img:only-child {
	grid-column: 1 / -1;
}
/* Facts Collage */

/* Layout Photo Gallery */
/**
 * Layout Photo Gallery Block
 * Scoped under .acf-layout-photo-gallery. Four presets; CSS variables for gap, radius, fit.
 *
 * @package sarantaporo
 */

/* -----------------------------------------------------------------------------
   Variables & root
   ----------------------------------------------------------------------------- */

   .acf-layout-photo-gallery,
   .lpg {
	   margin-top: 2rem;
	   margin-bottom: 2rem;
	   --lpg-gap: 16px;
	   --lpg-radius: 0px;
	   --lpg-fit: cover;
	   box-sizing: border-box;
	   width: 100%;
	   margin-left: auto;
	   margin-right: auto;
   }
   
   .lpg *,
   .lpg *::before,
   .lpg *::after {
	   box-sizing: inherit;
   }
   
   .lpg__grid {
	   display: grid;
	   gap: var(--lpg-gap);
	   width: 100%;
   }
   
   .lpg__figure {
	   margin: 0;
	   height: 100%;
	   min-height: 0;
	   display: flex;
	   flex-direction: column;
   }
   
   .lpg__link {
	   display: block;
	   flex: 1;
	   min-height: 0;
	   text-decoration: none;
	   color: inherit;
   }
   
   .lpg__link:focus {
	   outline: 2px solid currentColor;
	   outline-offset: 2px;
   }
   
   .lpg__img {
	   width: 100%;
	   height: 100%;
	   display: block;
	   object-fit: var(--lpg-fit);
	   vertical-align: middle;
   }
   
   .lpg--rounded .lpg__img {
	   border-radius: var(--lpg-radius);
   }
   
   .lpg__caption {
	   margin: 0;
	   padding: 0.5rem 0;
	   font-size: 0.9rem;
	   line-height: 1.3;
   }
   
   .lpg__text {
	position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 29%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    color: #fff;
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 1;
   }
   .lpg__figure:hover .lpg__text {
	opacity: 1;
	z-index: 2;
   }
   .lpg__text .lpg__title {
	display: block;
    font-size: 22px;
    line-height: 1.3;
   }
   .lpg__text .lpg__subtitle {
	display: block;
    margin-top: 12px;
    font-size: 12px;
    color: rgb(209 209 209 / 60%);
   }

   /* Video card: poster + play overlay (no title/subtitle) */
   .lpg__figure--video {
	   position: relative;
	   overflow: hidden;
   }
   .lpg__figure--video .lpg__poster {
	   width: 100%;
	   height: 100%;
	   display: block;
	   object-fit: var(--lpg-fit);
	   vertical-align: middle;
   }
   .lpg--rounded .lpg__figure--video .lpg__poster {
	   border-radius: var(--lpg-radius);
   }
   .lpg__play {
	   position: absolute;
	   inset: 0;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   background: rgba(0, 0, 0, 0.25);
	   border: 0;
	   cursor: pointer;
	   padding: 0;
	   margin: 0;
	   width: 100%;
	   height: 100%;
	   color: #fff;
	   transition: background 0.2s ease, transform 0.2s ease;
	   z-index: 2;
   }
   .lpg__play:hover {
	   background: rgba(0, 0, 0, 0.4);
   }
   .lpg__play:focus {
	   outline: 2px solid currentColor;
	   outline-offset: 2px;
   }
   .lpg__play-icon {
	   width: 72px;
	   height: 72px;
	   border-radius: 50%;
	   background: rgba(255, 255, 255, 0.95);
	   color: #111;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	   transition: transform 0.2s ease, box-shadow 0.2s ease;
	   pointer-events: none;
   }
   .lpg__play-icon::before {
	   content: '';
	   width: 0;
	   height: 0;
	   margin-left: 4px;
	   border-style: solid;
	   border-width: 12px 0 12px 22px;
	   border-color: transparent transparent transparent currentColor;
   }
   .lpg__play:hover .lpg__play-icon {
	   transform: scale(1.08);
	   box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
   }
   .lpg__play:focus-visible .lpg__play-icon {
	   outline: 2px solid currentColor;
	   outline-offset: 2px;
   }
   @media (prefers-reduced-motion: reduce) {
	   .lpg__play,
	   .lpg__play:hover .lpg__play-icon { transition: none; transform: none; }
   }

   /* Empty / placeholder */
   .lpg__empty {
	   min-height: 120px;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   background: #f5f5f5;
	   border: 2px dashed #ccc;
	   padding: 1rem;
	   color: #666;
	   text-align: center;
   }
   
   /* -----------------------------------------------------------------------------
	  Preset 1: Large left (dominant), two stacked right
	  Ref: 2fr 1fr columns, 2 rows; item 1 spans 2 rows
	  ----------------------------------------------------------------------------- */
   
   .lpg--preset_1 .lpg__grid {
	   grid-template-columns: 2fr 1fr;
	   grid-template-rows: 1fr 1fr;
	   min-height: 280px;
   }
   
   .lpg--preset_1 .lpg__cell--1-1 {
	   grid-column: 1;
	   grid-row: 1 / -1;
   }
   
   .lpg--preset_1 .lpg__cell--1-2 {
	   grid-column: 2;
	   grid-row: 1;
   }
   
   .lpg--preset_1 .lpg__cell--1-3 {
	   grid-column: 2;
	   grid-row: 2;
   }
   
   .lpg--preset_1 .lpg__figure {
	   height: 100%;
   }
   
   .lpg--preset_1 .lpg__link,
   .lpg--preset_1 .lpg__figure > .lpg__img {
	   height: 100%;
	   min-height: 120px;
   }
   
   .lpg--preset_1 .lpg__link .lpg__img,
   .lpg--preset_1 .lpg__figure > .lpg__img {
	   width: 100%;
	   height: 100%;
	   object-fit: var(--lpg-fit);
   }
   
   /* -----------------------------------------------------------------------------
	  Preset 2: Two equal images side-by-side
	  ----------------------------------------------------------------------------- */
   
   .lpg--preset_2 .lpg__grid {
	   grid-template-columns: 1fr 1fr;
	   grid-template-rows: 1fr;
	   min-height: 240px;
   }
   
   .lpg--preset_2 .lpg__figure {
	   height: 100%;
   }
   
   .lpg--preset_2 .lpg__link .lpg__img,
   .lpg--preset_2 .lpg__figure > .lpg__img {
	   min-height: 200px;
	   object-fit: var(--lpg-fit);
   }
   
   /* Single image: span full width */
   .lpg--preset_2 .lpg__cell--2-1:only-child {
	   grid-column: 1 / -1;
   }
   
   /* -----------------------------------------------------------------------------
	  Preset 3: Magazine — left 3 stacked, right 2 (one spans 2 rows)
	  Grid: 2 cols, 3 rows; cell 4 = right col rows 1-2, cell 5 = right col row 3
	  ----------------------------------------------------------------------------- */
   
   .lpg--preset_3 .lpg__grid {
	   grid-template-columns: 1fr 1fr;
	   grid-template-rows: 1fr 1fr 1fr;
	   min-height: 400px;
   }
   
   .lpg--preset_3 .lpg__cell--3-1 { grid-column: 1; grid-row: 1; }
   .lpg--preset_3 .lpg__cell--3-2 { grid-column: 1; grid-row: 2; }
   .lpg--preset_3 .lpg__cell--3-3 { grid-column: 1; grid-row: 3; }
   .lpg--preset_3 .lpg__cell--3-4 { grid-column: 2; grid-row: 1 / span 2; }
   .lpg--preset_3 .lpg__cell--3-5 { grid-column: 2; grid-row: 3; }
   
   .lpg--preset_3 .lpg__figure {
	   height: 100%;
   }
   
   .lpg--preset_3 .lpg__link .lpg__img,
   .lpg--preset_3 .lpg__figure > .lpg__img {
	   min-height: 100px;
	   height: 100%;
	   object-fit: var(--lpg-fit);
   }
   
   /* -----------------------------------------------------------------------------
	  Mosaic (3 top + 1 large): row 1 = 3 equal images (4:3), row 2 = 1 full width (16:9)
	  Scoped: .acf-layout-photo-gallery[data-layout="mosaic_3_1"] / .lpg--mosaic_3_1
	  ----------------------------------------------------------------------------- */
   
   .acf-layout-photo-gallery[data-layout="mosaic_3_1"] .lpg__grid,
   .lpg--mosaic_3_1 .lpg__grid {
	   display: grid;
	   grid-template-columns: repeat(3, 1fr);
	   grid-template-rows: auto auto;
	   gap: var(--lpg-gap);
	   width: 100%;
   }
   
   .lpg--mosaic_3_1 .lpg__cell--mosaic-full {
	   grid-column: 1 / -1;
	   aspect-ratio: 16 / 9;
   }
   
   .lpg--mosaic_3_1 .lpg__cell--mosaic-top {
	   aspect-ratio: 5 / 3;
	   min-height: 0;
   }
   
   .lpg--mosaic_3_1 .lpg__cell--mosaic-bottom {
	   grid-column: 1 / -1;
	   aspect-ratio: 16 / 9;
	   min-height: 0;
   }
   
   .lpg--mosaic_3_1 .lpg__figure {
	   height: 100%;
   }
   
   .lpg--mosaic_3_1 .lpg__link,
   .lpg--mosaic_3_1 .lpg__figure > .lpg__img {
	   height: 100%;
	   min-height: 0;
   }
   
   .lpg--mosaic_3_1 .lpg__link .lpg__img,
   .lpg--mosaic_3_1 .lpg__figure > .lpg__img {
	   width: 100%;
	   height: 100%;
	   object-fit: var(--lpg-fit);
	   display: block;
	   vertical-align: middle;
   }
   
   /* -----------------------------------------------------------------------------
	  Featured image only: single full-width post thumbnail
	  ----------------------------------------------------------------------------- */
   .acf-layout-photo-gallery[data-layout="featured_only"] .lpg__grid,
   .lpg--featured_only .lpg__grid {
	   display: grid;
	   grid-template-columns: 1fr;
	   gap: var(--lpg-gap);
	   width: 100%;
   }
   
   .lpg--featured_only .lpg__cell--featured-only {
	   width: 100%;
	   min-height: 0;
   }
   
   .lpg--featured_only .lpg__figure {
	   height: 100%;
   }
   
   .lpg--featured_only .lpg__link,
   .lpg--featured_only .lpg__figure > .lpg__img {
	   height: 100%;
	   min-height: 200px;
   }
   
   .lpg--featured_only .lpg__link .lpg__img,
   .lpg--featured_only .lpg__figure > .lpg__img {
	   width: 100%;
	   height: 100%;
	   object-fit: var(--lpg-fit);
	   display: block;
	   vertical-align: middle;
	   aspect-ratio: 16 / 9;
   }
   
   /* -----------------------------------------------------------------------------
	  Preset 4: Masonry layout (Masonry.js positions items; CSS provides column width)
	  ----------------------------------------------------------------------------- */
   
   .lpg--masonry .lpg__masonry {
	   position: relative;
	   width: 100%;
   }
   
   /* Fallback when Masonry JS has not run: CSS columns for readable layout */
   .lpg--masonry .lpg__masonry:not(.lpg__masonry--initialized) {
	   column-count: 3;
	   column-gap: var(--lpg-gap);
   }
   
   .lpg--masonry .lpg__masonry:not(.lpg__masonry--initialized) .lpg__item {
	   break-inside: avoid;
	   page-break-inside: avoid;
	   margin-bottom: var(--lpg-gap);
   }
   
   .lpg--masonry .lpg__masonry-sizer {
	   position: absolute;
	   left: 0;
	   top: 0;
	   pointer-events: none;
	   visibility: hidden;
	   height: 0;
	   overflow: hidden;
	   margin: 0;
	   padding: 0;
	   width: calc((100% - (var(--lpg-gap) * 2)) / 3);
   }
   
   .lpg--masonry .lpg__item {
	   width: calc((100% - (var(--lpg-gap) * 2)) / 3);
	   margin-bottom: var(--lpg-gap);
   }
   
   .lpg--masonry .lpg__figure {
	   height: auto;
   }
   
   .lpg--masonry .lpg__link .lpg__img,
   .lpg--masonry .lpg__figure > .lpg__img {
	   width: 100%;
	   height: auto;
	   min-height: 0;
	   object-fit: var(--lpg-fit);
	   display: block;
	   vertical-align: middle;
   }
   
   /* -----------------------------------------------------------------------------
	  Masonry Grid (Editorial): CSS Grid, dense flow, pattern-based row spans
	  Column count from --lpg-cols (2–6, set on wrapper; default 3). No JS.
	  Item 1,4,7… = large (span 2 rows); 2,3,5,6… = medium (1 row).
	  ----------------------------------------------------------------------------- */
   .lpg--masonry_grid .lpg__grid--masonry-editorial {
	   display: grid;
	   grid-template-columns: repeat(var(--lpg-cols, 3), minmax(0, 1fr));
	   grid-auto-rows: minmax(160px, 1fr);
	   grid-auto-flow: dense;
	   gap: var(--lpg-gap);
	   width: 100%;
   }
   
   .lpg--masonry_grid .lpg__cell--mg--large {
	   grid-row: span 2;
   }
   
   .lpg--masonry_grid .lpg__cell--mg--medium {
	   grid-row: span 1;
   }
   
   .lpg--masonry_grid .lpg__grid--mg-single .lpg__cell {
	   grid-column: 1 / -1;
	   grid-row: span 1;
   }
   
   .lpg--masonry_grid .lpg__figure {
	position: relative;
	   height: 100%;
	   min-height: 0;
   }
   
   .lpg--masonry_grid .lpg__link,
   .lpg--masonry_grid .lpg__figure > .lpg__img {
	   height: 100%;
	   min-height: 120px;
   }
   
   .lpg--masonry_grid .lpg__link .lpg__img,
   .lpg--masonry_grid .lpg__figure > .lpg__img {
	   width: 100%;
	   height: 100%;
	   object-fit: var(--lpg-fit);
	   display: block;
	   vertical-align: middle;
   }
   
   /* -----------------------------------------------------------------------------
	  Responsive: Tablet (≤1024px)
	  ----------------------------------------------------------------------------- */
   
   @media (max-width: 1024px) {
	   .lpg--preset_1 .lpg__grid {
		   grid-template-columns: 1fr;
		   grid-template-rows: auto auto auto;
		   min-height: 0;
	   }
   
	   .lpg--preset_1 .lpg__cell--1-1 { grid-column: 1; grid-row: 1; }
	   .lpg--preset_1 .lpg__cell--1-2 { grid-column: 1; grid-row: 2; }
	   .lpg--preset_1 .lpg__cell--1-3 { grid-column: 1; grid-row: 3; }
   
	   .lpg--preset_2 .lpg__grid {
		   grid-template-columns: 1fr;
		   grid-template-rows: auto auto;
		   min-height: 0;
	   }
   
	   .lpg--preset_2 .lpg__cell--2-1 { grid-column: 1; grid-row: 1; }
	   .lpg--preset_2 .lpg__cell--2-2 { grid-column: 1; grid-row: 2; }
   
	   .lpg--preset_3 .lpg__grid {
		   grid-template-columns: 1fr;
		   grid-template-rows: auto;
		   min-height: 0;
	   }
   
	   .lpg--preset_3 .lpg__cell--3-1 { grid-column: 1; grid-row: 1; }
	   .lpg--preset_3 .lpg__cell--3-2 { grid-column: 1; grid-row: 2; }
	   .lpg--preset_3 .lpg__cell--3-3 { grid-column: 1; grid-row: 3; }
	   .lpg--preset_3 .lpg__cell--3-4 { grid-column: 1; grid-row: 4; }
	   .lpg--preset_3 .lpg__cell--3-5 { grid-column: 1; grid-row: 5; }
   
	   .lpg--masonry .lpg__masonry-sizer {
		   width: calc((100% - var(--lpg-gap)) / 2);
	   }
   
	   .lpg--masonry .lpg__item {
		   width: calc((100% - var(--lpg-gap)) / 2);
	   }
   
	   .lpg--masonry .lpg__masonry:not(.lpg__masonry--initialized) {
		   column-count: 2;
	   }
   
	   /* Mosaic: 2 columns on top row for tablet */
	   .lpg--mosaic_3_1 .lpg__grid {
		   grid-template-columns: repeat(2, 1fr);
	   }
	   .lpg--mosaic_3_1 .lpg__cell--mosaic-bottom {
		   grid-column: 1 / -1;
	   }
   
	   /* Masonry Grid (Editorial): max 2 columns on tablet */
	   .lpg--masonry_grid .lpg__grid--masonry-editorial {
		   --lpg-cols: 2;
		   grid-auto-rows: minmax(140px, 1fr);
	   }
   }
   
   /* -----------------------------------------------------------------------------
	  Responsive: Mobile (≤600px)
	  ----------------------------------------------------------------------------- */
   
   @media (max-width: 600px) {
	   .lpg {
		   padding: calc(var(--lpg-gap) * 0.75);
	   }
   
	   /* Mosaic: stack all images vertically */
	   .lpg--mosaic_3_1 .lpg__grid {
		   grid-template-columns: 1fr;
		   grid-template-rows: auto;
	   }
	   .lpg--mosaic_3_1 .lpg__cell--mosaic-top,
	   .lpg--mosaic_3_1 .lpg__cell--mosaic-bottom,
	   .lpg--mosaic_3_1 .lpg__cell--mosaic-full {
		   grid-column: 1;
	   }
   
	   .lpg--masonry .lpg__masonry-sizer {
		   width: 100%;
	   }
   
	   .lpg--masonry .lpg__item {
		   width: 100%;
	   }
   
	   .lpg--masonry .lpg__masonry:not(.lpg__masonry--initialized) {
		   column-count: 1;
	   }
   
	   /* Masonry Grid (Editorial): single column on mobile */
	   .lpg--masonry_grid .lpg__grid--masonry-editorial {
		   --lpg-cols: 1;
		   grid-template-columns: 1fr;
		   grid-auto-rows: minmax(200px, auto);
	   }
	   .lpg--masonry_grid .lpg__cell--mg--large {
		   grid-row: span 1;
	   }
   }
   
   /* -----------------------------------------------------------------------------
	  Lightbox overlay (JS injects; scoped so only when block has data-lpg-lightbox)
	  ----------------------------------------------------------------------------- */
   
   .lpg-lightbox {
	   position: fixed;
	   inset: 0;
	   z-index: 999999;
	   background: rgba(0, 0, 0, 0.9);
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   padding: 2rem;
	   opacity: 0;
	   visibility: hidden;
	   transition: opacity 0.25s ease, visibility 0.25s ease;
   }
   
   .lpg-lightbox.is-open {
	   opacity: 1;
	   visibility: visible;
   }
   
   .lpg-lightbox__inner {
	   position: relative;
	   max-width: 90vw;
	   max-height: 90vh;
   }
   
   .lpg-lightbox__img {
	   max-width: 100%;
	   max-height: 85vh;
	   object-fit: contain;
	   display: block;
   }
   
   .lpg-lightbox__caption {
	   text-align: center;
	   color: #fff;
	   margin-top: 0.75rem;
	   font-size: 0.95rem;
   }
   
   .lpg-lightbox__close {
	   position: absolute;
	   top: -2.5rem;
	   right: 0;
	   background: transparent;
	   border: 0;
	   color: #fff;
	   font-size: 2rem;
	   line-height: 1;
	   cursor: pointer;
	   padding: 0.25rem;
   }
   
   .lpg-lightbox__close:hover,
   .lpg-lightbox__close:focus {
	   opacity: 0.9;
   }
   
   .lpg-lightbox__prev,
   .lpg-lightbox__next {
	   position: absolute;
	   top: 50%;
	   transform: translateY(-50%);
	   background: rgba(255,255,255,0.2);
	   border: 0;
	   color: #fff;
	   width: 48px;
	   height: 48px;
	   font-size: 1.5rem;
	   cursor: pointer;
   }
   
   .lpg-lightbox__prev { left: -60px; }
   .lpg-lightbox__next { right: -60px; }
   
   @media (max-width: 600px) {
	   .lpg-lightbox__prev { left: 0.5rem; }
	   .lpg-lightbox__next { right: 0.5rem; }
   }

   /* -----------------------------------------------------------------------------
	  Video overlay: full-width autoplay (play button → overlay)
	  ----------------------------------------------------------------------------- */
   .lpg-video-overlay {
	   position: fixed;
	   inset: 0;
	   z-index: 999999;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   padding: 1rem;
	   opacity: 0;
	   visibility: hidden;
	   transition: opacity 0.25s ease, visibility 0.25s ease;
   }
   .lpg-video-overlay--open {
	   opacity: 1;
	   visibility: visible;
   }
   .lpg-video-overlay--animate.lpg-video-overlay--open {
	   transition: opacity 0.3s ease, visibility 0.3s ease;
   }
   @media (prefers-reduced-motion: reduce) {
	   .lpg-video-overlay,
	   .lpg-video-overlay--animate { transition: none; }
   }
   .lpg-video-overlay__backdrop {
	   position: absolute;
	   inset: 0;
	   background: rgba(0, 0, 0, 0.85);
	   cursor: pointer;
   }
   .lpg-video-overlay__inner {
	   position: relative;
	   width: 100%;
	   max-width: 1200px;
	   aspect-ratio: 16 / 9;
	   max-height: calc(100vh - 4rem);
	   z-index: 1;
	   display: flex;
	   align-items: center;
	   justify-content: center;
   }
   .lpg-video-overlay__player {
	   width: 100%;
	   height: 100%;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   background: #000;
	   border-radius: 4px;
	   overflow: hidden;
   }
   .lpg-video-overlay__iframe,
   .lpg-video-overlay__video {
	   width: 100%;
	   height: 100%;
	   border: 0;
	   display: block;
	   object-fit: contain;
   }
   .lpg-video-overlay__close {
	   position: absolute;
	   top: -2.5rem;
	   right: 0;
	   background: rgba(255, 255, 255, 0.15);
	   border: 0;
	   color: #fff;
	   width: 44px;
	   height: 44px;
	   font-size: 1.75rem;
	   line-height: 1;
	   cursor: pointer;
	   border-radius: 50%;
	   z-index: 2;
	   transition: background 0.2s ease;
   }
   .lpg-video-overlay__close:hover,
   .lpg-video-overlay__close:focus {
	   background: rgba(255, 255, 255, 0.3);
	   outline: 2px solid #fff;
	   outline-offset: 2px;
   }
   @media (max-width: 600px) {
	   .lpg-video-overlay { padding: 0.5rem; }
	   .lpg-video-overlay__inner {
		   max-height: calc(100vh - 2rem);
	   }
	   .lpg-video-overlay__close {
		   top: 0.5rem;
		   right: 0.5rem;
		   width: 40px;
		   height: 40px;
		   font-size: 1.5rem;
	   }
   }

/* Layout Photo Gallery */

/* Section Title Our Story */
/**
 * Block: Section Title – Our Story
 * Minimal section heading: subtitle (uppercase, letter-spacing) + title. Centered by default.
 * Scoped under .section-title-our-story
 *
 * @package sarantaporo
 */

 .section-title-our-story {
	box-sizing: border-box;
	width: 100%;
	padding: 2rem 1.25rem;
}

.section-title-our-story__inner {
	max-width: 720px;
	margin: 0 auto;
}

/* Alignment: left */
.section-title-our-story--align-left .section-title-our-story__inner {
	margin-left: 0;
	margin-right: auto;
}

.lpg--featured_only {
	margin-top: 0;
}

/* Alignment: center (default) */
.section-title-our-story--align-center .section-title-our-story__inner {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-title-our-story__subtitle {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 300;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	line-height: 1.3;
	color: currentColor;
	opacity: 0.85;
}

.section-title-our-story__title {
	margin: 0;
    font-size: 42px;
    line-height: 1.2;
    color: inherit;
}

.section-title-our-story--align-left .section-title-our-story__subtitle,
.section-title-our-story--align-left .section-title-our-story__title {
	text-align: left;
}

/* Responsive */
@media (min-width: 768px) {
	.section-title-our-story {
		padding: 3rem 2rem;
	}

	.section-title-our-story__subtitle {
		margin-bottom: 0.65rem;
		font-size: 11px;
	}
}

@media (min-width: 1024px) {
	.section-title-our-story {
		padding: 4rem 2rem;
	}
}
/* Section Title Our Story */

.archive .vp-page--container-normal .vp-content-area__inner {
	max-width: 840px;
}
