/*!
Theme Name: Protea Wellbeing
Theme URI:
Author:
Author URI:
Description: Custom WordPress theme for Protea Wellbeing - counselling & wellbeing services and student counsellor placements. Built on Bootstrap 5.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: SA
Tags: custom-background, custom-logo, custom-menu, featured-images

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*--------------------------------------------------------------
# Brand variables
--------------------------------------------------------------*/
:root {
	--pw-teal-dark: #2b4d4b;
	--pw-teal: #3c6b68;
	--pw-teal-light: #6f9995;
	--pw-sage: #93a893;
	--pw-blush: #e7b6ac;
	--pw-blush-dark: #c97d6e;
	--pw-cream: #faf6ef;
	--pw-blush-tint: #f7ece8;
	--pw-white: #ffffff;
	--pw-text: #2c3333;
	--pw-text-light: #5c6666;

	--bs-primary: var(--pw-teal);
	--bs-primary-rgb: 60, 107, 104;
	--bs-body-color: var(--pw-text);
	--bs-body-font-family: 'Montserrat', sans-serif;
}

body {
	color: var(--pw-text);
	background-color: var(--pw-white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
	font-family: 'Playfair Display', Georgia, serif;
	color: var(--pw-teal-dark);
}

a {
	color: var(--pw-teal);
}

a:hover {
	color: var(--pw-blush-dark);
}

.bg-cream {
	background-color: var(--pw-cream);
}

.bg-blush-tint {
	background-color: var(--pw-blush-tint);
}

.text-teal {
	color: var(--pw-teal) !important;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-pw-teal {
	background-color: var(--pw-teal);
	border-color: var(--pw-teal);
	color: var(--pw-white);
}
.btn-pw-teal:hover,
.btn-pw-teal:focus {
	background-color: var(--pw-teal-dark);
	border-color: var(--pw-teal-dark);
	color: var(--pw-white);
}

.btn-pw-blush {
	background-color: var(--pw-blush-dark);
	border-color: var(--pw-blush-dark);
	color: var(--pw-white);
}
.btn-pw-blush:hover,
.btn-pw-blush:focus {
	background-color: #a8695c;
	border-color: #a8695c;
	color: var(--pw-white);
}

.btn-pw-outline {
	background-color: transparent;
	border: 2px solid var(--pw-teal);
	color: var(--pw-teal);
}
.btn-pw-outline:hover {
	background-color: var(--pw-teal);
	color: var(--pw-white);
}

.btn-pw-outline-light {
	background-color: transparent;
	border: 2px solid var(--pw-white);
	color: var(--pw-white);
}
.btn-pw-outline-light:hover {
	background-color: var(--pw-white);
	color: var(--pw-teal-dark);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.sticky-header {
	position: sticky;
	top: 0;
	z-index: 1030;
}

.top-header {
	background-color: var(--pw-teal-dark);
	color: var(--pw-cream);
	font-size: 0.85rem;
	padding: 0.4rem 0;
}
.top-header a {
	color: var(--pw-cream);
	text-decoration: none;
	font-weight: 600;
}
.top-header a:hover {
	color: var(--pw-blush);
}
.top-header-right {
	gap: 1.25rem;
}
.top-header-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.sa-header {
	background-color: var(--pw-white);
	padding: 0.75rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	position: relative;
	z-index: 20;
}

.header-logo img {
	max-height: 140px;
	width: auto;
	transition: max-height 0.25s ease;
}

.sticky-header.is-scrolled .header-logo img {
	max-height: 100px;
}

.sa-header .navbar-nav .nav-link {
	color: var(--pw-teal-dark);
	font-weight: 600;
	padding: 0.5rem 1rem;
}
.sa-header .navbar-nav .nav-link:hover,
.sa-header .navbar-nav .nav-link.active {
	color: var(--pw-blush-dark);
}

.sa-header .dropdown-menu {
	border: none;
	border-radius: 0.75rem;
	box-shadow: 0 15px 35px rgba(43, 77, 75, 0.15);
	padding: 0.5rem;
}

.sa-header .dropdown-item {
	color: var(--pw-teal-dark);
	font-weight: 600;
	border-radius: 0.5rem;
	padding: 0.6rem 1rem;
}

.sa-header .dropdown-item:hover,
.sa-header .dropdown-item:focus {
	background-color: var(--pw-cream);
	color: var(--pw-teal-dark);
}

.sa-header .dropdown-item.active,
.sa-header .dropdown-item:active {
	background-color: var(--pw-teal);
	color: var(--pw-white);
}

.navbar-toggler {
	border: 1px solid rgba(60, 107, 104, 0.25);
	border-radius: 0.6rem;
	padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(60, 107, 104, 0.2);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2843, 77, 75, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile navigation menu */
@media (max-width: 991.98px) {
	.header-logo img {
		max-height: 56px;
	}

	.sticky-header.is-scrolled .header-logo img {
		max-height: 48px;
	}

	.top-header-right {
		gap: 0.75rem;
	}

	.top-header-phone span,
	.top-header-phone {
		font-size: 0.8rem;
	}

	.sa-header .navbar-collapse {
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid rgba(60, 107, 104, 0.15);
		max-height: calc(100vh - 100px);
		overflow-y: auto;
	}

	.sa-header .navbar-nav {
		width: 100%;
	}

	.sa-header .navbar-nav .nav-item {
		border-bottom: 1px solid rgba(60, 107, 74, 0.1);
	}

	.sa-header .navbar-nav > .nav-item:last-of-type {
		border-bottom: none;
	}

	.sa-header .navbar-nav .nav-link {
		padding: 0.85rem 0.25rem;
	}

	/* Dropdowns become inline accordions inside the collapsed menu */
	.sa-header .navbar-nav .dropdown-menu {
		position: static;
		float: none;
		width: 100%;
		box-shadow: none;
		border-radius: 0;
		background-color: var(--pw-cream);
		margin: 0 0 0.5rem;
		padding: 0.4rem;
	}

	.sa-header .navbar-nav .dropdown-item {
		padding: 0.7rem 1rem;
		white-space: normal;
	}

	.sa-header .navbar-nav .dropdown-toggle::after {
		float: right;
		margin-top: 0.6rem;
	}

	.sa-header .navbar-collapse .btn {
		display: block;
		width: 100%;
		margin-top: 1rem;
		text-align: center;
	}
}

/*--------------------------------------------------------------
# Hero / Homepage
--------------------------------------------------------------*/
.pw-hero {
	background-color: var(--pw-cream);
	padding: 4rem 0 5rem;
}

.pw-hero--page {
	padding: 3.5rem 0;
	text-align: center;
}

.pw-hero__eyebrow {
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pw-teal);
	font-weight: 600;
	font-size: 0.9rem;
}

.pw-hero__title {
	font-size: 2.75rem;
	margin-bottom: 1rem;
}

.pw-hero__subtitle {
	color: var(--pw-text-light);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.pw-hero__video-wrap {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(43, 77, 75, 0.25);
	line-height: 0;
}

.pw-hero__video-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(43, 77, 75, 0.15);
	z-index: 1;
	transition: opacity 0.2s ease;
}

.pw-hero__video-wrap.is-playing::before {
	opacity: 0;
	pointer-events: none;
}

.pw-hero__video-wrap video {
	width: 100%;
	height: auto;
	display: block;
}

.pw-hero__play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background-color: var(--pw-white);
	color: var(--pw-teal-dark);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.9rem;
	box-shadow: 0 10px 30px rgba(43, 77, 75, 0.35);
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	z-index: 2;
}

.pw-hero__play-btn i {
	margin-left: 4px;
}

.pw-hero__play-btn:hover {
	transform: translate(-50%, -50%) scale(1.08);
	background-color: var(--pw-blush-dark);
	color: var(--pw-white);
}

.pw-hero__video-wrap.is-playing .pw-hero__play-btn {
	display: none;
}

.pw-hero__buttons .btn {
	min-width: 220px;
	padding: 0.9rem 1.75rem;
	font-weight: 600;
	border-radius: 50px;
	font-size: 1.05rem;
}

@media (max-width: 575.98px) {
	.pw-hero__title {
		font-size: 2rem;
	}
	.pw-hero__buttons .btn {
		min-width: 100%;
	}
}

@media (min-width: 992px) {
	.pw-hero__title {
		font-size: 2.4rem;
	}
}

/*--------------------------------------------------------------
# Homepage body wrapper
--------------------------------------------------------------*/
.pw-homepage-body {
	background-color: var(--pw-cream);
}

.pw-divider {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: 0.5rem;
	color: var(--pw-blush-dark);
	font-size: 1.1rem;
}

.pw-text-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--pw-blush-tint);
	color: var(--pw-blush-dark);
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Homepage entry content
--------------------------------------------------------------*/
.pw-entry-content h2 {
	font-size: 2.1rem;
	margin-bottom: 1.25rem;
}

.pw-entry-content h3 {
	font-size: 1.4rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.pw-entry-content p {
	color: var(--pw-text-light);
	line-height: 1.75;
	margin-bottom: 1.1rem;
}

.pw-entry-content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1.5rem;
}

.pw-entry-content ul li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.6rem;
	color: var(--pw-text);
	line-height: 1.5;
}

