/**
 * Sul’sul’tun Landing Page
 * Artwork Information Modals
 * Page ID: 254177
 */


/* ==========================================================
   ARTWORK IMAGE WRAPPER
   ========================================================== */

/*
 * Standard artwork images.
 * Inline-block keeps the info button positioned
 * against the actual displayed artwork dimensions.
 */
.page-id-254177 .sulsultun-artwork .et_pb_image_wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
}


/*
 * Logo artwork.
 *
 * Important:
 * Do NOT force inline-block or width behaviour here.
 * The logo uses its existing Divi layout.
 */
.page-id-254177 .artwork-logo .et_pb_image_wrap {
	position: relative;
}


/* ==========================================================
   STANDARD INFO BUTTON
   ========================================================== */

.page-id-254177 .sulsultun-artwork .sl-art-info {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	border: 2px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	background: rgba(34, 61, 72, 0.45);
	color: #ffffff;
	font-size: 24px;
	font-weight: 600;
	font-style: normal;
	line-height: 1;

	appearance: none;
	-webkit-appearance: none;

	cursor: pointer;

	box-shadow:
		0 2px 8px rgba(0, 0, 0, 0.12);

	transition:
		transform 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}


.page-id-254177 .sulsultun-artwork .sl-art-info:hover {
	transform: scale(1.08);

	background: rgba(34, 61, 72, 0.88);

	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.18);
}


.page-id-254177 .sulsultun-artwork .sl-art-info:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 3px;
}


.page-id-254177 .sulsultun-artwork .sl-art-info span {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
}


/* ==========================================================
   LIGHT INFO BUTTON
   Thunderbird artwork
   ========================================================== */

.page-id-254177 .artwork-thunderbird .sl-art-info {
	border-color: #506b73;
	background: rgba(255, 255, 255, 0.82);
	color: #506b73;
}


.page-id-254177 .artwork-thunderbird .sl-art-info:hover {
	border-color: #506b73;
	background: #506b73;
	color: #ffffff;
}


/* ==========================================================
   LOGO INFO BUTTON
   Matches Thunderbird style
   ========================================================== */

.page-id-254177 .artwork-logo .sl-art-info {
	position: absolute;
	right: 80px;
	bottom: 80px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	border: 2px solid #506b73;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	color: #506b73;
	font-size: 24px;
	font-weight: 600;
	font-style: normal;
	line-height: 1;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	box-shadow:
		0 2px 8px rgba(0, 0, 0, 0.12);
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.page-id-254177 .artwork-logo .sl-art-info:hover {
	transform: scale(1.08);
	border-color: #506b73;
	background: #506b73;
	color: #ffffff;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.18);
}


.page-id-254177 .artwork-logo .sl-art-info:focus-visible {
	outline: 3px solid #506b73;
	outline-offset: 3px;
}

.page-id-254177 .artwork-logo .sl-art-info span {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
}


/* ==========================================================
   MODAL
   ========================================================== */

.sl-art-modal {
	position: fixed;
	inset: 0;
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;

	padding: 32px;

	visibility: hidden;
	opacity: 0;
	pointer-events: none;

	transition:
		opacity 220ms ease,
		visibility 220ms ease;
}


.sl-art-modal.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}


/* ----------------------------------------------------------
   BACKDROP
   ---------------------------------------------------------- */

.sl-art-modal__backdrop {
	position: absolute;
	inset: 0;

	background: rgba(18, 31, 36, 0.92);

	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}


/* ----------------------------------------------------------
   DIALOG
   ---------------------------------------------------------- */

.sl-art-modal__dialog {
	position: relative;
	z-index: 2;

	width: min(900px, 100%);
	max-height: calc(100vh - 64px);

	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;

	padding: 50px 52px;

	border-radius: 22px;

	background: #3a5561;
	color: #ffffff;

	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.35);
}


/* ==========================================================
   CLOSE BUTTON
   ========================================================== */

.sl-art-modal__close {
	position: absolute;
	top: 16px;
	right: 18px;
	z-index: 3;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 42px;
	height: 42px;

	padding: 0;
	margin: 0;

	border: 0;
	border-radius: 50%;

	background: transparent;
	color: #ffffff;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: 300;
	line-height: 1;

	appearance: none;
	-webkit-appearance: none;

	cursor: pointer;

	transition:
		background-color 180ms ease,
		transform 180ms ease;
}


.sl-art-modal__close:hover {
	background: rgba(255, 255, 255, 0.09);
	transform: scale(1.04);
}


.sl-art-modal__close:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 2px;
}


/* ==========================================================
   MODAL CONTENT
   ========================================================== */

.sl-art-modal__content {
	width: 100%;
	max-width: 780px;
}


.sl-art-modal__content p {
	margin: 0 0 20px;

	color: rgba(255, 255, 255, 0.92);

	font-size: 19px;
	line-height: 1.5;
}


.sl-art-modal__content p:last-child {
	margin-bottom: 0;
}


