/*
Theme Name: Breakthrough Clinic
Theme URI: https://thebreakthroughclinic.com
Author: Breakthrough Clinic
Description: Custom theme for The Breakthrough Clinic - addiction treatment services
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: breakthrough-clinic
*/

/* ==========================================================================
   TABLE OF CONTENTS
   1. Google Fonts Import
   2. CSS Custom Properties (Variables)
   3. Reset & Normalize
   4. Base Typography
   5. Layout & Container
   6. Header & Navigation
   7. Mobile Navigation
   8. Hero / Banner Sections
   9. Content Sections
   10. Two-Column Grid
   11. Buttons
   12. Footer
   13. Blog / Post Listing
   14. Single Post
   15. Service Page Layout
   16. Contact Page
   17. FAQ Accordion
   18. Sidebar
   19. 404 & Search Pages
   20. Client Stories
   21. WordPress Core Classes
   22. Utility Classes
   23. Page Template Components (section-nav, cta-section, home-hero, etc.)
   24. Responsive — Tablet (max 768px)
   25. Responsive — Mobile (max 480px)
   ========================================================================== */

/* ==========================================================================
   1. Google Fonts — loaded via wp_enqueue_style() in functions.php
   ========================================================================== */

/* ==========================================================================
   2. CSS Custom Properties
   ========================================================================== */

:root {
	--color-primary:     #04617b;
	--color-charcoal:    #414141;
	--color-btn-dark:    #272727;
	--color-navy:        #274b80;
	--color-white:       #ffffff;
	--color-light-gray:  #f5f5f5;
	--color-border:      #e0e0e0;
	--color-text-muted:  #767676;

	--font-heading:      'Josefin Sans', sans-serif;
	--font-body:         'Source Sans Pro', sans-serif;

	--container-width:   1200px;
	--container-padding: 0 24px;

	--header-height:     90px;

	--transition-base:   0.3s ease;
}

/* ==========================================================================
   3. Reset & Normalize
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-charcoal);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	list-style: none;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover,
a:focus {
	color: var(--color-navy);
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: var(--font-body);
}

input,
textarea,
select {
	font-family: var(--font-body);
	font-size: 1rem;
}

table {
	border-collapse: collapse;
	width: 100%;
}

/* ==========================================================================
   4. Base Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	line-height: 1.2;
	color: var(--color-charcoal);
	margin-bottom: 0.75em;
}

h1 {
	font-size: 42px;
	font-weight: 300;
	letter-spacing: 0.01em;
}

h2 {
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

h3 {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

h4 {
	font-size: 18px;
	font-weight: 600;
}

h5 {
	font-size: 16px;
	font-weight: 600;
}

h6 {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

p {
	margin-bottom: 1.25em;
}

p:last-child {
	margin-bottom: 0;
}

strong,
b {
	font-weight: 600;
}

em,
i {
	font-style: italic;
}

blockquote {
	border-left: 4px solid var(--color-primary);
	padding: 16px 24px;
	margin: 24px 0;
	font-size: 18px;
	font-style: italic;
	color: var(--color-charcoal);
	background: var(--color-light-gray);
}

blockquote cite {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	font-style: normal;
	color: var(--color-text-muted);
}

hr {
	border: none;
	border-top: 1px solid var(--color-border);
	margin: 32px 0;
}

pre {
	background: var(--color-light-gray);
	padding: 16px;
	overflow-x: auto;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 1.25em;
}

code {
	background: var(--color-light-gray);
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 0.9em;
}

pre code {
	background: none;
	padding: 0;
}

.entry-content ul,
.entry-content ol {
	list-style: initial;
	padding-left: 1.5em;
	margin-bottom: 1.25em;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	margin-bottom: 0.5em;
}

/* ==========================================================================
   5. Layout & Container
   ========================================================================== */

.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding: var(--container-padding);
	width: 100%;
}

.container--narrow {
	max-width: 800px;
}

.container--wide {
	max-width: 1400px;
}

.site-main,
.service-page,
.contact-page,
.about-page,
.home-page,
.location-page {
	padding-top: var(--header-height);
	min-height: 60vh;
}