.pw-entry-content hr {
	border: none;
	border-top: 1px solid rgba(60, 107, 104, 0.15);
	margin: 2rem 0;
}

.pw-entry-content a {
	color: var(--pw-teal);
	font-weight: 600;
}

.pw-entry-content a:hover {
	color: var(--pw-blush-dark);
}

.pw-entry-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--pw-blush-dark);
}

.pw-entry-content blockquote {
	border-left: 4px solid var(--pw-blush-dark);
	background-color: var(--pw-blush-tint);
	border-radius: 0 0.75rem 0.75rem 0;
	padding: 1.5rem 1.75rem;
	margin: 1.5rem 0;
}

.pw-entry-content blockquote p {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: 1.2rem;
	color: var(--pw-teal-dark);
	margin-bottom: 0.5rem;
}

.pw-entry-content blockquote cite {
	display: block;
	font-style: normal;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--pw-text-light);
}

/*--------------------------------------------------------------
# Image + text section
--------------------------------------------------------------*/
.pw-image-text__frame {
	position: relative;
}

.pw-image-text__frame::before {
	content: "";
	position: absolute;
	top: -1rem;
	left: -1rem;
	width: 100%;
	height: 100%;
	background-color: var(--pw-blush-tint);
	border-radius: 1.75rem;
	z-index: 0;
}

