/*
Theme Name: Parkway Dental
Theme URI: https://github.com/your-org/parkwaydental
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme for Parkway Dental. Build and test locally with wp-now / WordPress Playground.
Version: 0.1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: parkwaydental
*/

/* Header/footer logo: true PNG transparency (no forced background on <img>) */
.elementor-element-48bc7a1 img,
.elementor-element-bc58072 img,
.site-header .elementor-widget-image img[class*="wp-image-686"] {
	background: transparent !important;
}

/* Remove outer white strip: page and body flush to viewport */
html,
body.ast-page-builder-template {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}
#page.site,
.ast-page-builder-template #page {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* Full-width layout for scraped Elementor content.
 * Do not zero padding on blog / single / patient-education — those wrappers set their own
 * (a bare .site-content rule at 0,2,0 specificity was overriding .parkway-pe-content at 0,1,0). */
.ast-page-builder-template .site-content:not(.parkway-pe-content):not(.parkway-blog-content):not(.parkway-single-content) {
	max-width: none;
	width: 100%;
	padding: 0;
}

/* Wrapper chain full width so section backgrounds can stretch (content stays boxed via .e-con-inner) */
.ast-page-builder-template .site-content .site-main,
.ast-page-builder-template .site-content .entry-content,
.ast-page-builder-template .site-content .elementor {
	max-width: none;
	width: 100%;
}

/* Section containers full width so backgrounds stretch edge-to-edge */
.ast-page-builder-template .site-content .e-con,
.ast-page-builder-template .site-content .e-con-boxed {
	width: 100%;
	max-width: none;
}
/* .e-con-inner keeps default --container-max-width (1140px) so content stays boxed */

/*
 * Hosted background video (hero): Elementor’s JS normally sets video dimensions.
 * We don’t load Elementor JS; without explicit width/height, object-fit:cover has no
 * effect and the intrinsic video size shows grey bands above/below.
 */
.ast-page-builder-template .elementor .elementor-background-video-container .elementor-background-video-hosted {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	min-width: 100%;
	min-height: 100%;
	inset-block-start: auto;
	inset-inline-start: auto;
	transform: none;
	-o-object-fit: cover;
	object-fit: cover;
}

/* Base styles – we'll expand as we build */
body {
	font-family: system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	margin: 0;
	padding: 0;
}

.site-header,
.site-footer {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem 1.5rem;
}

.site-header {
	border-bottom: 1px solid #eee;
}

.site-footer {
	border-top: 1px solid #eee;
	margin-top: 2rem;
	font-size: 0.875rem;
	color: #666;
}

/* Replaced icon fonts – sizing and alignment */
.parkway-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}
/* Icon box circles (New Patients cards) – match font-icon em sizing */
.elementor-widget-icon-box .elementor-icon-box-icon .parkway-icon {
	width: 1em;
	height: 1em;
	max-width: 100%;
}

/* Reviews nested carousel: Elementor uses width:max-content on bullets → shrink-wrapped dots hug the left.
   Swiper 11 also sets left:0 on horizontal bullets. Theme + inline-after-Swiper + JS enforce full width + flex center. */
.elementor-widget-n-carousel .e-n-carousel.swiper {
	flex-direction: column !important;
	align-items: stretch !important;
}
.elementor-widget-n-carousel .e-n-carousel.swiper > .swiper-wrapper {
	width: 100%;
	min-width: 0;
}
.elementor-widget-n-carousel .swiper .swiper-pagination:not(.swiper-pagination-vertical),
.elementor-widget-n-carousel .e-n-carousel.swiper .swiper-pagination.swiper-pagination-horizontal,
.elementor-widget-n-carousel .e-n-carousel.swiper.swiper-horizontal > .swiper-pagination,
.elementor-widget-n-carousel .swiper-pagination.swiper-pagination-bullets {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	bottom: auto !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-top: var(--e-n-carousel-swiper-pagination-spacing, 10px);
	transform: none !important;
	text-align: center !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	flex-shrink: 0;
	z-index: 3;
}
/* Tooth in tags/labels – scale down to match small text */
.elementor-icon-list-icon .parkway-icon-tooth {
	width: 0.85em;
	height: 0.85em;
}
/* Arrow in buttons – scale up to match button text */
.elementor-button-icon .parkway-icon-arrow {
	width: 1.15em;
	height: 1.15em;
}
.elementor-button-icon {
	overflow: visible;
	display: inline-flex;
	align-items: center;
}