/* ----------------------------------------------------------
   ARTWORK TITLE
   ---------------------------------------------------------- */

.sl-art-modal__artwork h2 {
	margin: 0 0 18px;
	padding: 0;

	color: #ffffff;

	font-size: clamp(26px, 3.25vw, 40px);
	font-weight: 500;
	line-height: 1.15;
}


/* ----------------------------------------------------------
   SECONDARY HEADING
   ---------------------------------------------------------- */

.sl-art-modal__artwork h3 {
	margin: 34px 0 14px;
	padding: 0;

	color: #ffffff;

	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
}


/* ----------------------------------------------------------
   SUBTITLE
   ---------------------------------------------------------- */

.sl-art-modal__subtitle {
	margin-top: -10px !important;
	margin-bottom: 26px !important;

	font-size: 18px !important;
	line-height: 1.45 !important;

	opacity: 0.82;
}


/* ----------------------------------------------------------
   ARTIST CREDIT
   ---------------------------------------------------------- */

.sl-art-modal__credit {
	margin-top: 26px !important;
	margin-bottom: 0 !important;

	font-size: 17px !important;
	font-weight: 600;

	opacity: 0.88;
}


/* ----------------------------------------------------------
   PREVENT PAGE SCROLL BEHIND MODAL
   ---------------------------------------------------------- */

body.sl-art-modal-open {
	overflow: hidden;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 980px) {

	.sl-art-modal {
		padding: 24px;
	}


	.sl-art-modal__dialog {
		max-height: calc(100vh - 48px);

		padding:
			46px
			40px
			40px;
	}

}
/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.page-id-254177 .sulsultun-artwork .sl-art-info {
		left: 12px;
		bottom: 12px;
		width: 28px;
		height: 28px;
		font-size: 20px;
	}
	.page-id-254177 .artwork-logo .sl-art-info {
		right: 32px;
		bottom: 42px;
		width: 28px;
		height: 28px;
		font-size: 20px;
	}
	.sl-art-modal {
		align-items: flex-end;
		padding: 10px;
	}
	.sl-art-modal__dialog {
		width: 100%;
		max-height: 90vh;
		padding:
			48px
			24px
			28px;
		border-radius:
			22px 22px 12px 12px;
	}
	.sl-art-modal__close {
		top: 10px;
		right: 10px;
	}
	.sl-art-modal__content p {
		margin-bottom: 17px;
		font-size: 16px;
		line-height: 1.6;
	}
	.sl-art-modal__artwork h2 {
		margin-bottom: 18px;
		font-size: 28px;
	}
	.sl-art-modal__artwork h3 {
		margin-top: 28px;
		font-size: 19px;
	}
	.sl-art-modal__subtitle {
		margin-top: -8px !important;
		margin-bottom: 22px !important;
		font-size: 16px !important;
	}
	.sl-art-modal__credit {
		margin-top: 22px !important;
		font-size: 15px !important;
	}

}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.sl-art-modal,
	.sl-art-modal__close,
	.page-id-254177 .sulsultun-artwork .sl-art-info,
	.page-id-254177 .artwork-logo .sl-art-info {
		transition: none;
	}
}

/* ==========================================================
   SUL'SUL'TUN VIDEO MOCKUP
   ========================================================== */

.sulsultun-video-mockup {
	position: relative;
	width: 100%;

	/* Video/screen proportion */
	aspect-ratio: 16 / 9;

	overflow: hidden;

	box-shadow: 0 12px 32px rgba(58, 85, 97, 0.14);
}


/* ==========================================================
   VIDEO SCREEN
   ========================================================== */

.sulsultun-video-mockup__screen {
	position: absolute;
	inset: 0;
	z-index: 1;

	overflow: hidden;
	background: transparent;
}


/* ==========================================================
   REMOVE DIVI / FITVIDS SIZING
   ========================================================== */

.sulsultun-video-mockup__screen .fluid-width-video-wrapper {
	position: absolute !important;
	inset: 0 !important;

	width: 100% !important;
	height: 100% !important;

	padding: 0 !important;
	margin: 0 !important;
}


/* ==========================================================
   VIMEO
   ========================================================== */

.sulsultun-video-mockup__screen iframe,
.sulsultun-video-mockup__screen .fluid-width-video-wrapper iframe {
	position: absolute !important;

	top: 50% !important;
	left: 50% !important;

	width: 100% !important;
	height: 100% !important;

	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;

	transform: translate(-50%, -50%) !important;

	pointer-events: none;
}


/* ==========================================================
   SVG BROWSER CHROME
   ========================================================== */

.sulsultun-video-mockup__frame {
	position: absolute;

	top: 0;
	left: 0;
	z-index: 2;

	display: block;

	width: 100%;
	height: auto;

	pointer-events: none;
}

.sulsultun-video-mockup {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;

	border-radius: 18px 18px 0 0;

	box-shadow: 0 12px 32px rgba(58, 85, 97, 0.14);
}