.pw-image-text__img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	border-radius: 1.5rem;
	box-shadow: 0 20px 45px rgba(43, 77, 75, 0.18);
}

.pw-section-intro {
	color: var(--pw-text-light);
	font-size: 1.1rem;
	max-width: 620px;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# Single post
--------------------------------------------------------------*/
.pw-single-featured-image {
	margin: -2.5rem auto 0;
	max-width: 900px;
}

.pw-single-featured-image::before {
	top: -0.75rem;
	left: -0.75rem;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(60, 107, 104, 0.15);
	color: var(--pw-text-light);
	font-size: 0.9rem;
}

.entry-footer span {
	display: inline-block;
	margin-right: 1rem;
}

/*--------------------------------------------------------------
# Card panel (feature lists live inside these)
--------------------------------------------------------------*/
.pw-card {
	background-color: var(--pw-white);
	border-radius: 1.75rem;
	padding: 3rem 2.5rem;
	box-shadow: 0 15px 40px rgba(43, 77, 75, 0.07);
}

@media (max-width: 575.98px) {
	.pw-card {
		padding: 2rem 1.25rem;
	}
}

/*--------------------------------------------------------------
# Checklist style feature list
--------------------------------------------------------------*/
.pw-checklist-item {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	padding: 0.75rem 0.5rem;
}

.pw-checklist-item i {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--pw-blush-tint);
	color: var(--pw-blush-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.pw-checklist-item span {
	padding-top: 0.55rem;
	font-weight: 600;
	color: var(--pw-teal-dark);
}

/*--------------------------------------------------------------
# Pill tag style feature list
--------------------------------------------------------------*/
.pw-pill-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.pw-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.4rem;
	border-radius: 50px;
	background-color: var(--pw-blush-tint);
	color: var(--pw-teal-dark);
	font-weight: 600;
	font-size: 0.98rem;
}

.pw-pill:nth-child(even) {
	background-color: var(--pw-cream);
	border: 1px solid rgba(60, 107, 104, 0.15);
}

.pw-pill i {
	color: var(--pw-blush-dark);
}

/*--------------------------------------------------------------
# Pricing scheme card
--------------------------------------------------------------*/
.pw-scheme-card {
	background-color: var(--pw-cream);
	border-radius: 1.75rem;
	padding: 3rem 2.5rem;
}

@media (max-width: 575.98px) {
	.pw-scheme-card {
		padding: 2rem 1.25rem;
	}
}

.pw-scheme-card__price {
	display: inline-block;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--pw-blush-dark);
	background-color: var(--pw-white);
	border-radius: 50px;
	padding: 0.5rem 1.25rem;
	margin-top: 0.5rem;
}