/* Account for sticky header */
body.admin-bar .site-header {
	top: 32px;
}

/* ==========================================================================
   6. Header & Navigation
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: var(--color-white);
	height: var(--header-height);
	display: flex;
	align-items: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

/* Logo */
.site-branding {
	flex-shrink: 0;
	line-height: 1;
}

.site-branding a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-branding .custom-logo {
	max-height: 60px;
	width: auto;
}

.site-branding .site-title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: var(--color-primary);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 0;
	line-height: 1;
}

.site-branding .site-title a {
	color: inherit;
}

/* Main Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 0;
	list-style: none;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 12px 16px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-charcoal);
	transition: color var(--transition-base);
	white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation li.current-menu-item > a,
.main-navigation li.current-menu-ancestor > a {
	color: var(--color-primary);
}

/* Dropdown Menus */
.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background-color: var(--color-white);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
	z-index: 100;
	flex-direction: column;
	border-top: 3px solid var(--color-primary);
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .sub-menu li {
	display: block;
	width: 100%;
}

.main-navigation .sub-menu a {
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.03em;
	border-bottom: 1px solid var(--color-light-gray);
}

.main-navigation .sub-menu a:hover {
	background-color: var(--color-light-gray);
	color: var(--color-primary);
}

.main-navigation .sub-menu li:last-child a {
	border-bottom: none;
}

/* Dropdown indicator arrow */
.main-navigation li.menu-item-has-children > a::after {
	content: ' ▾';
	font-size: 10px;
	vertical-align: middle;
}

/* Header CTA button in nav */
.main-navigation .nav-cta a {
	background-color: var(--color-btn-dark);
	color: var(--color-white);
	padding: 10px 20px;
	border-radius: 3px;
	margin-left: 8px;
}

.main-navigation .nav-cta a:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

/* ==========================================================================
   7. Mobile Navigation
   ========================================================================== */

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
	gap: 5px;
	z-index: 1100;
}

.menu-toggle .hamburger-line {
	display: block;
	width: 26px;
	height: 2px;
	background-color: var(--color-charcoal);
	transition: transform var(--transition-base), opacity var(--transition-base);
	transform-origin: center;
}

.menu-toggle.is-active .hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-nav-overlay.is-active {
	z-index: 999;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

/* ==========================================================================
   8. Hero / Banner Sections
   ========================================================================== */

.hero-section,
.page-hero,
.banner-section {
	position: relative;
	min-height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-primary);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero-section::before,
.page-hero::before,
.banner-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(4, 97, 123, 0.65);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--color-white);
	padding: 60px 24px;
	max-width: 800px;
	margin: 0 auto;
}

.hero-content h1 {
	color: var(--color-white);
	font-size: 72px;
	font-weight: 300;
	margin-bottom: 20px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
	color: var(--color-white);
	font-size: 18px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.03em;
	margin-bottom: 32px;
	opacity: 0.9;
}

.hero-content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
}

.page-hero--short {
	min-height: 280px;
}

.page-hero__title {
	position: relative;
	z-index: 2;
	color: var(--color-white);
	text-align: center;
	padding: 60px 24px;
}

.page-hero__title h1 {
	color: var(--color-white);
	margin: 0;
}

/* ==========================================================================
   9. Content Sections
   ========================================================================== */

.content-section {
	padding: 80px 0;
}

.content-section--tight {
	padding: 48px 0;
}

.content-section--large {
	padding: 120px 0;
}

.content-section--light {
	background-color: var(--color-light-gray);
}

.content-section--dark {
	background-color: var(--color-btn-dark);
	color: var(--color-white);
}

.content-section--dark h1,
.content-section--dark h2,
.content-section--dark h3 {
	color: var(--color-white);
}

