:root {
	--wps-bg: #050505;
	--wps-card: #0d0d0d;
	--wps-card-light: #111111;
	--wps-border: #1d1d1d;
	--wps-accent: #ffb400;
	--wps-text: #ffffff;
	--wps-muted: #a0a0a0;
	--wps-muted-light: #b5b5b5;
	--wps-radius-sm: 10px;
	--wps-radius-md: 16px;
	--wps-radius-lg: 24px;
	--wps-radius-xl: 30px;
	--wps-container: 1400px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--wps-bg);
	color: var(--wps-text);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

body.admin-bar .site-header.is-sticky {
	top: 32px;
}

a {
	color: inherit;
	text-decoration: none;
}

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

img {
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

.container {
	width: 90%;
	max-width: var(--wps-container);
	margin: 0 auto;
}

.site-main {
	min-height: 70vh;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 12px;
	left: 12px;
	z-index: 10000;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--wps-accent);
	color: #000;
	border-radius: var(--wps-radius-sm);
}

.site-header {
	border-bottom: 1px solid var(--wps-border);
	background: color-mix(in srgb, var(--wps-bg) 92%, transparent);
	backdrop-filter: blur(14px);
	z-index: 999;
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
}

.site-header.has-scrolled {
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.site-header nav {
	padding: 20px 0;
}

.site-nav {
	padding: 20px 0;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 52px;
}

.logo,
.site-branding {
	display: flex;
	align-items: center;
	min-width: 120px;
}

.custom-logo,
.logo img {
	width: auto;
	max-width: 150px;
	max-height: 56px;
	display: block;
}

.site-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--wps-text);
}

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

.header-button-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 120px;
}

.menu,
.primary-menu,
.footer-menu,
.subscribe-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 35px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu li,
.footer-menu li,
.subscribe-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-button-menu .menu,
.header-button-menu .subscribe-menu {
	gap: 0;
}

.menu a,
.primary-menu a {
	color: #d5d5d5;
	font-size: 15px;
	transition: color 0.25s ease;
}

.menu a:hover,
.primary-menu a:hover,
.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a {
	color: var(--wps-accent);
}

.subscribe-btn,
.subscribe-menu a,
.btn-primary,
.cta-btn,
.search-submit,
.wp-block-button.is-style-wps-yellow-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	background: var(--wps-accent);
	color: #000;
	border: 1px solid var(--wps-accent);
	padding: 12px 24px;
	border-radius: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
	padding: 16px 28px;
	border-radius: 14px;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	border: 1px solid #2d2d2d;
	padding: 16px 28px;
	border-radius: 14px;
	color: var(--wps-text);
	font-weight: 700;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.subscribe-btn:hover,
.subscribe-menu a:hover,
.btn-primary:hover,
.cta-btn:hover,
.search-submit:hover,
.btn-secondary:hover {
	transform: translateY(-2px);
	color: #000;
	box-shadow: 0 16px 40px rgba(255, 180, 0, 0.16);
}

.btn-secondary:hover {
	color: var(--wps-text);
	border-color: var(--wps-accent);
	box-shadow: none;
}

.mobile-menu-toggle,
.mobile-menu-logo {
	display: none;
}

.hero {
	position: relative;
	padding: 80px 0;
	background-size: cover;
	background-position: center;
}

.hero.has-hero-background::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.72));
}

.hero > .container {
	position: relative;
	z-index: 1;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
	gap: 50px;
	align-items: center;
}

.tag {
	color: var(--wps-accent);
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 1px;
	font-size: 14px;
	text-transform: uppercase;
}

.hero h1,
.landing-copy h1 {
	font-size: clamp(46px, 6vw, 72px);
	line-height: 1.1;
	margin: 0 0 25px;
	font-weight: 800;
}

.hero h1 span {
	color: var(--wps-accent);
}