.pw-scheme-card__note {
	color: var(--pw-text-light);
	font-size: 0.95rem;
	font-style: italic;
	margin: 1.25rem 0 0;
}

/*--------------------------------------------------------------
# Numbered steps
--------------------------------------------------------------*/
.pw-steps {
	list-style: none;
	counter-reset: pw-step;
	padding: 0;
	margin: 0;
}

.pw-steps__item {
	counter-increment: pw-step;
	position: relative;
	padding: 0.9rem 0 0.9rem 3.25rem;
	font-weight: 600;
	color: var(--pw-teal-dark);
	border-bottom: 1px solid rgba(60, 107, 104, 0.12);
}

.pw-steps__item:last-child {
	border-bottom: none;
}

.pw-steps__item::before {
	content: counter(pw-step);
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background-color: var(--pw-teal-dark);
	color: var(--pw-white);
	font-family: 'Playfair Display', Georgia, serif;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

/*--------------------------------------------------------------
# Blog cards
--------------------------------------------------------------*/
.pw-blog-card {
	background-color: var(--pw-white);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pw-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(43, 77, 75, 0.12);
}

.pw-blog-card__image {
	display: block;
	aspect-ratio: 3 / 2;
	background-color: var(--pw-cream);
	overflow: hidden;
}

.pw-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.pw-blog-card:hover .pw-blog-card__image img {
	transform: scale(1.05);
}

.pw-blog-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--pw-teal-light);
	font-size: 2.5rem;
}

.pw-blog-card__body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pw-blog-card__category {
	display: inline-block;
	align-self: flex-start;
	background-color: var(--pw-blush-tint);
	color: var(--pw-blush-dark);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.3rem 0.8rem;
	border-radius: 50px;
	margin-bottom: 0.75rem;
}

.pw-blog-card__title {
	font-size: 1.3rem;
	margin-bottom: 0.4rem;
}

.pw-blog-card__title a {
	color: var(--pw-teal-dark);
	text-decoration: none;
}

.pw-blog-card__title a:hover {
	color: var(--pw-blush-dark);
}

.pw-blog-card__date {
	color: var(--pw-text-light);
	font-size: 0.85rem;
	margin-bottom: 0.9rem;
}

.pw-blog-card__excerpt {
	color: var(--pw-text-light);
	line-height: 1.65;
	margin-bottom: 1.25rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.pw-blog-card__excerpt p {
	margin-bottom: 0;
}

.pw-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--pw-teal);
	font-weight: 600;
	text-decoration: none;
	margin-top: auto;
}

.pw-blog-card__link i {
	transition: transform 0.2s ease;
}

.pw-blog-card__link:hover {
	color: var(--pw-blush-dark);
}

.pw-blog-card__link:hover i {
	transform: translateX(3px);
}

.pw-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

.pw-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.75rem;
	margin: 0 0.25rem;
	border-radius: 50px;
	background-color: var(--pw-cream);
	color: var(--pw-teal-dark);
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.pw-pagination .page-numbers:hover {
	background-color: var(--pw-teal-light);
	color: var(--pw-white);
}

.pw-pagination .page-numbers.current {
	background-color: var(--pw-teal-dark);
	color: var(--pw-white);
}

.pw-pagination .page-numbers.dots {
	background-color: transparent;
}