/* Header "More" dropdown – Blog & Gallery */
.elementor-nav-menu--main .menu-item-more {
	position: relative;
}
.elementor-nav-menu--main .menu-item-more > .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 140px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	border-radius: 4px;
	padding: 0.5rem 0;
	z-index: 1000;
	list-style: none;
	margin: 0;
}
.elementor-nav-menu--main .menu-item-more:hover > .sub-menu {
	display: block;
}
.elementor-nav-menu--main .menu-item-more .sub-menu .menu-item {
	display: block;
	margin: 0;
}
.elementor-nav-menu--main .menu-item-more .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
}
.elementor-nav-menu--main .menu-item-more .sub-menu a:hover {
	background: #f0f5fa;
	color: #046bd2;
}
/* Mobile: show submenu when parent is focused/tapped */
nav.elementor-nav-menu--dropdown .menu-item-more > .sub-menu {
	display: none;
	padding-left: 1rem;
}
nav.elementor-nav-menu--dropdown .menu-item-more.submenu-open > .sub-menu {
	display: block;
}

/* Our Dental Gallery – 3-column grid, smaller tiles, lightbox */
.elementor-widget-gallery .elementor-gallery__container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
@media (max-width: 1024px) {
	.elementor-widget-gallery .elementor-gallery__container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.elementor-widget-gallery .elementor-gallery__container {
		grid-template-columns: 1fr;
	}
}
.elementor-widget-gallery .elementor-gallery-item {
	aspect-ratio: 3 / 2;
	position: relative;
}
.elementor-widget-gallery .elementor-gallery-item .elementor-gallery-item__image {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.elementor-widget-gallery .elementor-gallery-item .elementor-gallery-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Parkway gallery lightbox modal */
.parkway-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0,0,0,0.85);
	align-items: center;
	justify-content: center;
	padding: 2rem;
	box-sizing: border-box;
}
.parkway-lightbox.is-open {
	display: flex;
	flex-direction: column;
}
.parkway-lightbox__title {
	color: #fff;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	text-align: center;
}
.parkway-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.9;
}
.parkway-lightbox__close:hover {
	opacity: 1;
}
.parkway-lightbox__img-wrap {
	max-width: 90vw;
	max-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.parkway-lightbox__img-wrap img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
}

/* Blog post featured images (index fallback) */
.site-main .post-thumbnail {
	margin-bottom: 1rem;
}
.site-main .post-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

/* ==========================================================================
   Blog listing (home.php)
   ========================================================================== */
.parkway-blog-content {
	background: #f0f5fa;
	padding: 2rem 1.5rem 3rem;
}
.parkway-blog-header {
	max-width: 1200px;
	margin: 0 auto 2.5rem;
	text-align: center;
}
.parkway-blog-header__inner {
	padding: 0 1rem;
}
.parkway-blog-header__icon {
	color: #046bd2;
	margin-bottom: 0.75rem;
}
.parkway-blog-header__icon svg {
	display: inline-block;
	vertical-align: middle;
}
.parkway-blog-header__title {
	font-size: 2rem;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 0.5rem;
}
.parkway-blog-header__intro {
	font-size: 1.0625rem;
	color: #334155;
	margin: 0;
	line-height: 1.5;
}
.parkway-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
@media (max-width: 1024px) {
	.parkway-blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.parkway-blog-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}
.parkway-blog-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	transition: box-shadow 0.2s ease;
}
.parkway-blog-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.parkway-blog-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.parkway-blog-card__image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e2e8f0;
}
.parkway-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.parkway-blog-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}
.parkway-blog-card__body {
	padding: 1.25rem 1.25rem 1.5rem;
}
.parkway-blog-card__date {
	font-size: 0.8125rem;
	color: #64748b;
	display: block;
	margin-bottom: 0.5rem;
}
.parkway-blog-card__title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 0.5rem;
	line-height: 1.35;
}
.parkway-blog-card__title:hover {
	color: #046bd2;
}
.parkway-blog-card__excerpt {
	font-size: 0.9375rem;
	color: #334155;
	line-height: 1.5;
	margin: 0 0 0.75rem;
}
.parkway-blog-card__excerpt p:last-child {
	margin-bottom: 0;
}
.parkway-blog-card__more {
	font-size: 0.875rem;
	font-weight: 500;
	color: #046bd2;
}
.parkway-blog-empty {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding: 3rem 1rem;
	color: #64748b;
}
.parkway-blog-content .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}
/* Pagination: remove bullets, center, fix layout (home.php + page-blog.php) */
.parkway-blog-content .pagination,
.parkway-blog-content .parkway-blog-pagination {
	margin-top: 2.5rem;
	margin-bottom: 0;
	background: transparent;
}
.parkway-blog-content .pagination ul.page-numbers,
.parkway-blog-content .parkway-blog-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 1.5rem 0;
	border-top: 1px solid #e2e8f0;
	background: transparent;
}
.parkway-blog-content .pagination ul.page-numbers li,
.parkway-blog-content .parkway-blog-pagination ul.page-numbers li {
	margin: 0;
	list-style: none;
}
/* Target only the link/span elements, not the ul (ul also has class page-numbers) */
.parkway-blog-content .pagination li .page-numbers,
.parkway-blog-content .parkway-blog-pagination li .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.5rem;
	font-size: 0.9375rem;
	text-decoration: none;
	color: #334155;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.parkway-blog-content .pagination li .page-numbers:hover,