.hero p,
.landing-copy p {
	color: #c9c9c9;
	line-height: 1.8;
	font-size: 18px;
	margin: 0 0 40px;
	max-width: 720px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-card,
.blog-card,
.article-card,
.related-card,
.category-card,
.sidebar-card,
.cta-box,
.newsletter,
.stat-card {
	background: var(--wps-card);
	border: 1px solid var(--wps-border);
	border-radius: var(--wps-radius-lg);
}

.hero-card {
	overflow: hidden;
	border-radius: var(--wps-radius-xl);
}

.hero-card img,
.blog-card img,
.article-card img,
.related-card img,
.category-card-image {
	width: 100%;
	display: block;
	object-fit: cover;
}

.hero-card img {
	height: 390px;
}

.article-card img {
	height: 230px;
}

.hero-content {
	padding: 30px;
}

.badge,
.blog-tag,
.article-tag,
.article-category {
	display: inline-flex;
	align-items: center;
	background: var(--wps-accent);
	color: #000;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero-content h2 {
	font-size: 38px;
	line-height: 1.3;
	margin: 0 0 20px;
}

.hero-content p {
	color: var(--wps-muted);
	margin: 0;
}

.section {
	padding: 70px 0;
}

.section-title {
	font-size: clamp(32px, 4vw, 42px);
	line-height: 1.2;
	margin: 0 0 40px;
	font-weight: 800;
}

.category-grid,
.article-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 25px;
}

.trending-section .article-grid {
	align-items: stretch;
}

.trending-section .article-card {
	min-height: 528px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 24px;
}

.trending-section .article-card > a {
	display: block;
	flex: 0 0 220px;
	overflow: hidden;
}

.trending-section .article-card img {
	width: 100%;
	height: 220px;
	display: block;
	object-fit: cover;
}

.trending-section .article-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 26px 25px 24px;
}

.trending-section .article-category {
	margin-bottom: 20px;
}

.trending-section .article-content h4 {
	font-size: 28px;
	line-height: 1.35;
	margin: 0 0 18px;
}

.trending-section .article-content p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 26px;
}

.trending-section .explore {
	margin-top: auto;
}

.category-card {
	padding: 36px 30px;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-card:hover,
.blog-card:hover,
.related-card:hover {
	transform: translateY(-5px);
	border-color: var(--wps-accent);
}

.category-icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: color-mix(in srgb, var(--category-accent, var(--wps-accent)) 18%, transparent);
	color: var(--category-accent, var(--wps-accent));
	border: 1px solid color-mix(in srgb, var(--category-accent, var(--wps-accent)) 42%, transparent);
	font-size: 24px;
	font-weight: 800;
}

.category-card h3 {
	margin: 25px 0 15px;
	font-size: 26px;
}

.category-card p {
	color: #a9a9a9;
	line-height: 1.7;
	margin: 0 0 25px;
}

.explore,
.read-more {
	color: var(--wps-accent);
	font-weight: 700;
}

.blog-card {
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card__image {
	display: block;
	background: var(--wps-card-light);
}

.blog-card img {
	height: 250px;
}

.blog-content,
.article-content,
.related-content {
	padding: 28px;
}

.blog-content h2,
.article-content h4 {
	font-size: 28px;
	line-height: 1.35;
	margin: 0 0 16px;
}

.article-grid .blog-content h2 {
	font-size: 24px;
}

.blog-meta,
.article-meta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	color: #8d8d8d;
	margin-bottom: 20px;
	font-size: 14px;
}

.blog-content p,
.article-content p,
.related-content p {
	color: var(--wps-muted-light);
	line-height: 1.8;
	margin: 0 0 25px;
}