/*--------------------------------------------------------------
# Contact page
--------------------------------------------------------------*/
.pw-contact-info {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(60, 107, 104, 0.15);
}

.pw-contact-info h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.pw-contact-info p {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--pw-text-light);
	margin-bottom: 0.6rem;
}

.pw-contact-info i {
	color: var(--pw-blush-dark);
	font-size: 1.1rem;
}

.pw-contact-form-card {
	background-color: var(--pw-cream);
	border-radius: 1.75rem;
	padding: 2.5rem;
}

@media (max-width: 575.98px) {
	.pw-contact-form-card {
		padding: 1.75rem 1.25rem;
	}
}

.pw-contact-form-card .wpcf7-form label {
	display: block;
	font-weight: 600;
	color: var(--pw-teal-dark);
	margin-bottom: 1.1rem;
}

.pw-contact-form-card .wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.4rem;
}

.pw-contact-form-card .wpcf7-form-control {
	width: 100%;
	border: 1px solid rgba(60, 107, 104, 0.2);
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	font-family: inherit;
	font-size: 1rem;
	background-color: var(--pw-white);
	color: var(--pw-text);
}

.pw-contact-form-card textarea.wpcf7-form-control {
	min-height: 140px;
	resize: vertical;
}

.pw-contact-form-card .wpcf7-form-control:focus {
	outline: none;
	border-color: var(--pw-teal);
	box-shadow: 0 0 0 0.2rem rgba(60, 107, 104, 0.15);
}