.content-section--teal {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.content-section--teal h1,
.content-section--teal h2,
.content-section--teal h3 {
	color: var(--color-white);
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-header h2 {
	margin-bottom: 12px;
}

.section-header p {
	font-size: 18px;
	color: var(--color-text-muted);
	max-width: 600px;
	margin: 0 auto;
}

/* Entry content area */
.entry-content {
	max-width: 760px;
}

.entry-content--full {
	max-width: none;
}

.entry-content h2 {
	margin-top: 1.5em;
}

.entry-content h3 {
	margin-top: 1.25em;
}

/* ==========================================================================
   10. Two-Column Grid
   ========================================================================== */

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -16px;
	align-items: stretch;
}

.row--center {
	align-items: center;
}

.row--top {
	align-items: flex-start;
}

[class*="col-"] {
	padding: 0 16px;
	width: 100%;
}

.col-12 { flex: 0 0 100%;        max-width: 100%; }
.col-7  { flex: 0 0 58.3333%;   max-width: 58.3333%; }
.col-5  { flex: 0 0 41.6667%;   max-width: 41.6667%; }
.col-6  { flex: 0 0 50%;        max-width: 50%; }
.col-4  { flex: 0 0 33.3333%;   max-width: 33.3333%; }
.col-8  { flex: 0 0 66.6667%;   max-width: 66.6667%; }
.col-3  { flex: 0 0 25%;        max-width: 25%; }

/* Column image fills */
.col-image {
	padding: 0;
	overflow: hidden;
}

.col-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ==========================================================================
   11. Buttons
   ========================================================================== */

.btn,
.button,
input[type="submit"],
button[type="submit"] {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-white);
	background-color: var(--color-btn-dark);
	border: 2px solid var(--color-btn-dark);
	padding: 12px 28px;
	border-radius: 3px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
	line-height: 1.4;
	text-align: center;
	white-space: nowrap;
}

.btn:hover,
.button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

.btn-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn-primary:hover {
	background-color: var(--color-btn-dark);
	border-color: var(--color-btn-dark);
}

.btn-outline {
	background-color: transparent;
	color: var(--color-btn-dark);
}

.btn-outline:hover {
	background-color: var(--color-btn-dark);
	color: var(--color-white);
}

.btn-outline-white {
	background-color: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
}

.btn-outline-white:hover {
	background-color: var(--color-white);
	color: var(--color-btn-dark);
}

.btn-large,
.btn--large {
	font-size: 15px;
	padding: 16px 40px;
}

.btn-small,
.btn--small {
	font-size: 12px;
	padding: 8px 20px;
}

/* Read More links */
.read-more {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
	transition: color var(--transition-base);
}

.read-more:hover {
	color: var(--color-navy);
}

/* ==========================================================================
   12. Footer
   ========================================================================== */

.site-footer {
	background-color: var(--color-primary);
	color: var(--color-white);
	padding: 60px 0 32px;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand .site-title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}

.footer-brand img {
	max-height: 50px;
	width: auto;
	margin-bottom: 16px;
}

.footer-contact a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color var(--transition-base);
}

.footer-contact a:hover {
	color: var(--color-white);
}

.footer-contact p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 8px;
}

.footer-address {
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.85);
}

.footer-address strong {
	display: block;
	color: var(--color-white);
	margin-bottom: 4px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--color-white);
	border-radius: 50%;
	transition: background-color var(--transition-base);
	text-decoration: none;
}

.footer-social a:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.footer-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.footer-nav-column h4 {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-white);
	margin-bottom: 16px;
}

.footer-navigation ul {
	list-style: none;
}

.footer-navigation li {
	margin-bottom: 10px;
}

.footer-navigation a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color var(--transition-base);
}