.newsletter {
	padding: 50px;
	border-radius: var(--wps-radius-xl);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.newsletter h3 {
	font-size: clamp(28px, 4vw, 38px);
	line-height: 1.2;
	margin: 0 0 15px;
}

.newsletter p {
	color: #bdbdbd;
	margin: 0;
}

.newsletter-form-wrap {
	width: 100%;
	max-width: 520px;
}

.newsletter-form,
.newsletter-form .wpcf7,
.newsletter-form .wpcf7 form,
.newsletter-form .wpcf7 p,
.search-form {
	display: flex;
	width: 100%;
}

.newsletter-form .wpcf7 p {
	margin: 0;
}

.newsletter-form .wpcf7-form-control-wrap {
	display: block;
	flex: 1;
}

.newsletter-form input:not([type="submit"]),
.search-field,
.comment-form input:not([type="submit"]),
.comment-form textarea,
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select,
.wp-block-search__input {
	width: 100%;
	background: var(--wps-bg);
	border: 1px solid var(--wps-border);
	padding: 16px 18px;
	color: var(--wps-text);
	border-radius: 14px;
	outline: none;
}

.newsletter-form input:not([type="submit"]) {
	border-radius: 14px 0 0 14px;
	border-right: 0;
}

.newsletter-form button,
.newsletter-form input[type="submit"],
.search-submit,
.wp-block-search__button {
	min-height: 54px;
	background: var(--wps-accent);
	color: #000;
	border: 1px solid var(--wps-accent);
	padding: 16px 28px;
	border-radius: 0 14px 14px 0;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}

.newsletter-form .wpcf7-spinner {
	display: none;
}

.blog-sidebar .newsletter,
.single-sidebar .newsletter {
	display: block;
	padding: 30px;
	border-radius: var(--wps-radius-lg);
}

.blog-sidebar .newsletter h3,
.single-sidebar .newsletter h3 {
	font-size: 28px;
}

.blog-sidebar .newsletter p,
.single-sidebar .newsletter p {
	line-height: 1.7;
	margin-bottom: 25px;
}

.blog-sidebar .newsletter-form,
.single-sidebar .newsletter-form {
	display: grid;
	gap: 15px;
}

.blog-sidebar .newsletter-form .wpcf7 form,
.blog-sidebar .newsletter-form .wpcf7 p,
.single-sidebar .newsletter-form .wpcf7 form,
.single-sidebar .newsletter-form .wpcf7 p {
	display: grid;
	gap: 15px;
}

.blog-sidebar .newsletter-form input:not([type="submit"]),
.blog-sidebar .newsletter-form input[type="submit"],
.blog-sidebar .newsletter-form button,
.single-sidebar .newsletter-form input:not([type="submit"]),
.single-sidebar .newsletter-form input[type="submit"],
.single-sidebar .newsletter-form button {
	width: 100%;
	border-radius: 12px;
	border: 1px solid var(--wps-border);
}

.page-header {
	padding: 80px 0 50px;
}

.breadcrumb {
	color: #999;
	margin-bottom: 20px;
	font-size: 14px;
}

.breadcrumb a {
	color: #bdbdbd;
}

.page-header h1,
.article-hero h1 {
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.18;
	max-width: 1060px;
	margin: 0 0 20px;
	font-weight: 800;
}

.page-header p {
	max-width: 750px;
	color: #b0b0b0;
	line-height: 1.8;
	font-size: 18px;
}

.filter-section {
	padding-bottom: 50px;
}

.filters {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 12px 22px;
	border-radius: 14px;
	border: 1px solid #252525;
	background: var(--wps-card);
	color: var(--wps-text);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--wps-accent);
	color: #000;
	border-color: var(--wps-accent);
}

.blog-section {
	padding-bottom: 80px;
}