.pw-contact-form-card input.wpcf7-submit {
	width: auto;
	background-color: var(--pw-teal);
	border: none;
	color: var(--pw-white);
	font-weight: 600;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.pw-contact-form-card input.wpcf7-submit:hover {
	background-color: var(--pw-teal-dark);
}

.pw-contact-form-card .wpcf7-not-valid-tip {
	color: var(--pw-blush-dark);
	font-size: 0.85rem;
	font-weight: 500;
	margin-top: 0.3rem;
}

.pw-contact-form-card .wpcf7-response-output {
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	margin-top: 1.5rem;
	font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Referral / application cards
--------------------------------------------------------------*/
.pw-referral-card {
	background-color: var(--pw-cream);
	border-radius: 1.5rem;
	padding: 2.25rem 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

@media (max-width: 575.98px) {
	.pw-referral-card {
		padding: 1.75rem 1.5rem;
	}
}

.pw-referral-card h3 {
	margin-bottom: 0.25rem;
}

.pw-referral-card .pw-scheme-card__price {
	font-size: 1.15rem;
	padding: 0.35rem 0.9rem;
	margin: 0.25rem 0 0.75rem;
}

.pw-referral-card__description {
	color: var(--pw-text-light);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

/*--------------------------------------------------------------
# Struggle / promise comparison panel
--------------------------------------------------------------*/
.pw-compare-panel {
	background-color: var(--pw-teal-dark);
	color: var(--pw-cream);
	border-radius: 2rem;
	padding: 3.5rem 2.5rem;
}

@media (max-width: 575.98px) {
	.pw-compare-panel {
		padding: 2.5rem 1.5rem;
		border-radius: 1.5rem;
	}
}

.pw-compare-panel h2 {
	color: var(--pw-white);
	margin-bottom: 0.5rem;
}

.pw-compare-col h3 {
	color: var(--pw-white);
	font-size: 1.15rem;
	margin-bottom: 1rem;
}

.pw-compare-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pw-compare-col li {
	padding: 0.45rem 0;
	font-size: 1rem;
	line-height: 1.5;
}

.pw-compare-col--struggles li {
	color: var(--pw-cream);
	opacity: 0.75;
}

.pw-compare-col--struggles li i {
	color: var(--pw-blush);
	margin-right: 0.6rem;
	opacity: 0.85;
}

.pw-compare-col--promise li {
	color: var(--pw-white);
	font-weight: 600;
}

.pw-compare-col--promise li i {
	color: var(--pw-blush);
	margin-right: 0.6rem;
}

.pw-compare-panel__closing {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.35rem;
	color: var(--pw-white);
	margin: 2.25rem 0 0;
}

/*--------------------------------------------------------------
# FAQ accordion
--------------------------------------------------------------*/
.pw-faq {
	padding: 4rem 0 5rem;
}

.pw-accordion .accordion-item {
	border: none;
	border-radius: 0.75rem !important;
	overflow: hidden;
	margin-bottom: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.pw-accordion .accordion-button {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--pw-teal-dark);
	background-color: var(--pw-white);
	padding: 1.25rem 1.5rem;
}

.pw-accordion .accordion-button:not(.collapsed) {
	color: var(--pw-teal-dark);
	background-color: var(--pw-cream);
	box-shadow: none;
}

.pw-accordion .accordion-button:focus {
	box-shadow: 0 0 0 0.2rem rgba(60, 107, 104, 0.2);
}

.pw-accordion .accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232b4d4b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.pw-accordion .accordion-body {
	padding: 0.25rem 1.5rem 1.5rem;
	color: var(--pw-text-light);
	line-height: 1.75;
}

.pw-accordion .accordion-body p:last-child {
	margin-bottom: 0;
}

.pw-accordion .accordion-body ul {
	padding-left: 1.25rem;
	margin-bottom: 1.1rem;
}

/*--------------------------------------------------------------
# CTA band
--------------------------------------------------------------*/
.pw-cta-band {
	background: linear-gradient(135deg, var(--pw-teal) 0%, var(--pw-teal-dark) 100%);
	padding: 4.5rem 0;
	text-align: center;
}

.pw-cta-band h2 {
	color: var(--pw-white);
	margin-bottom: 1.5rem;
}

.pw-cta-band .btn {
	margin-top: 0.5rem;
}

/*--------------------------------------------------------------
# Closing statement
--------------------------------------------------------------*/
.pw-closing-statement {
	background-color: var(--pw-cream);
	padding: 3rem 0 4.5rem;
	position: relative;
}

.pw-closing-statement__mark {
	display: block;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 5rem;
	line-height: 1;
	color: var(--pw-blush-dark);
	opacity: 0.5;
}

.pw-closing-statement p {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-size: 1.5rem;
	line-height: 1.6;
	color: var(--pw-teal-dark);
}

.pw-closing-statement p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pathway / intro cards
--------------------------------------------------------------*/
.pw-pathway-card {
	background-color: var(--pw-white);
	border-radius: 1rem;
	padding: 2.5rem 2rem;
	height: 100%;
	box-shadow: 0 10px 30px rgba(43, 77, 75, 0.08);
	border-top: 4px solid var(--pw-teal);
}
.pw-pathway-card.pw-pathway-card--blush {
	border-top-color: var(--pw-blush-dark);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background-color: var(--pw-teal-dark);
	color: var(--pw-cream);
}

.site-footer a {
	color: var(--pw-cream);
	text-decoration: none;
}
.site-footer a:hover {
	color: var(--pw-blush);
}

.site-footer h4,
.site-footer h5 {
	color: var(--pw-white);
	font-family: 'Playfair Display', Georgia, serif;
	margin-bottom: 1rem;
}

.site-footer .footer-logo img {
	max-height: 60px;
	margin-bottom: 1rem;
}

.pw-footer-accreditations {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 2rem 0;
}

.pw-footer-accreditations__label {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	color: var(--pw-cream);
	opacity: 0.75;
	margin-bottom: 1.25rem;
	text-align: center;
}

.pw-footer-accreditations__logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
}

.pw-footer-accreditations__logos img {
	background-color: var(--pw-white);
	border-radius: 0.75rem;
	padding: 0.65rem 1.1rem;
	max-height: 64px;
	width: auto;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.site-footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 1rem 0;
	font-size: 0.85rem;
	text-align: center;
}

.footer-bottom__links a {
	position: relative;
	margin-left: 1.25rem;
}

.footer-bottom__links a:first-child {
	margin-left: 0;
}

.footer-bottom__links a::before {
	content: "";
	position: absolute;
	left: -0.75rem;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: rgba(250, 246, 239, 0.4);
}

.footer-bottom__links a:first-child::before {
	display: none;
}

.site-footer .social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	margin-right: 0.5rem;
}
.site-footer .social-icons a:hover {
	background-color: var(--pw-blush-dark);
}