.footer-navigation a:hover {
	color: var(--color-white);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-copyright {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-legal-links {
	display: flex;
	gap: 20px;
}

.footer-legal-links a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color var(--transition-base);
}

.footer-legal-links a:hover {
	color: var(--color-white);
}

/* Footer Widget Area */
.footer-widgets {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-widgets .widget {
	color: rgba(255, 255, 255, 0.85);
}

.footer-widgets .widget-title {
	color: var(--color-white);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}

/* ==========================================================================
   13. Blog / Post Listing
   ========================================================================== */

.blog-listing {
	padding: 80px 0;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}

.post-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	overflow: hidden;
	transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.post-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.post-card__thumbnail {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.post-card__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.post-card:hover .post-card__thumbnail img {
	transform: scale(1.04);
}

.post-card__thumbnail-placeholder {
	width: 100%;
	height: 100%;
	background-color: var(--color-light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.post-card__body {
	padding: 24px;
}

.post-card__meta {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	margin-bottom: 10px;
}

.post-card__title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 12px;
}

.post-card__title a {
	color: var(--color-charcoal);
}

.post-card__title a:hover {
	color: var(--color-primary);
}

.post-card__excerpt {
	font-size: 14px;
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.post-card__excerpt p:last-child {
	margin-bottom: 0;
}

/* Pagination */
.pagination,
.posts-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

.page-numbers,
.nav-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-charcoal);
	border: 1px solid var(--color-border);
	border-radius: 3px;
	text-decoration: none;
	transition: all var(--transition-base);
}

.page-numbers:hover,
.nav-links a:hover,
.page-numbers.current {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

/* ==========================================================================
   14. Single Post
   ========================================================================== */

.single-post-layout {
	padding: 60px 0 80px;
}

.single-post-layout .container {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 60px;
	align-items: start;
}

.post-featured-image {
	margin-bottom: 36px;
	border-radius: 4px;
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
}

.post-header {
	margin-bottom: 32px;
}

.post-header .post-meta {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.post-header h1 {
	font-size: 36px;
	margin-bottom: 0;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

.post-navigation a {
	flex: 1;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-charcoal);
}

.post-navigation .nav-prev {
	text-align: left;
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation a:hover {
	color: var(--color-primary);
}

.post-navigation .nav-label {
	display: block;
	font-size: 11px;
	color: var(--color-text-muted);
	margin-bottom: 4px;
}

/* ==========================================================================
   15. Service Page Layout
   ========================================================================== */

.service-section {
	padding: 80px 0;
}

.service-section:nth-child(even) {
	background-color: var(--color-light-gray);
}

.service-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	min-height: 400px;
}

.service-block--reverse {
	direction: rtl;
}

.service-block--reverse > * {
	direction: ltr;
}

.service-block__image {
	overflow: hidden;
}

.service-block__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-block__content {
	padding: 60px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-block__content h2 {
	margin-bottom: 20px;
}

.service-block__content p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-charcoal);
}

.service-block__content .btn {
	align-self: flex-start;
	margin-top: 28px;
}

/* Services grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.service-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	padding: 36px 28px;
	text-align: center;
	transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.service-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.service-card h3 {
	margin-bottom: 12px;
	color: var(--color-primary);
}

.service-card p {
	font-size: 15px;
	color: var(--color-text-muted);
}

/* ==========================================================================
   16. Contact Page
   ========================================================================== */

.contact-layout {
	padding: 80px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 60px;
	align-items: start;
}

.contact-form-area h2 {
	margin-bottom: 28px;
}

/* Contact Form (Contact Form 7) */
.wpcf7-form {
	background: var(--color-white);
}

.wpcf7-form p {
	margin-bottom: 20px;
}

.wpcf7-form label {
	display: block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-charcoal);
	margin-bottom: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--color-border);
	border-radius: 3px;
	font-size: 15px;
	font-family: var(--font-body);
	color: var(--color-charcoal);
	background-color: var(--color-white);
	transition: border-color var(--transition-base), box-shadow var(--transition-base);
	-webkit-appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(4, 97, 123, 0.12);
}

.wpcf7-form textarea {
	min-height: 140px;
	resize: vertical;
}

.wpcf7-form input[type="submit"] {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-white);
	background-color: var(--color-btn-dark);
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: background-color var(--transition-base);
	margin-top: 8px;
	min-width: 160px;
}

.wpcf7-form input[type="submit"]:hover {
	background-color: var(--color-primary);
}

.wpcf7-form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 12px 16px;
	border-radius: 3px;
	font-size: 14px;
}

.wpcf7-form .wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 13px;
	margin-top: 4px;
}

.wpcf7-form .wpcf7-spinner {
	margin-left: 12px;
}

.contact-info-area h3 {
	margin-bottom: 16px;
}

.contact-info-item {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-info-item h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	margin-bottom: 6px;
}

.contact-info-item p {
	font-size: 15px;
	color: var(--color-charcoal);
	margin-bottom: 0;
}

/* ==========================================================================
   17. FAQ Accordion
   ========================================================================== */

