﻿/*
 * ================================================================
 *  promotional-landing-page.css
 *  Promotional Landing Page — page template styles
 *  Mobile-first (min-width breakpoints)
 * ================================================================
 *
 * ████████████████████████████████████████████████████████████████
 *  SECTION 1 — EDIT THESE PLACEHOLDER VALUES
 * ████████████████████████████████████████████████████████████████
 *
 *  Step 1 → Open images/plp-swoosh.svg
 *           Edit the two stop-color values inside <linearGradient>.
 *
 *  Step 2 → Copy those exact hex values into the two gradient
 *           custom properties below so the page background
 *           blends seamlessly into the swoosh.
 *
 *  Step 3 → Choose button colours and set --plp-btn-bg and
 *           --plp-btn-color.
 *
 * ████████████████████████████████████████████████████████████████
 */

@font-face {
	font-family: 'Cera Stencil Basic';
	src: url('fonts/cerastencilbasicthin.otf') format('opentype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Omnes';
	src: url('fonts/._omnes regular.ttf') format('truetype'),
		url('fonts/Omnes.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Omnes';
	src: url('fonts/._omnes semibold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Omnes';
	src: url('fonts/._omnes medium.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
    /* Core colours */
	--color-dark-blue:       #000029;
	--color-dark-blue-mid:   #0b113c;
	--color-blue-accent:     #2d29f5;
	--color-light-blue:      #39bae9;
	--color-green:           #00ff93;

	/* ── PAGE GRADIENT ─────────────────────────────────────────── */
	/* EDIT HERE ↓  Match this to the swoosh's first stop-color (left/top) */
	--plp-gradient-start: #00FF93;

	/* EDIT HERE ↓  Match this to the swoosh's second stop-color (right), or
	   choose a darker shade for the page to fade down to               */
	--plp-gradient-end:   #25D3FA;

	/* ── BOOK NOW BUTTON ───────────────────────────────────────── */
	/* EDIT HERE ↓  Button background fill colour */
	--plp-btn-bg:         var(--color-dark-blue-mid);

	/* EDIT HERE ↓  Button label text colour */
	--plp-btn-color:      #ffffff;

	/* ── NAVBAR ────────────────────────────────────────────────── */
	--plp-nav-height: 64px;   /* navbar height (xs-mobile-box hidden by default, visible on sticky) */

	/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
	--font-body:            'Omnes', 'Ubuntu', sans-serif;
	--font-weight-semibold: 600;
}


/* ================================================================
   SUPPRESS DEFAULT SITE HEADER & RESET CONTENT WRAPPER
   (the plp-template body class is added by the inc file)
   ================================================================ */
.plp-template .site-header {
	display: none !important;
	height: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
}

.plp-template #content.site-content {
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}


/* ================================================================
   PAGE WRAPPER
   ================================================================ */
.promotional-landing-page {
	background: linear-gradient(
		90deg,
		var(--plp-gradient-start) 0%,
		var(--plp-gradient-end)   100%
	);
	min-height: 100vh;
	position: relative;
}


/* ================================================================
   NAVBAR  (exact copy of ms-2026, only body class differs)
   ================================================================ */

.plp-template .site-header {
	padding: 0;
	background-image: none !important;
	background: transparent !important;
}

.plp-template header .site-title a {
  background-image: url('../images/hearology-logo-white.png') !important;
}
.plp-template header .header-menu-block.sticky .site-title a {
  background-image: url('../images/hearology-logo-black.png');
}

/* =====================================================
   V2 Bootstrap Navbar — scoped to plp-template
   ===================================================== */

.plp-template .navbar {
	padding-left: 0;
	padding-right: 0;
}

.plp-template .navbar .container {
	margin: 0; /*0px 20px;*/
	max-width: 100% !important;
}


.plp-template .navbar.bg-light {
	background-color: transparent !important;
	z-index: 99;
	transition: ease 0.5s;
}

.plp-template .navbar.bg-light.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff !important;
	transition: ease 0.5s;
	box-shadow: 0 2px 4px 0 rgba(0, 7, 31, 0.05);
	flex-wrap: wrap;
	will-change: transform;
}

.plp-template .navbar.sticky .navbar-nav .nav-item .nav-link {
	color: #5d6271;
}

.plp-template .navbar.sticky .navbar-nav .nav-item .nav-link p {
	margin-bottom: 0;
}

/* Brand / Logo */
.plp-template .navbar .navbar-brand img {
	width: clamp(140px, 28vw, 211px);
	height: auto;
	max-height: 60px;
	object-fit: contain;
}

.plp-template .navbar .navbar-brand .sticky-log {
	display: none;
}

.plp-template .navbar.sticky .navbar-brand .default {
	display: none;
}

.plp-template .navbar.sticky .navbar-brand .sticky-log {
	display: inline-block;
}

@media screen and (min-width: 769px) {
	.plp-template .navbar .navbar-brand {
		display: inline-block !important;
	}
}

/* Outline Circle Shape — gradient numbered badges */
.plp-template .outline-circle-shape {
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 50px;
	font-size: 24px;
	font-weight: 500;
	font-family: 'Omnes';
	background-image: linear-gradient(to bottom, #25d3fa, var(--color-green)) !important;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 9;
}

body.plp-template.iphone-dev .outline-circle-shape {
	-webkit-text-fill-color: #41d7f8 !important;
}

.plp-template .outline-circle-shape:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('images-v2/circle.webp');
	background-size: 100% 100%;
	z-index: -1;
	transition: ease 0.5s;
}

/* Call-Us block */
.plp-template .navbar.sticky .navbar-collapse .call-us {
	display: inline-flex;
	border-radius: 32px;
}

.plp-template .navbar .navbar-collapse .call-us {
	display: none;
	width: 183px;
	height: 50px;
	border: solid 1px rgba(93, 98, 113, 0.1);
	background-color: rgba(93, 98, 113, 0.05);
}

.plp-template .navbar .navbar-collapse .call-us p {
	width: 82px;
	font-size: 12px;
	color: #00071f;
}

.plp-template .navbar .navbar-collapse .call-us .phone-icon {
	width: 40px;
	height: 40px;

    margin-left: 3px;
	margin-right: 10px;

	text-align: center;
    line-height: 50px;
    border-radius: 50px;
    background-color: var(--color-green);
}

/* Nav Links */
.plp-template .navbar .navbar-nav .nav-item .nav-link {
	font-size: 12px;
	line-height: normal;
	color: #fff;
}

.plp-template .navbar .navbar-nav .nav-item .nav-link p {
	margin-bottom: 0;
}

/* Dropdown Toggle */
.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle {
	min-width: auto;
	max-width: 200px;
	white-space: normal;
	padding-left: 40px;
	padding-right: 25px;
	padding-top: 11px;
	display: inline-flex;
	align-items: center;
	font-family: 'ubuntumedium';
}

.plp-template .navbar .navbar-nav {
	flex-direction: row;
	justify-content: end;
}

.plp-template .navbar-collapse {
	flex-basis: auto;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle .selected-text {
	text-transform: uppercase;
	color: var(--color-dark-blue);
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .outline-circle-shape {
	position: absolute;
	top: 0;
	left: 0;
}

/* Clinics dropdown — uses the same shape sizing rules as nav dropdown */
.plp-template .navbar .navbar-nav .clinics-dropdown .clinics-circle-shape:after,
.plp-template .navbar .sticky .navbar-nav .clinics-dropdown .clinics-circle-shape:after {
	background-image: url('images-v2/clinic-circle.svg') !important;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
	content: '';
	background-image: url('../images/arrow-down-dark-blue.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	position: static;
	display: inline-block;
	margin-left: 5px;
	border: 0 !important;
	transition: ease 0.4s;
}

.plp-template .navbar .collapse:not(.show) {
	display: block;
}

/* Dropdown Menu */
.plp-template .navbar .navbar-nav .nav-item.dropdown.show .dropdown-toggle::after {
	transform: rotate(180deg);
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
	top: 65px;
	right: 0;
	left: auto;
	width: 600px;
	border-radius: 0;
	background-color: #fff;
	z-index: 99;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
	display: inline-flex;
	flex-direction: column;
	position: fixed !important;
	width: 100%;
	min-width: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	top: 64px;
	padding-bottom: 65px;
	max-height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}

/* Dropdown Items */
.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	position: relative;
	padding: 10px;
	border-bottom: 1px solid #e5e6e8;
	font-size: 14px;
	color: #5d6271;
	font-family: 'ubuntumedium';
	white-space: normal;
	padding-left: 70px;
	min-height: 70px;
	text-transform: uppercase;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item p {
	margin-bottom: 0;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .col-md-6 .dropdown-item:last-child {
	border-bottom: 0;
}

/* When dropdown columns stack, keep a divider at the split point (e.g. item 7/8). */
.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .col-md-6:first-child .dropdown-item:last-child {
	border-bottom: 1px solid #e5e6e8;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item .outline-circle-shape {
	top: auto;
	left: 10px;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
	background: linear-gradient(to right, #25d3fa 0%, var(--color-green) 100%);
	border-radius: 8px;
	color: #fff;
	border-color: transparent;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover .outline-circle-shape {
	color: #fff;
	background-image: none;
	-webkit-text-fill-color: #fff;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover .outline-circle-shape:after {
	background-image: url('images-v2/circle-hover.webp');
}

/* xs-mobile-box — hidden by default, shown only on sticky */
.plp-template .xs-mobile-box {
	display: none;
	width: 100%;
	padding: 12px 16px;
	background-color: #f7f8fa;
	box-sizing: border-box;
}

.plp-template .navbar.sticky .xs-mobile-box {
	display: block;
}

.plp-template .xs-mobile-box__inner {
	display: flex;
	align-items: center;
	gap: 20px;
}

.plp-template .xs-mobile-box__inner > * {
	flex: 1 1 0%;
	min-width: 0;
}

.plp-template .navbar .navbar-brand {
	display: inline-block;
}

.plp-template .navbar .navbar-brand img {
	width: clamp(140px, 28vw, 211px);
	height: auto;
	max-height: 60px;
	object-fit: contain;
}

.plp-template .navbar .outline-circle-shape {
	width: 35px;
	height: 35px;
	font-size: 14px;
}

.plp-template .navbar .navbar-collapse .call-us p {
	font-size: 11px;
}

.plp-template .navbar.sticky .navbar-collapse .call-us {
	display: none;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
	padding-top: 0;
}

.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .col-md-6 {
	flex: none;
	width: 100%;
	max-width: 100%;
}

.plp-template .navbar .xs-mobile-box .call-us {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 5px 12px;
	margin: 0 !important;
	border-radius: 10px;
	border: solid 1px rgba(93, 98, 113, 0.1);
	background-color: rgba(93, 98, 113, 0.05);
	box-sizing: border-box;
	text-decoration: none;
}

.plp-template .navbar .xs-mobile-box .call-us .phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-left: 3px;
	margin-right: 10px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	background-color: #00ff93;
}

.plp-template .navbar .xs-mobile-box .call-us p {
	width: auto;
	font-size: 12px;
	color: #00071f;
	margin-bottom: 0;
}

.plp-template .navbar .xs-mobile-box .btn.btn-theme {
	display: flex;
	align-items: center;
	justify-content: center;
}

.plp-template .outline-circle-shape {
	padding-top: 0;
}

.plp-template .btn.btn-theme {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #25d3fa;
	border-radius: 10px;
	height: 50px;
	font-size: 14px;
	line-height: 1.15;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: ease all 0.5s;
}

.plp-template .btn.btn-theme:hover {
	background-color: #000;
	box-shadow: 0 0 0;
}

/* =====================================================
   Responsive — 576px+
   ===================================================== */
@media (min-width: 576px) {
	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle {
		padding-left: 60px;
		max-width: 240px;
	}

	.plp-template .navbar .outline-circle-shape {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.plp-template .navbar .navbar-collapse .call-us p {
		font-size: 12px;
	}
}

/* =====================================================
   Responsive — 651px+
   ===================================================== */
@media (min-width: 651px) {
	.plp-template .navbar.sticky .navbar-collapse .call-us {
		display: inline-flex;
		border-radius: 32px;
	}

	.plp-template .navbar .navbar-nav .nav-item .nav-link {
		font-size: 14px;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		position: absolute !important;
		overflow-y: auto;
		width: 300px;
		min-width: 300px;
		right: -16px;
		left: auto;
		top: 53px;
		height: auto !important;
		padding-bottom: 0;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .col-md-6 {
		flex: 0 0 100%;
	}

}

/* =====================================================
   Responsive — 769px+
   ===================================================== */
@media (min-width: 769px) {
	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle {
		min-width: 240px;
		max-width: none;
		padding-top: 16px;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle::after {
		margin-left: 5px;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .outline-circle-shape {
		top: -3px;
	}
}

/* =====================================================
   Responsive — 992px+
   ===================================================== */
@media (min-width: 992px) {
	.plp-template .navbar .navbar-nav .nav-item.dropdown .outline-circle-shape {
		top: 0;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-toggle {
		padding-top: 16px;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
		position: absolute !important;
		display: inline-flex;
		flex-direction: row;
		overflow-y: visible;
		width: 600px;
		min-width: 600px;
		right: 0;
		left: auto;
		height: auto;
		top: 65px;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .col-md-6 {
		width: 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.plp-template .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show .col-md-6:first-child .dropdown-item:last-child {
		border-bottom: 0;
	}
}


/* =====================================================
   Mobile — hide BOOK NOW until sticky
   (below Bootstrap lg = 992px)
   ===================================================== */
@media (max-width: 650px) {
	.plp-template .navbar:not(.sticky) .navbar-collapse .btn.btn-theme {
		display: none;
	}
}


/* ================================================================
   HERO BANNER
   ================================================================ */
.plp-hero {
	position: relative;
	overflow: hidden;
	margin-top: 0; /* navbar is position:fixed + transparent, floats over the hero */
}

/* Background image — full width, natural height (no cropping) */
.plp-hero__bg {
	width: 100%;
	height: auto;
	display: block;
}

/* SVG swoosh — anchored to the bottom half */
.plp-hero__swoosh {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;   /* top edge of swoosh = midpoint of banner */
	display: block;
}

/*
 * Hearing aid device image
 *
 * EDIT THE VALUES BELOW to position/size the PNG on the swoosh.
 * All values are % of the .plp-hero container, so the device
 * stays anchored to the same spot on the swoosh at every viewport.
 *
 * right  → distance from the right edge of the banner
 * bottom → distance from the bottom of the banner (use ~8–15% to
 *           sit comfortably on the swoosh)
 * width  → size of the device image
 */
.plp-hero__device {
	position: absolute;
	right:  5%;    /* EDIT: horizontal position from right  */
	bottom: 8%;    /* EDIT: vertical position from bottom   */
	width:  30%;   /* EDIT: size relative to banner width   */
	height: auto;
	display: block;
}

@media (min-width: 768px) {
	.plp-hero__device {
		right:  5%;
		bottom: 10%;
		width:  22%;
	}
}

@media (min-width: 1200px) {
	.plp-hero__device {
		right:  6%;
		bottom: 12%;
		width:  20%;
	}
}


/* ================================================================
   BODY COPY
   ================================================================ */
.plp-body {
    position: relative;
    z-index: 2;
	padding: 0 24px 40px;
}

.plp-body__inner {
	max-width: 800px;
	margin: 0 auto;
}

/* Body text — inherits page gradient background */
.plp-body__content {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--color-dark-blue-mid);
}

.plp-body__content p {
	margin-bottom: 1.25em;
}

.plp-body__content h1,
.plp-body__content h2,
.plp-body__content h3,
.plp-body__content h4 {
	color: var(--color-dark-blue-mid);
	margin-bottom: 0.5em;
}

/* BOOK NOW button */
.plp-body__cta-wrap {
	margin-top: 32px;
	text-align: center;
}

.plp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--plp-btn-bg);
	color: var(--plp-btn-color);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 40px;
	border-radius: 10px;
	border: none;
	transition: opacity 0.2s ease, transform 0.15s ease;
	cursor: pointer;
}

.plp-btn:hover,
.plp-btn:focus,
.plp-btn:visited {
	text-decoration: none;
    color: var(--color-green);
}

@media (min-width: 768px) {
	.plp-body {
		padding: 0 40px 40px;
	}

}

@media (min-width: 992px) {
	.plp-body {
		padding: 0 40px 40px;
	}
}


/* ================================================================
   FAQ DROPDOWN
   ================================================================ */

.plp-body__faq {
	margin-top: 40px;
}

.plp-body__video {
	margin-top: 40px;
}

.plp-body__video-title {
	margin: 0 0 24px;
	text-align: center;
	color: var(--color-dark-blue-mid);
}

.plp-video {
	max-width: 100%;
	margin: 0 auto;
}

.plp-video__ratio {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	border-radius: 18px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 18px 44px rgba(0, 7, 31, 0.24);
}

.plp-video__ratio iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.plp-body__faq-title {
	margin: 0 0 24px;
	text-align: center;
}

.plp-body__faq[data-faq-section],
.plp-body__faq-title[data-faq-title] {
	scroll-margin-top: calc( var(--plp-nav-height) + 24px );
}

body.plp-template .plp__faq-accordion {
	background: var(--color-dark-blue);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(0, 7, 31, 0.24);
}

body.plp-template .plp__faq-item {
	border-bottom: 1px solid var(--color-dark-blue-mid);
}

body.plp-template .plp__faq-item:last-child {
	border-bottom: 0;
}

body.plp-template .plp__faq-heading {
	margin: 0;
}

body.plp-template .plp__faq-question {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 16px;
	width: 100%;
	padding: 22px 24px;
	border: 0;
	background: transparent;
	font-family: var(--font-body);
	font-size: 20px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
	text-align: left;
	color: var(--color-light-blue);
	cursor: pointer;
	transition: background-color 0.2s ease;
}
body.plp-template .plp__faq-question:hover {
	background-color: rgba(57, 186, 233, 0.08);
}

body.plp-template .plp__faq-question:focus-visible {
	outline: 2px solid var(--color-light-blue);
	outline-offset: -2px;
}

body.plp-template .plp__faq-question-text {
	min-width: 0;
	word-break: break-word;
}

body.plp-template .plp__faq-chevron {
	position: relative;
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-light-blue);
	border-radius: 50%;
	transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
	flex-shrink: 0;
}

body.plp-template .plp__faq-chevron::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid var(--color-light-blue);
	border-bottom: 2px solid var(--color-light-blue);
	transform: translate(-50%, -62%) rotate(45deg);
	transition: border-color 0.3s ease;
}

body.plp-template .plp__faq-item.is-open .plp__faq-chevron {
	transform: rotate(180deg);
	background-color: var(--color-light-blue);
	border-color: var(--color-light-blue);
}

body.plp-template .plp__faq-item.is-open .plp__faq-chevron::before {
	border-color: var(--color-dark-blue-mid);
}

body.plp-template .plp__faq-answer {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.3s ease, opacity 0.25s ease;
	will-change: height;
}

body.plp-template .plp__faq-item.is-open .plp__faq-answer {
	opacity: 1;
}

body.plp-template .plp__faq-answer-content {
	padding: 0 24px 22px 24px;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
}

body.plp-template .plp__faq-answer-content > :first-child {
	margin-top: 0;
}

body.plp-template .plp__faq-answer-content > :last-child {
	margin-bottom: 0;
}

body.plp-template .plp__faq-answer-content p,
body.plp-template .plp__faq-answer-content li {
	color: inherit;
}

body.plp-template .plp__faq-answer-content a {
	color: #ffffff;
	text-decoration: underline;
}

@media all and (max-width: 680px) {
	.plp-body__video-title {
		margin-bottom: 18px;
	}

	.plp-video__ratio {
		border-radius: 12px;
	}
}

body.plp-template .plp__faq-answer-content ul,
body.plp-template .plp__faq-answer-content ol {
	margin: 0 0 1em 1.2em;
	padding: 0;
}

@media all and (max-width: 680px) {
	.plp-body__faq-title {
		margin-bottom: 18px;
	}

	body.plp-template .plp__faq-question {
		padding: 18px 16px;
		column-gap: 12px;
		font-size: 18px;
	}

	body.plp-template .plp__faq-chevron {
		width: 32px;
		height: 32px;
	}

	body.plp-template .plp__faq-answer-content {
		padding: 0 16px 18px 16px;
		font-size: 16px;
	}
}


/* ================================================================
   GALLERY  (sits at the top of the body section)
   ================================================================ */

/*
 * ── GALLERY NUDGE ────────────────────────────────────────────────
 *  Increase --plp-gallery-nudge to push the row further up into
 *  the swoosh. Positive values move it UP (translateY is negative).
 *  0px = flush with the top of the body section.
 *
 *  Tune per-breakpoint inside the @media blocks below.
 * ────────────────────────────────────────────────────────────────
 */
:root {
	--plp-gallery-nudge: 8.33vw;   /* xs   — EDIT to nudge into swoosh */
}

/* Outer wrapper — handles nudge offset */
.plp-gallery {
	position: relative;
	z-index: 3;
	padding: 0 clamp(8px, 2vw, 24px);
	transform: translateY(calc(-1 * var(--plp-gallery-nudge)));
	margin-bottom: calc(32px - var(--plp-gallery-nudge)); /* spacing below gallery */
}

/* Inner row — single flex row, centred */
.plp-gallery__grid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: clamp(6px, 1.5vw, 20px);
}

.plp-gallery__item img {
	width: clamp(48px, 10vw, 138px);
	height: clamp(48px, 10vw, 138px);
	object-fit: contain;
	display: block;
	border-radius: 4px;
}


/* ================================================================
   FOOTER — white site-info bar, mirrors ms-2026 exactly
   ================================================================ */
.plp-footer {
	background-color: #fff;
    padding: 0;
}

.plp-footer .site-info {
	padding: 0;
}

.plp-footer .site-info .max-width {
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 10px;
	border-top: 1px solid rgba(93, 98, 113, 0.1);
}

/*
 * Override the base-theme global .site-title rules
 * (style.css sets width:350px, height:118px, background: logo-white.png)
 * We must re-assert the ms-2026 dimensions and logo here.
 */
.plp-template .plp-footer .site-info .site-title {
	float: left !important;
	width: 200px !important;
	height: 58px !important;
	margin: 0 !important;
	padding-top: 0 !important;
}

.plp-template .plp-footer .site-info .site-title a {
	display: block !important;
	width: 200px !important;
	height: 58px !important;
	overflow: hidden !important;
	background: url('../images/hearology-logo-black.png') left center no-repeat !important;
	background-size: contain !important;
	color: transparent !important;
	text-indent: -9999px !important;
	text-decoration: none;
}

/* Copyright — float right, dark text, matches ms-2026 */
.plp-footer .site-info .copyright {
	float: right;
	margin: 0;
	padding-top: 22px;
	color: #5d6271;
	font-size: 0.875rem;
}

.plp-footer .site-info a {
	color: #5d6271;
	text-decoration: none;
}

.plp-footer .site-info a:hover {
	color: #000;
	text-decoration: underline;
}

/* Mobile <700px — matches ms-2026 stacked layout */
@media screen and (max-width: 700px) {
	.plp-footer .site-info .max-width {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 12px;
		text-align: center;
		border-top: 0;
		padding: 30px 20px;
	}

	.plp-template .plp-footer .site-info .site-title {
		float: none !important;
		margin: 0 auto !important;
	}

	.plp-footer .site-info .copyright {
		display: block;
		float: none;
		margin: 0;
		padding-top: 0;
		text-align: center;
	}
}