.parkway-blog-content .pagination li .page-numbers.current,
.parkway-blog-content .parkway-blog-pagination li .page-numbers:hover,
.parkway-blog-content .parkway-blog-pagination li .page-numbers.current {
	background: #046bd2;
	color: #fff;
	border-color: #046bd2;
}
.parkway-blog-content .pagination li .prev.page-numbers,
.parkway-blog-content .pagination li .next.page-numbers,
.parkway-blog-content .parkway-blog-pagination li .prev.page-numbers,
.parkway-blog-content .parkway-blog-pagination li .next.page-numbers {
	padding: 0 1rem;
}

/* ==========================================================================
   Single post (single.php)
   ========================================================================== */
.parkway-single-content {
	background: #fff;
	padding-bottom: 3rem;
}
.parkway-single-hero {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e2e8f0;
}
.parkway-single-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.parkway-single-body {
	max-width: 750px;
	margin: 0 auto;
	padding: 2rem 1.5rem 0;
}
.parkway-single-header {
	margin-bottom: 2rem;
}
.parkway-single-back {
	display: inline-block;
	font-size: 0.875rem;
	color: #046bd2;
	text-decoration: none;
	margin-bottom: 1rem;
}
.parkway-single-back:hover {
	text-decoration: underline;
}
.parkway-single-date {
	display: block;
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 0.5rem;
}
.parkway-single-title {
	font-size: 2rem;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.3;
	margin: 0;
}
.parkway-single-content-inner {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #334155;
}
.parkway-single-content-inner h2 {
	font-size: 1.5rem;
	margin: 2rem 0 0.75rem;
	color: #1e293b;
}
.parkway-single-content-inner h3 {
	font-size: 1.25rem;
	margin: 1.5rem 0 0.5rem;
	color: #1e293b;
}
.parkway-single-content-inner p {
	margin: 0 0 1rem;
}
.parkway-single-content-inner ul,
.parkway-single-content-inner ol {
	margin: 0 0 1rem;
	padding-left: 1.5rem;
}
.parkway-single-content-inner a {
	color: #046bd2;
	text-decoration: underline;
}
.parkway-single-content-inner a:hover {
	color: #045cb4;
}
.parkway-single-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}
.parkway-single-cta {
	display: inline-block;
	font-size: 0.9375rem;
	padding: 0.5rem 0;
	color: #046bd2;
	text-decoration: none;
}
.parkway-single-cta:hover {
	text-decoration: underline;
}
.parkway-single-cta--primary {
	padding: 0.625rem 1.25rem;
	background: #046bd2;
	color: #fff !important;
	border-radius: 4px;
	text-decoration: none;
}
.parkway-single-cta--primary:hover {
	background: #045cb4;
}
.parkway-single-content .post-navigation {
	max-width: 750px;
	margin: 2rem auto 0;
	padding: 0 1.5rem 2rem;
	border-top: 1px solid #e2e8f0;
	padding-top: 2rem;
}
.parkway-single-content .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.parkway-single-content .nav-previous a,
.parkway-single-content .nav-next a {
	color: #046bd2;
	text-decoration: none;
}
.parkway-single-content .nav-previous a:hover,
.parkway-single-content .nav-next a:hover {
	text-decoration: underline;
}
.parkway-single-content .nav-subtitle {
	display: block;
	font-size: 0.75rem;
	color: #64748b;
	margin-bottom: 0.25rem;
}

/* ==========================================================================
   Patient Education listing (page-patient-education.php) — teal accent
   ========================================================================== */
.parkway-pe-content {
	/* Stay in mint tones — old gradient ended in #f8fafc and read as a white strip above the footer. */
	background: linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 50%, #e6fffa 100%);
	/* Space under nav (~30% less than previous 100px / 120px). */
	padding-top: 70px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	padding-bottom: 1.25rem;
	margin-bottom: 0;
}
@media (min-width: 1200px) {
	.parkway-pe-content {
		padding-top: 84px;
	}
}
.parkway-pe-content .site-main {
	margin-bottom: 0;
	padding-bottom: 0;
}
.parkway-pe-header {
	max-width: 1200px;
	margin: 0 auto 2.5rem;
	text-align: center;
}
.parkway-pe-header__inner {
	padding: 0 1rem;
}
.parkway-pe-header__icon {
	color: #0d9488;
	margin-bottom: 0.75rem;
}
.parkway-pe-header__icon svg {
	display: inline-block;
	vertical-align: middle;
}
.parkway-pe-header__title {
	font-size: 2rem;
	font-weight: 600;
	color: #134e4a;
	margin: 0 0 0.5rem;
}
.parkway-pe-header__intro {
	font-size: 1.0625rem;
	color: #334155;
	margin: 0;
	line-height: 1.5;
}
.parkway-pe-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
@media (max-width: 1024px) {
	.parkway-pe-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.parkway-pe-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}