.faq-section {
	padding: 80px 0;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

/* FAQ sections — plain visible content (no accordion) */
.faq-item {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

.faq-question {
	margin-bottom: 12px;
}

.faq-answer {
	/* always visible — no accordion */
}

.faq-answer p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-charcoal);
}

/* ==========================================================================
   18. Sidebar
   ========================================================================== */

.widget-area {
	padding-left: 24px;
}

.widget {
	margin-bottom: 36px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--color-border);
}

.widget:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.widget-title {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-charcoal);
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-primary);
}

.widget ul {
	list-style: none;
}

.widget ul li {
	padding: 8px 0;
	border-bottom: 1px solid var(--color-light-gray);
	font-size: 14px;
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li a {
	color: var(--color-charcoal);
}

.widget ul li a:hover {
	color: var(--color-primary);
}

/* ==========================================================================
   19. 404 & Search Pages
   ========================================================================== */

.error-404,
.search-page {
	padding: 80px 0;
	text-align: center;
}

.error-404 h1 {
	font-size: 120px;
	font-weight: 300;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: 8px;
}

.error-404 h2 {
	font-size: 24px;
	margin-bottom: 16px;
	text-transform: none;
}

.error-404 p {
	font-size: 17px;
	color: var(--color-text-muted);
	margin-bottom: 32px;
}

.search-form-large {
	display: flex;
	max-width: 480px;
	margin: 0 auto 48px;
	gap: 0;
}

.search-form-large input[type="search"] {
	flex: 1;
	padding: 14px 20px;
	border: 2px solid var(--color-border);
	border-right: none;
	border-radius: 3px 0 0 3px;
	font-size: 15px;
}

.search-form-large button {
	padding: 14px 24px;
	background-color: var(--color-primary);
	color: var(--color-white);
	border: 2px solid var(--color-primary);
	border-radius: 0 3px 3px 0;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.search-form-large button:hover {
	background-color: var(--color-btn-dark);
	border-color: var(--color-btn-dark);
}

.search-page .search-header {
	margin-bottom: 48px;
	text-align: left;
}

.search-page .search-header h1 {
	font-size: 32px;
}

/* ==========================================================================
   20. Client Stories
   ========================================================================== */

/* Stories heading */
.stories-heading {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--color-text-muted);
	margin-bottom: 30px;
}

/* Stories list — thumbnail left, content right */
.stories-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.story-list-item {
	display: flex;
	gap: 30px;
	padding: 30px 0;
	border-bottom: 1px solid var(--color-border);
}

.story-list-item:first-child {
	padding-top: 0;
}

.story-list-item__thumb {
	flex: 0 0 300px;
	overflow: hidden;
}

.story-list-item__thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.3s;
}

.story-list-item__thumb:hover img {
	opacity: 0.85;
}

.story-list-item__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.story-list-item__title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 12px;
}

.story-list-item__title a {
	color: var(--color-charcoal);
	text-decoration: none;
}

.story-list-item__title a:hover {
	color: var(--color-primary);
}

.story-list-item__excerpt {
	font-size: 15px;
	color: var(--color-text-muted);
	line-height: 1.7;
	margin-bottom: 16px;
}

.story-list-item__excerpt p {
	margin: 0;
}

.story-list-item__readmore {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.story-list-item__readmore:hover {
	text-decoration: underline;
}

/* Single client story */
.single-story {
	padding: 60px 0 80px;
}

.story-featured-image {
	margin-bottom: 40px;
	border-radius: 4px;
	overflow: hidden;
	max-height: 500px;
}

.story-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 500px;
}

.story-header {
	margin-bottom: 36px;
}