.layout {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
	gap: 40px;
	align-items: start;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.blog-sidebar,
.single-sidebar {
	display: grid;
	gap: 30px;
}

.single-sidebar {
	position: sticky;
	top: 120px;
	align-self: start;
}

body.admin-bar .single-sidebar {
	top: 152px;
}

.sidebar-card {
	padding: 30px;
	margin: 0;
}

.single-sidebar .sidebar-card {
	position: static;
	top: auto;
}

.sidebar-card h3,
.widget-title {
	margin: 0 0 25px;
	font-size: 24px;
}

.popular-post {
	margin-bottom: 25px;
	border-bottom: 1px solid #1f1f1f;
	padding-bottom: 20px;
}

.popular-post:last-child {
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}

.popular-post h4 {
	font-size: 18px;
	line-height: 1.5;
	margin: 0 0 10px;
}

.popular-post span {
	color: #8d8d8d;
	font-size: 13px;
}

.single-contact-card {
	background: #fff;
	color: #202020;
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	box-shadow: 0 18px 36px rgba(255, 255, 255, 0.08), 0 16px 35px rgba(0, 0, 0, 0.32);
	padding: 18px;
}

.single-contact-card h3 {
	margin: 0 0 18px;
	color: #151515;
	font-size: 22px;
	line-height: 1.2;
}

.single-contact-card .wpcf7 form,
.single-contact-form--fallback {
	display: block;
}

.single-contact-card .wpcf7 p {
	margin: 0;
}

.wps-sidebar-cf7-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.wps-sidebar-cf7-email,
.wps-sidebar-cf7-message,
.wps-sidebar-cf7-check {
	grid-column: 1 / -1;
}

.wps-sidebar-cf7-field {
	position: relative;
}

.wps-sidebar-cf7-field::before {
	content: "";
	position: absolute;
	top: 17px;
	left: 14px;
	z-index: 1;
	width: 17px;
	height: 17px;
	border: 1.5px solid #1d1d1d;
	border-radius: 50%;
	pointer-events: none;
}

.wps-sidebar-cf7-phone::before,
.wps-sidebar-cf7-email::before {
	border-radius: 3px;
}

.wps-sidebar-cf7-field::after {
	content: "";
	position: absolute;
	top: 13px;
	bottom: 13px;
	left: 40px;
	width: 1px;
	background: #1d1d1d;
	pointer-events: none;
}

.wps-sidebar-cf7-message::before,
.wps-sidebar-cf7-message::after {
	display: none;
}

.single-contact-card .wpcf7-form-control-wrap {
	display: block;
}

.single-contact-card input:not([type="submit"]):not([type="checkbox"]),
.single-contact-card textarea {
	width: 100%;
	min-height: 54px;
	background: #fff;
	border: 1.5px solid #1f1f1f;
	border-radius: 10px;
	color: #222;
	font-size: 15px;
	line-height: 1.4;
	padding: 14px 14px 14px 52px;
	outline: none;
}

.single-contact-card textarea {
	min-height: 112px;
	padding: 14px;
	border-color: #b8c0c8;
	resize: vertical;
}

.single-contact-card input::placeholder,
.single-contact-card textarea::placeholder {
	color: #59616a;
	opacity: 1;
}

.wps-sidebar-cf7-check {
	color: #2b2b2b;
	font-size: 15px;
	line-height: 1.45;
}

.wps-sidebar-cf7-check .wpcf7-list-item {
	margin: 0;
}

.single-contact-card input[type="checkbox"] {
	width: 14px;
	height: 14px;
	margin: 0 7px 0 0;
	vertical-align: -2px;
	accent-color: var(--wps-accent);
}

.single-contact-card .wpcf7-submit,
.single-contact-form--fallback button {
	width: 100%;
	min-height: 50px;
	margin-top: 16px;
	background: var(--wps-accent);
	color: #000;
	border: 0;
	border-radius: 9px;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
}

.single-contact-card .wpcf7-spinner {
	display: none;
}

.single-contact-card .wpcf7-response-output {
	margin: 14px 0 0;
	color: #222;
	font-size: 13px;
}

.pagination {
	margin-top: 60px;
}

.pagination .page-numbers {
	display: flex;
	gap: 15px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pagination a,
.pagination span {
	min-width: 50px;
	height: 50px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	background: var(--wps-card);
	border: 1px solid var(--wps-border);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pagination a:hover,
.pagination .current {
	background: var(--wps-accent);
	color: #000;
	border-color: var(--wps-accent);
}

.article-hero {
	padding: 70px 0 50px;
}

.single-post-entry .article-hero .container,
.single-post-entry .article-layout,
.related-section .container {
	max-width: var(--wps-container);
}

.article-hero h1 {
	max-width: 1000px;
	margin-bottom: 30px;
}

.article-tag {
	border-radius: 10px;
}

.featured-image {
	border-radius: var(--wps-radius-xl);
	overflow: hidden;
	border: 1px solid var(--wps-border);
	background: var(--wps-card);
}

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

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 900px) minmax(360px, 420px);
	align-items: start;
	gap: 60px;
	padding: 70px 0;
}

.single-post-entry .article-content,
.page-content {
	max-width: 900px;
}

.single-post-entry .article-content p,
.page-content p,
.entry-content p {
	color: #b8b8b8;
	line-height: 2;
	font-size: 18px;
	margin: 0 0 30px;
}

.single-post-entry .article-content h2,
.page-content h2,
.entry-content h2 {
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.35;
	margin: 60px 0 25px;
}

.single-post-entry .article-content h3,
.page-content h3,
.entry-content h3 {
	font-size: 30px;
	line-height: 1.35;
	margin: 45px 0 20px;
}

.single-post-entry .article-content h4,
.page-content h4,
.entry-content h4 {
	font-size: 24px;
	margin: 36px 0 16px;
}

.single-post-entry .article-content ul,
.single-post-entry .article-content ol,
.page-content ul,
.page-content ol,
.entry-content ul,
.entry-content ol {
	color: #bdbdbd;
	padding-left: 24px;
	margin: 0 0 30px;
}

.single-post-entry .article-content li,
.page-content li,
.entry-content li {
	margin-bottom: 12px;
	line-height: 1.8;
}

.single-post-entry .article-content img,
.page-content img,
.wp-block-image img {
	border-radius: var(--wps-radius-lg);
}

.article-image {
	margin: 50px 0;
	overflow: hidden;
	border-radius: var(--wps-radius-lg);
}

.article-image img {
	width: 100%;
	display: block;
}

.highlight-box,
.is-style-wps-highlight-box {
	background: var(--wps-card);
	border-left: 4px solid var(--wps-accent);
	padding: 35px;
	border-radius: 18px;
	margin: 40px 0;
}

.highlight-box p,
.is-style-wps-highlight-box p {
	margin: 0;
	font-size: 20px;
	color: var(--wps-text);
	line-height: 1.8;
}

.toc a {
	display: block;
	padding: 12px 0;
	color: #b0b0b0;
	border-bottom: 1px solid var(--wps-border);
	transition: color 0.25s ease;
}

.toc .toc-level-3 {
	padding-left: 16px;
	font-size: 14px;
}

.toc a:hover,
.toc a.active {
	color: var(--wps-accent);
}

.cta-box {
	padding: 50px;
	border-radius: var(--wps-radius-xl);
	margin: 70px 0 0;
	text-align: center;
}

.cta-box h2 {
	margin: 0 0 20px;
	font-size: clamp(34px, 5vw, 48px);
}

.cta-box p {
	margin: 0 auto 35px;
	color: #aaa;
	max-width: 700px;
}

.related-section {
	padding: 20px 0 80px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.related-card {
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.related-card img {
	height: 240px;
}

.related-content h3 {
	font-size: 28px;
	line-height: 1.5;
	margin: 0 0 15px;
}

footer,
.site-footer {
	border-top: 1px solid var(--wps-border);
	padding: 80px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
}

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer p {
	color: #888;
	margin: 0;
}

.footer-logo img,
.footer-logo .custom-logo {
	width: auto;
	max-width: 150px;
	margin-bottom: 25px;
}

.footer-logo p {
	color: var(--wps-muted);
	line-height: 1.8;
	max-width: 420px;
	margin: 20px 0 0;
}

.footer-links h4 {
	margin: 0 0 25px;
	font-size: 20px;
}

.footer-links a,
.footer-menu a {
	display: block;
	color: var(--wps-muted);
	margin-bottom: 15px;
}

.footer-menu {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu-inline {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}

.footer-menu-inline a {
	margin-bottom: 0;
}

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

.footer-social a {
	display: inline-flex;
	margin: 0;
	padding: 8px 12px;
	border: 1px solid var(--wps-border);
	border-radius: 999px;
	color: var(--wps-muted-light);
	font-size: 13px;
}

.footer-social li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wpcf7 form {
	display: grid;
	gap: 16px;
}

.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	background: var(--wps-bg);
	border: 1px solid var(--wps-border);
	padding: 16px 18px;
	color: var(--wps-text);
	border-radius: 14px;
	outline: none;
}

.wpcf7 input[type="submit"] {
	background: var(--wps-accent);
	color: #000;
	border: 0;
	border-radius: 12px;
	padding: 16px 24px;
	font-weight: 700;
	cursor: pointer;
}

.newsletter .newsletter-form input:not([type="submit"]) {
	border-radius: 14px 0 0 14px;
	border-right: 0;
}

.newsletter .newsletter-form input[type="submit"] {
	min-height: 54px;
	border: 1px solid var(--wps-accent);
	border-radius: 0 14px 14px 0;
	padding: 16px 28px;
}

.blog-sidebar .newsletter .newsletter-form input:not([type="submit"]),
.blog-sidebar .newsletter .newsletter-form input[type="submit"],
.single-sidebar .newsletter .newsletter-form input:not([type="submit"]),
.single-sidebar .newsletter .newsletter-form input[type="submit"] {
	border-radius: 12px;
	border: 1px solid var(--wps-border);
}

.copyright {
	border-top: 1px solid var(--wps-border);
	padding-top: 30px;
	text-align: center;
	color: #777;
}

.page-hero-grid,
.two-column,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
	gap: 42px;
	align-items: center;
}

.page-hero-image {
	border-radius: var(--wps-radius-xl);
	overflow: hidden;
	border: 1px solid var(--wps-border);
	background: var(--wps-card);
}

.page-hero-image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

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

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.stat-card {
	padding: 34px;
	text-align: center;
}

.stat-card strong {
	display: block;
	color: var(--wps-accent);
	font-size: 44px;
	line-height: 1;
	margin-bottom: 12px;
}

.stat-card span {
	color: var(--wps-muted-light);
}

.contact-details p {
	display: grid;
	gap: 6px;
	margin: 0 0 24px;
	color: var(--wps-muted-light);
}

.contact-details strong {
	color: var(--wps-text);
}

.map-embed iframe {
	width: 100%;
	min-height: 420px;
	border: 1px solid var(--wps-border);
	border-radius: var(--wps-radius-lg);
}

.error-code {
	color: var(--wps-accent) !important;
	font-size: clamp(82px, 16vw, 180px) !important;
	line-height: 0.9 !important;
	font-weight: 800;
	margin: 0 0 16px !important;
}

.error-actions {
	margin: 28px 0;
}

.wp-block-quote,
.wp-block-pullquote,
blockquote {
	border-left: 4px solid var(--wps-accent);
	background: var(--wps-card);
	margin: 40px 0;
	padding: 28px 32px;
	border-radius: 16px;
	color: var(--wps-text);
}

.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	background: var(--wps-card);
	border-radius: var(--wps-radius-md);
	overflow: hidden;
}

.wp-block-table td,
.wp-block-table th,
.entry-content table td,
.entry-content table th {
	border: 1px solid var(--wps-border);
	padding: 14px;
}

.wp-block-code,
pre {
	background: #090909;
	border: 1px solid var(--wps-border);
	border-radius: var(--wps-radius-md);
	padding: 22px;
	color: #f3f3f3;
	overflow-x: auto;
}

.wp-block-button__link {
	border-radius: 14px;
}

.is-style-wps-dark-card,
.is-style-wps-cta-box {
	background: var(--wps-card);
	border: 1px solid var(--wps-border);
	border-radius: var(--wps-radius-lg);
	padding: 30px;
}

.is-style-wps-muted {
	color: var(--wps-muted-light) !important;
}

.alignwide {
	max-width: min(1200px, 100%);
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

.wp-caption,
.gallery {
	max-width: 100%;
}

.wp-caption-text,
.wp-block-image figcaption {
	color: var(--wps-muted);
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.gallery-item {
	margin: 0;
}

.sticky .blog-card,
.bypostauthor {
	border-color: var(--wps-accent);
}

.comments-area {
	margin-top: 60px;
}

.comments-title {
	font-size: 30px;
}

.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment {
	background: var(--wps-card);
	border: 1px solid var(--wps-border);
	border-radius: var(--wps-radius-md);
	padding: 24px;
	margin-bottom: 20px;
}

.comment-form {
	display: grid;
	gap: 16px;
	margin-top: 30px;
}

.comment-form .submit {
	background: var(--wps-accent);
	color: #000;
	border: 0;
	border-radius: 12px;
	padding: 14px 22px;
	font-weight: 700;
	cursor: pointer;
}