.parkway-pe-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(13, 148, 136, 0.12);
	border: 1px solid rgba(13, 148, 136, 0.15);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.parkway-pe-card:hover {
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.18);
	transform: translateY(-2px);
}
.parkway-pe-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.parkway-pe-card__image {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #ccfbf1;
}
.parkway-pe-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.parkway-pe-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5eead4;
}
.parkway-pe-card__body {
	padding: 1.25rem 1.25rem 1.5rem;
}
.parkway-pe-card__topic {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f766e;
	background: #ccfbf1;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	margin: 0 0 0.5rem;
}
.parkway-pe-card__title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #134e4a;
	margin: 0 0 0.5rem;
	line-height: 1.35;
}
.parkway-pe-card:hover .parkway-pe-card__title {
	color: #0d9488;
}
.parkway-pe-card__excerpt {
	font-size: 0.9375rem;
	color: #334155;
	line-height: 1.5;
	margin: 0 0 0.75rem;
}
.parkway-pe-card__excerpt p:last-child {
	margin-bottom: 0;
}
.parkway-pe-card__more {
	font-size: 0.875rem;
	font-weight: 600;
	color: #0d9488;
}
.parkway-pe-empty {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	padding: 1rem 1rem 0.5rem;
	color: #64748b;
}
.parkway-pe-pagination {
	margin-top: 2.5rem;
	margin-bottom: 0;
	background: transparent;
}
.parkway-pe-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(13, 148, 136, 0.2);
	background: transparent;
}
.parkway-pe-pagination ul.page-numbers li {
	margin: 0;
	list-style: none;
}
/* Target only the link/span elements, not the ul (ul also has class page-numbers) */
.parkway-pe-pagination li .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.5rem;
	font-size: 0.9375rem;
	text-decoration: none;
	color: #334155;
	background: #fff;
	border: 1px solid #99f6e4;
	border-radius: 6px;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.parkway-pe-pagination li .page-numbers:hover,
.parkway-pe-pagination li .page-numbers.current {
	background: #0d9488;
	color: #fff;
	border-color: #0d9488;
}
.parkway-pe-pagination li .prev.page-numbers,
.parkway-pe-pagination li .next.page-numbers {
	padding: 0 1rem;
}

/* Footer CTA (Elementor post-223) uses 100px margin-top — reads as white gap after mint PE section.
 * Use :has() so it still works if body_class misses (e.g. odd permalink / cache). */
body.parkway-patient-education .elementor-223 .elementor-element.elementor-element-b857aca,
body:has(#content.parkway-pe-content) .elementor-223 .elementor-element.elementor-element-b857aca {
	--margin-top: 0px !important;
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}

/* Patient Education single overrides */
.parkway-pe-single {
	background: linear-gradient(180deg, #f0fdfa 0%, #fff 12rem);
}
.parkway-pe-single__hero {
	border-bottom: 3px solid #5eead4;
}
.parkway-pe-single__back,
.parkway-pe-single__cta {
	color: #0d9488;
}
.parkway-pe-single__topic {
	margin: 0 0 0.5rem;
}
.parkway-pe-single__topic-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #0f766e;
	background: #ccfbf1;
	padding: 0.35rem 0.65rem;
	border-radius: 4px;
}
.parkway-pe-single__title {
	color: #134e4a;
}
.parkway-pe-single__inner a {
	color: #0d9488;
}
.parkway-pe-single__inner a:hover {
	color: #0f766e;
}
.parkway-pe-single__cta--primary {
	background: #0d9488 !important;
}
.parkway-pe-single__cta--primary:hover {
	background: #0f766e !important;
}
.parkway-pe-single__footer {
	border-top-color: rgba(13, 148, 136, 0.25);
}
.parkway-pe-single__nav {
	max-width: 750px;
	margin: 2rem auto 0;
	padding: 0 1.5rem 2rem;
	border-top: 1px solid rgba(13, 148, 136, 0.2);
	padding-top: 2rem;
}
.parkway-pe-single__nav .nav-previous a,
.parkway-pe-single__nav .nav-next a {
	color: #0d9488;
	text-decoration: none;
	font-weight: 500;
}
.parkway-pe-single__nav .nav-previous a:hover,
.parkway-pe-single__nav .nav-next a:hover {
	text-decoration: underline;
}