.story-header .story-date {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.story-header h1 {
	font-size: 38px;
	margin-bottom: 0;
}

/* ==========================================================================
   21. WordPress Core Classes
   ========================================================================== */

/* Alignment */
.alignleft {
	float: left;
	margin: 0 24px 16px 0;
}

.alignright {
	float: right;
	margin: 0 0 16px 24px;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.alignnone {
	max-width: 100%;
}

/* WP Captions */
.wp-caption {
	max-width: 100%;
	margin-bottom: 1.25em;
}

.wp-caption img {
	display: block;
	margin: 0;
}

.wp-caption-text {
	font-size: 13px;
	color: var(--color-text-muted);
	font-style: italic;
	text-align: center;
	padding: 8px 4px;
}

/* Sticky posts */
.sticky {
	background-color: var(--color-light-gray);
	border-left: 4px solid var(--color-primary);
	padding: 24px;
}

/* Gallery */
.gallery {
	display: grid;
	gap: 8px;
	margin-bottom: 1.5em;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Screen reader text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--color-white);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: var(--color-charcoal);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Skip link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 8px 16px;
	text-decoration: none;
	transition: top var(--transition-base);
}

.skip-link:focus {
	top: 0;
}

/* WP block editor styles */
.wp-block-image img {
	border-radius: 4px;
}

.wp-block-quote {
	border-left: 4px solid var(--color-primary);
	padding: 16px 24px;
	font-style: italic;
}

.wp-block-separator {
	border-top: 1px solid var(--color-border);
	margin: 32px 0;
}

/* Comments */
.comment-list {
	list-style: none;
	margin-bottom: 40px;
}

.comment-list .comment {
	padding: 24px 0;
	border-bottom: 1px solid var(--color-border);
}

.comment-author .avatar {
	border-radius: 50%;
	margin-right: 12px;
	vertical-align: middle;
}

/* Forms (generic WP) */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--color-border);
	border-radius: 3px;
	font-size: 15px;
	margin-top: 4px;
}

/* ==========================================================================
   22. Utility Classes
   ========================================================================== */

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-text-muted); }

.bg-light     { background-color: var(--color-light-gray); }
.bg-white     { background-color: var(--color-white); }
.bg-primary   { background-color: var(--color-primary); }
.bg-dark      { background-color: var(--color-btn-dark); }

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-5  { margin-top: 48px; }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }
.mb-5  { margin-bottom: 48px; }

.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }

.d-flex        { display: flex; }
.align-center  { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap     { flex-wrap: wrap; }

.hidden        { display: none; }
.visible       { visibility: visible; }

.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   23. Section Sub-Navigation (About Us, Services folder nav)
   ========================================================================== */

.section-nav {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}
.section-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.section-nav__item {
  margin: 0;
}
.section-nav__link {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #414141;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.section-nav__link:hover,
.section-nav__link--active {
  color: #04617b;
  border-bottom-color: #04617b;
}

/* CTA Section at bottom of service/about pages */
.cta-section {
  text-align: center;
  padding: 60px 0;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}
.cta-section__heading {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 24px;
  color: #414141;
}
.cta-section__link {
  display: block;
  margin-top: 16px;
}
.cta-section__link a {
  color: #04617b;
  text-decoration: none;
  font-style: italic;
}
.cta-section__link a:hover {
  text-decoration: underline;
}

/* Service page */
.service-page .content-area {
  max-width: 800px;
  padding: 40px 0 0;
}
.service-page .content-area img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}
.service-page .content-area img.alignleft {
  float: left;
  margin: 0 24px 16px 0;
  max-width: 40%;
}
.service-page .content-area img.alignright {
  float: right;
  margin: 0 0 16px 24px;
  max-width: 50%;
}

/* About page */
.about-page > .container {
	padding-top: 40px;
}

.about-page .content-area {
  max-width: 800px;
  padding: 40px 0;
}

/* Contact page */
.contact-page .page-header {
  text-align: center;
  padding: 60px 0 30px;
}
.contact-page .page-header .page-title {
  font-size: 48px;
}
.contact-page .page-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #414141;
  margin: 0 0 24px;
}
.contact-page .phone-button {
  display: inline-block;
  margin-bottom: 40px;
}
.contact-page .contact-columns {
  display: flex;
  gap: 40px;
  padding-bottom: 60px;
}
.contact-page .contact-image-col {
  flex: 7;
}
.contact-page .contact-form-col {
  flex: 5;
}
.contact-page .contact-image-col img {
  width: 100%;
  height: auto;
}
.contact-page .contact-bottom {
  text-align: center;
  padding: 20px 0 40px;
}

/* Location page */
.location-page {
  text-align: center;
  padding: 40px 0;
}
.location-page .page-title {
  font-size: 48px;
}
.location-page .location-address {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 30px;
}
.location-page .location-content {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}
.location-page .location-map {
  margin: 40px auto;
  max-width: 600px;
}
.location-page .location-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
.location-page .location-social {
  margin: 30px 0;
}

/* Home page hero */
.home-hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.home-hero__title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 72px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Home page sections */
.home-section {
  padding: 60px 0;
}
.home-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.home-columns .col-7 { flex: 7; }
.home-columns .col-5 { flex: 5; }
.home-columns .col-6 { flex: 6; }
.home-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.home-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* Video thumbnail overlay with play button */
.video-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.video-container img {
  max-width: 100%;
  height: auto;
  display: block;
}
.video-thumbnail {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.video-thumbnail * {
  -webkit-tap-highlight-color: transparent;
}

/* FAQ items in service pages — plain visible (matches section 17) */

/* ==========================================================================
   24. Responsive — Tablet (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {

	:root {
		--header-height: 72px;
	}


	/* Typography */
	h1 { font-size: 32px; }
	h2 { font-size: 20px; }
	.hero-content h1 { font-size: 36px; }

	/* Header */
	.menu-toggle {
		display: flex;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background-color: var(--color-white);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: calc(var(--header-height) + 24px) 24px 40px;
		box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
		transition: right var(--transition-base);
		z-index: 1000;
		overflow-y: auto;
	}

	.main-navigation.is-open {
		right: 0;
	}

	.main-navigation ul {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.main-navigation li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}

	.main-navigation a {
		padding: 14px 0;
		font-size: 15px;
	}

	.main-navigation li.menu-item-has-children > a::after {
		float: right;
	}

	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border-top: none;
		background-color: var(--color-light-gray);
		display: none;
	}

	.main-navigation .sub-menu.is-open {
		display: block;
	}

	.main-navigation .sub-menu a {
		padding: 10px 16px;
	}

	.main-navigation .nav-cta a {
		margin-left: 0;
		margin-top: 8px;
	}


	/* Grid */
	.col-7,
	.col-5,
	.col-6,
	.col-4,
	.col-8,
	.col-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	/* Hero */
	.hero-section,
	.page-hero,
	.banner-section {
		min-height: 340px;
	}

	.hero-content {
		padding: 48px 16px;
	}

	/* Content sections */
	.content-section {
		padding: 60px 0;
	}

	/* Posts grid */
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	/* Services */
	.service-block {
		grid-template-columns: 1fr;
	}

	.service-block--reverse {
		direction: ltr;
	}

	.service-block__content {
		padding: 40px 28px;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Footer */
	.footer-inner {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	/* Single post */
	.single-post-layout .container {
		grid-template-columns: 1fr;
	}

	.widget-area {
		padding-left: 0;
		padding-top: 40px;
	}

	/* Contact */
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	/* Client stories list */
	.story-list-item {
		flex-direction: column;
	}
	.story-list-item__thumb {
		flex: none;
	}

	/* Footer bottom */
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	/* Section sub-nav */
	.section-nav__list {
		gap: 12px;
		justify-content: center;
	}

	/* Contact page columns */
	.contact-page .contact-columns {
		flex-direction: column;
	}

	/* Home page columns */
	.home-columns {
		flex-direction: column;
	}
}

/* ==========================================================================
   24. Responsive — Mobile (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {

	/* Typography */
	h1 { font-size: 28px; }
	.hero-content h1 { font-size: 28px; }
	.error-404 h1 { font-size: 80px; }

	/* Container */
	.container {
		padding: 0 16px;
	}

	/* Content sections */
	.content-section {
		padding: 48px 0;
	}

	/* Grid — stack everything */
	.posts-grid {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.stories-grid {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-legal-links {
		flex-direction: column;
		gap: 8px;
	}

	/* Buttons */
	.btn,
	.button {
		width: 100%;
		text-align: center;
	}

	.btn-large,
	.btn--large {
		padding: 14px 24px;
	}

	/* Service block */
	.service-block__content {
		padding: 32px 20px;
	}

	/* Single story */
	.story-header h1 {
		font-size: 28px;
	}
}
