/* ==========================================================================
   Tolking Studio — Main stylesheet
   --------------------------------------------------------------------------
   INDEX
   01. Design tokens
   02. Base & typography
   03. Layout (container, grids)
   04. Header & navigation
   05. Buttons & shared forms
   06. Home (front-page.php)
   07. Sidebar (template-parts/blog-sidebar.php)
   08. Post cards (template-parts/content-card.php)
   09. Page heroes (page.php, archive.php, home.php)
   10. About & contact (page-quienes-somos.php, page-contactanos.php)
   11. Single post (single.php, content-single.php, single-hero.php)
   12. Pagination & navigation
   13. Footer (footer.php)
   14. Plugins (JetFormBuilder, Rank Math)
   15. Utilities & WordPress core blocks
   --------------------------------------------------------------------------
   Related files:
   - assets/css/comments.css  → comments.php, comment_form()
   - assets/js/main.js        → header menu, single share button
   ========================================================================== */

/* 01. Design tokens
   ========================================================================== */

:root {
	--color-bg: #000000;
	--color-surface: #0e0e0e;
	--color-surface-2: #151515;
	--color-surface-3: #1b1b1b;
	--color-border: rgba(255, 255, 255, 0.08);
	--color-border-strong: rgba(255, 255, 255, 0.14);
	--color-text: #e4e4e4;
	--color-text-muted: #9ca3af;
	--color-accent: #b00002;
	--color-accent-hover: #d40004;
	--color-accent-soft: rgba(176, 0, 2, 0.14);
	--color-white: #ffffff;
	--font-sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container-width: 1440px;
	--gutter: clamp(1.25rem, 2.5vw, 2rem);
	--content-width: 720px;
	--radius-sm: 8px;
	--radius: 10px;
	--radius-lg: 14px;
	--shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.28);
	--shadow-card: 0 4px 20px rgba(0, 0, 0, 0.32);
	--transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	--section-space: clamp(2rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }

html {
	background: #000000;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text);
	background: #000000;
	-webkit-font-smoothing: antialiased;
}

.site-main {
	background: #000000;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover, a:focus { color: var(--color-accent-hover); }

h1, h2, h3, h4, h5, h6 {
	color: var(--color-white);
	line-height: 1.25;
	margin-top: 0;
}

p { margin-top: 0; margin-bottom: 1rem; }

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* 04. Header & navigation
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.82);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.site-title {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-white);
	text-decoration: none;
}

.site-title:hover { color: var(--color-white); }

.site-title__mark {
	width: 12px;
	height: 12px;
	background: var(--color-accent);
	border-radius: 2px;
	flex-shrink: 0;
}

.custom-logo { max-height: 42px; width: auto; }

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 8px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	cursor: pointer;
}

.menu-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-white);
	transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-navigation { display: none; }

.main-navigation.is-open {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	padding: 1rem 1.25rem;
}

.primary-menu, .footer-menu, .footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	display: block;
	padding: 0.5rem 0.75rem;
	color: var(--color-text);
	font-weight: 500;
	border-radius: 10px;
	transition: background var(--transition), color var(--transition);
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--color-accent);
}

.primary-menu a:focus {
	outline: none;
}

.primary-menu a:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
	border-radius: 10px;
}

@media (min-width: 900px) {
	.menu-toggle { display: none; }

	.main-navigation {
		display: block;
		position: static;
		background: none;
		border: none;
		padding: 0;
	}

	.primary-menu {
		display: flex;
		align-items: center;
		gap: 0.35rem;
	}

	.primary-menu a {
		padding: 0.55rem 1rem;
		border-radius: 10px;
	}

	.primary-menu a:hover {
		background: rgba(176, 0, 2, 0.12);
		color: var(--color-white);
	}

	.primary-menu a:focus-visible {
		background: rgba(176, 0, 2, 0.12);
		color: var(--color-white);
	}

	.primary-menu .current-menu-item > a,
	.primary-menu .current_page_item > a {
		background: var(--color-accent);
		color: var(--color-white);
	}

	.primary-menu .current-menu-item > a:focus-visible,
	.primary-menu .current_page_item > a:focus-visible {
		background: var(--color-accent);
		color: var(--color-white);
		outline: 2px solid var(--color-white);
		outline-offset: 2px;
	}
}

/* Buttons
   ========================================================================== */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.72rem 1.2rem;
	border-radius: var(--radius);
	font-family: inherit;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.2;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.button--primary {
	background: var(--color-accent);
	color: var(--color-white);
}

.button--primary:hover {
	background: var(--color-accent-hover);
	color: var(--color-white);
	transform: translateY(-1px);
}

.button--ghost {
	background: transparent;
	color: var(--color-white);
	border-color: var(--color-border-strong);
}

.button--ghost:hover {
	border-color: var(--color-white);
	color: var(--color-white);
}

.button--light {
	background: var(--color-white);
	color: #111;
}

.button--light:hover {
	background: #f0f0f0;
	color: #111;
}

/* Home hero
   ========================================================================== */

.home-hero {
	padding: 3.5rem 0 2.5rem;
	background:
		radial-gradient(ellipse at 70% 20%, rgba(176, 0, 2, 0.12), transparent 50%),
		#000000;
}

.home-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
}

.home-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 3.75rem);
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 1rem;
}

.home-hero__subtitle {
	font-size: 1.05rem;
	color: var(--color-text-muted);
	max-width: 540px;
	margin-bottom: 1.75rem;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

@media (max-width: 479px) {
	.home-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.home-hero__actions .button {
		width: 100%;
		text-align: center;
	}
}

.hero-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

@media (min-width: 480px) {
	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}

.hero-stats__value {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-white);
}

.hero-stats__label {
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

.home-hero__image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow);
}

.home-hero__image img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.hero-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero-card__image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.hero-card__body { padding: 1.25rem; }

.hero-card__title {
	font-size: 1.25rem;
	margin: 0.75rem 0;
}

.hero-card__title a { color: var(--color-white); }
.hero-card__title a:hover { color: var(--color-accent); }

.hero-card__excerpt {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.hero-card__meta {
	display: flex;
	gap: 1rem;
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

@media (min-width: 960px) {
	.home-hero__grid { grid-template-columns: 1.1fr 0.9fr; }
	.home-hero__image img { min-height: 420px; }
	.hero-card__image img { height: 280px; }
}

/* Category strip
   ========================================================================== */

.category-strip {
	background: #000000;
	border-block: 1px solid var(--color-border);
}

.category-strip__inner {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	padding: 0.9rem 0;
	scrollbar-width: none;
}

.category-strip__inner::-webkit-scrollbar { display: none; }

.category-strip a {
	color: var(--color-text-muted);
	font-size: 0.875rem;
	white-space: nowrap;
	font-weight: 500;
}

.category-strip a:hover { color: var(--color-white); }

/* Layout
   ========================================================================== */

.home-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2rem);
	padding-block: var(--section-space);
}

.home-posts {
	padding: 2.5rem 0 3rem;
}

@media (min-width: 960px) {
	.home-content { grid-template-columns: minmax(0, 1fr) 300px; }
}

.home-section + .home-section { margin-top: 2.5rem; }

.section-heading h2,
.page-title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
}

/* Post cards
   ========================================================================== */

.posts-grid {
	display: grid;
	gap: 1.5rem;
}

.posts-grid--featured {
	grid-template-columns: minmax(0, 1fr);
}

.posts-grid--recent {
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 700px) {
	.posts-grid--featured { grid-template-columns: repeat(2, 1fr); }
	.posts-grid--recent { grid-template-columns: repeat(2, 1fr); }
}

.post-card {
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.post-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-soft);
	border-color: var(--color-border-strong);
}

.post-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-card--large .post-card__image img { height: 240px; }

.post-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding: 1.35rem 1.5rem 1.25rem;
}

.post-card__meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.15rem;
}

.category-badge {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	background: var(--color-accent);
	color: var(--color-white);
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.category-badge:hover {
	background: var(--color-accent-hover);
	color: var(--color-white);
}

.reading-time {
	font-size: 0.8rem;
	font-weight: 500;
	color: #c0c0c0;
	white-space: nowrap;
}

.post-card__title {
	font-size: 1.3rem;
	line-height: 1.35;
	margin: 0;
}

.post-card__title a { color: var(--color-white); }
.post-card__title a:hover { color: var(--color-accent); }

.post-card__excerpt {
	color: #d4d4d4;
	font-size: 0.98rem;
	line-height: 1.7;
	margin: 0;
}

.post-card__excerpt p {
	margin: 0;
	color: inherit;
}

.post-card__meta-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.35rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--color-border);
	font-size: 0.85rem;
	color: #bdbdbd;
}

.post-card__author {
	font-weight: 600;
	color: #e0e0e0;
}

.post-card__date {
	color: #a8a8a8;
}

/* Sidebar (template-parts/blog-sidebar.php)
   ========================================================================== */

/* Sticky container — works on desktop (≥960px) where the grid has 2 columns */
@media (min-width: 960px) {
	.blog-sidebar {
		position: sticky;
		top: calc(var(--header-h, 72px) + 1.5rem);
		max-height: calc(100vh - var(--header-h, 72px) - 3rem);
		overflow-y: auto;
		/* Hide scrollbar visually but keep it functional */
		scrollbar-width: thin;
		scrollbar-color: var(--color-border) transparent;
	}

	.blog-sidebar::-webkit-scrollbar { width: 4px; }
	.blog-sidebar::-webkit-scrollbar-track { background: transparent; }
	.blog-sidebar::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 99px; }
}

.blog-sidebar__widget {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.2rem 1.25rem;
	margin-bottom: 1.25rem;
	box-shadow: var(--shadow-card);
}

.blog-sidebar__widget--accent {
	border-color: rgba(176, 0, 2, 0.35);
}

.blog-sidebar__title {
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.85rem;
}

.sidebar-categories,
.sidebar-recent {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar-categories li + li,
.sidebar-recent li + li { margin-top: 0.65rem; }

.sidebar-categories a {
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.sidebar-categories a:hover { color: var(--color-white); }

.sidebar-recent li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.sidebar-recent__thumb {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
}

.sidebar-recent__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidebar-recent__content a {
	display: block;
	color: var(--color-white);
	font-size: 0.875rem;
	line-height: 1.35;
	margin-bottom: 0.2rem;
}

.sidebar-recent__content time {
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.tag-cloud__item {
	padding: 0.3rem 0.7rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	font-size: 0.78rem;
	color: var(--color-text-muted);
}

.tag-cloud__item:hover {
	color: var(--color-white);
	border-color: var(--color-accent);
}

/* Forms
   ========================================================================== */

.search-form,
.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.newsletter-form--inline {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

.search-form__input,
.newsletter-form input[type="email"] {
	width: 100%;
	padding: 0.85rem 1rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-white);
	font-family: inherit;
	font-size: 0.9375rem;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.search-form__input:focus,
.newsletter-form input[type="email"]:focus {
	outline: none;
	border-color: rgba(176, 0, 2, 0.45);
	box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.search-form__input::placeholder,
.newsletter-form input::placeholder { color: var(--color-text-muted); }

.newsletter-form--inline input[type="email"] {
	flex: 1;
	min-width: 220px;
}

/* CTA & Newsletter sections
   ========================================================================== */

.home-cta {
	background: var(--color-accent);
	padding: 3rem 0;
}

.home-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
}

.home-cta h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: var(--color-white);
	margin: 0;
}

.home-newsletter {
	padding: 2.5rem 0 3.5rem;
	border-top: 1px solid var(--color-border);
}

.home-newsletter__inner {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.home-newsletter h2 {
	font-size: 1.5rem;
	margin-bottom: 0.35rem;
}

.home-newsletter p {
	color: var(--color-text-muted);
	margin: 0;
}

@media (min-width: 768px) {
	.home-cta__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.home-newsletter__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

/* Page heroes
   ========================================================================== */

.page-hero {
	padding: 2.5rem 0 1.5rem;
	background: #000000;
	border-bottom: 1px solid var(--color-border);
}

.page-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 0.75rem;
}

.page-hero__subtitle,
.page-hero__intro {
	color: var(--color-text-muted);
	max-width: 680px;
}

.page-hero__intro p:last-child { margin-bottom: 0; }

/* About page
   ========================================================================== */

.page-about-layout {
	padding-top: 2.5rem;
	padding-bottom: 3.5rem;
}

.page-about-layout__grid {
	padding-top: 0;
	padding-bottom: 0;
}

.page-about-layout--full {
	width: 100%;
	max-width: var(--container-width);
}

.breadcrumbs-wrap {
	margin-bottom: 1.5rem;
}

.breadcrumbs-wrap .rank-math-breadcrumb,
.breadcrumbs-fallback {
	margin: 0;
	font-size: 0.82rem;
	color: var(--color-text-muted);
}

.breadcrumbs-wrap .rank-math-breadcrumb a,
.breadcrumbs-fallback a {
	color: var(--color-text-muted);
}

.breadcrumbs-wrap .rank-math-breadcrumb a:hover,
.breadcrumbs-fallback a:hover {
	color: var(--color-accent);
}

.breadcrumbs-wrap .rank-math-breadcrumb .separator,
.breadcrumbs-sep {
	margin: 0 0.35rem;
	color: var(--color-text-muted);
	opacity: 0.7;
}

.breadcrumbs-wrap .last {
	color: var(--color-white);
}

.rank-math-seo-score,
.entry-content .rank-math-seo-score {
	display: none !important;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.section-label::before {
	content: '';
	display: inline-block;
	width: 1.5rem;
	height: 2px;
	background: var(--color-accent);
	flex-shrink: 0;
}

.about-hero {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--color-border);
}

.about-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--color-white);
	margin-bottom: 1.25rem;
	max-width: none;
}

.about-hero__title .text-accent {
	display: block;
	color: var(--color-accent);
}

.about-hero__intro {
	width: 100%;
	max-width: none;
	color: var(--color-text-muted);
	font-size: 1.02rem;
	line-height: 1.75;
}

.about-hero__intro p {
	margin-bottom: 1rem;
}

.about-hero__intro p:last-child {
	margin-bottom: 0;
}

.about-section {
	margin-bottom: 3rem;
}

.about-section__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 1.5rem;
	color: var(--color-white);
}

.philosophy-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 600px) {
	.philosophy-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.philosophy-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.philosophy-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 1.35rem 1.25rem;
	min-height: 100%;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.philosophy-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: var(--shadow);
	border-color: rgba(176, 0, 2, 0.35);
}

.philosophy-card:hover .philosophy-card__icon {
	background: rgba(176, 0, 2, 0.2);
	transform: scale(1.08);
}

.philosophy-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1rem;
	border-radius: 10px;
	background: rgba(176, 0, 2, 0.12);
	color: var(--color-accent);
	font-size: 1.15rem;
	transition: transform var(--transition), background var(--transition);
}

.philosophy-card h3 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 0.65rem;
}

.philosophy-card__text {
	color: var(--color-text-muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

.philosophy-card__text p {
	margin: 0;
}

.team-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.team-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 1.15rem;
	align-items: start;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 1.25rem;
}

@media (max-width: 479px) {
	.team-card {
		grid-template-columns: minmax(0, 1fr);
		justify-items: center;
		text-align: center;
		gap: 0.75rem;
	}
	.team-card__avatar {
		margin-bottom: 0.5rem;
	}
	.team-card__socials {
		justify-content: center;
	}
}

@media (min-width: 600px) {
	.team-card {
		grid-template-columns: 112px 1fr;
		padding: 1.35rem 1.5rem;
	}
}

.team-card__avatar {
	width: 88px;
	height: 88px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	border: 1px solid var(--color-border);
}

@media (min-width: 600px) {
	.team-card__avatar {
		width: 112px;
		height: 112px;
	}
}

.team-card__avatar img,
.team-card__avatar .avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}

.team-card__name {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 0.2rem;
}

.team-card__role {
	margin: 0 0 0.65rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--color-accent);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.team-card__bio {
	color: var(--color-text-muted);
	font-size: 0.92rem;
	line-height: 1.65;
	margin-bottom: 0.85rem;
}

.team-card__bio p {
	margin: 0;
}

.team-card__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.team-card__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	font-size: 1rem;
	color: var(--color-text);
}

.team-card__socials a:hover {
	color: var(--color-white);
	border-color: var(--color-accent);
}

.about-cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem 1.35rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 10px;
}

@media (min-width: 768px) {
	.about-cta {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 1.75rem 2rem;
	}
}

.about-cta__content h2 {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	margin-bottom: 0.35rem;
	color: var(--color-white);
}

.about-cta__content p {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.95rem;
	max-width: 520px;
}

/* Legacy about styles (other pages) */
.page-about {
	padding: 2.5rem 0 3.5rem;
}

.page-about__image {
	margin-bottom: 2rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
}

.page-about__image img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
}

.values-grid h2 {
	font-family: var(--font-display);
	margin-bottom: 1.25rem;
}

.values-grid__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 700px) {
	.values-grid__items { grid-template-columns: repeat(2, 1fr); }
}

.value-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
}

.value-card h3 {
	color: var(--color-accent);
	margin-bottom: 0.5rem;
}

.value-card__description {
	color: var(--color-text-muted);
	font-size: 0.95rem;
}

.value-card__description p:last-child { margin-bottom: 0; }

/* Contact page
   ========================================================================== */

.page-contact-layout .home-content {
	padding-top: 0;
}

.contact-hero {
	margin-bottom: 2rem;
}

.contact-form-box {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
}

.contact-form-box__title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin: 0 0 1.5rem;
	color: var(--color-white);
}

.contact-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.contact-icons__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-text-muted);
	font-size: 1.05rem;
	transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.contact-icons__btn:hover {
	color: var(--color-white);
	border-color: var(--color-accent);
	background: var(--color-accent-soft);
}

/* Single post
   ========================================================================== */

.page-with-sidebar {
	padding-top: 0;
}

/* Single header (single-hero.php → redesigned clean black)
   -------------------------------------------------------------------------- */

.single-header {
	padding: clamp(1.75rem, 3vw, 2.5rem) 0 0;
	background: var(--color-bg);
}

.single-header__inner {
	padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

/* Breadcrumbs */
.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0 0 1.35rem;
	padding: 0;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.breadcrumb-list a {
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color var(--transition);
}

.breadcrumb-list a:hover {
	color: var(--color-white);
}

.breadcrumb-list li[aria-current="page"] {
	color: var(--color-text-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 38ch;
}

/* Title */
.single-header__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.025em;
	margin: 0 0 1.35rem;
	color: var(--color-white);
}

/* Meta bar */
.single-header__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 1.25rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.88rem;
	color: var(--color-text-muted);
}

.single-header__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.single-header__meta-item i {
	font-size: 0.85rem;
	opacity: 0.7;
}

.single-header__meta-item a {
	color: var(--color-text-muted);
	text-decoration: none;
}

.single-header__meta-item a:hover {
	color: var(--color-white);
}

/* Featured image */
.single-header__image-wrap {
	margin-top: 1.75rem;
}

.single-header__image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	aspect-ratio: 16 / 7;
}

.single-header__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-post {
	padding-top: 1.5rem;
}

.single-post__topbar {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1.25rem;
}


.single-share {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.9rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-white);
	font-family: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
}

.single-share:hover {
	border-color: var(--color-accent);
	background: #222222;
}

.single-post__article {
	width: 100%;
}

.post-toc {
	margin-bottom: 2rem;
	padding: 1.25rem 1.35rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.post-toc__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: var(--color-white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	user-select: none;
	list-style: none;
}

.post-toc__title::-webkit-details-marker {
	display: none;
}

.post-toc__chevron {
	font-size: 0.85rem;
	color: var(--color-text-muted);
	transition: transform 0.3s ease;
}

.post-toc__wrapper[open] .post-toc__chevron {
	transform: rotate(180deg);
}

.post-toc__list {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.post-toc__item {
	margin: 0;
}

.post-toc__item + .post-toc__item {
	margin-top: 0.55rem;
}

.post-toc__item a {
	display: flex;
	align-items: baseline;
	gap: 0.55rem;
	color: #d6d6d6;
	font-size: 0.95rem;
	line-height: 1.5;
}

.post-toc__item a::before {
	content: none;
}

.post-toc__item a:hover {
	color: var(--color-white);
}

.post-toc__item--h3 {
	padding-left: 1.15rem;
}

.post-toc__item--h3 a::before {
	content: "–";
	color: var(--color-text-muted);
	font-weight: 600;
}

.single-post__content,
.single-post__article .entry-content {
	max-width: 820px;
	color: #dddddd;
	font-size: 1.02rem;
	line-height: 1.8;
}

.single-post__content > * + * {
	margin-top: 1.15rem;
}

.single-post__content > p:first-of-type {
	font-size: 1.12rem;
	font-style: italic;
	color: #e4e4e4;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
	margin-top: 2rem;
	scroll-margin-top: 6rem;
}

.single-post__content a {
	color: #ff8a8c;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.single-post__content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid var(--color-accent);
	background: var(--color-surface);
	color: #ececec;
}

.single-post__content pre,
.single-post__content code {
	background: #111111;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.single-post__content pre {
	padding: 1rem;
	overflow-x: auto;
}

.single-post__tags {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

.single-post__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-post__tag {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: #d8d8d8;
	font-size: 0.82rem;
}

.single-post__tag:hover {
	color: var(--color-white);
	border-color: var(--color-accent);
}

.author-card {
	display: flex;
	gap: 1rem;
	width: 100%;
	margin: 2rem 0 0;
	padding: 1.25rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.author-card__avatar {
	flex-shrink: 0;
	width: 88px;
	height: 88px;
	border-radius: 12px;
	overflow: hidden;
}

.author-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-card__name {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
}

.author-card__name a {
	color: var(--color-white);
}

.author-card__name a:hover {
	color: var(--color-accent);
}

.author-card__role {
	margin: 0 0 0.65rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.author-card__bio {
	color: #cfcfcf;
	font-size: 0.95rem;
	line-height: 1.65;
}

.author-card__bio p:last-child {
	margin-bottom: 0;
}

.post-faqs {
	width: 100%;
	margin: 2.5rem 0 0;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
}

.post-faqs__title {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 700;
	margin: 0 0 1.15rem;
	color: var(--color-white);
}

.post-faqs__list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.faq-item {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color var(--transition);
}

.faq-item[open] {
	border-color: var(--color-border-strong);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1rem 1.15rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.97rem;
	color: var(--color-white);
	list-style: none;
	user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item__chevron {
	flex-shrink: 0;
	font-size: 0.8rem;
	color: var(--color-accent);
	transition: transform var(--transition);
}

.faq-item[open] .faq-item__chevron {
	transform: rotate(180deg);
}

.faq-item__answer {
	padding: 0 1.15rem 1rem;
	color: #c8c8c8;
	font-size: 0.95rem;
	line-height: 1.7;
	border-top: 1px solid var(--color-border);
	padding-top: 0.9rem;
}

.faq-item__answer p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
	.single-hero__top {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.single-hero__brand,
	.single-hero__reading {
		justify-self: start;
	}

	.author-card {
		flex-direction: column;
	}
}

/* Pagination
   ========================================================================== */

.pagination,
.posts-navigation,
.post-navigation { margin-top: 2rem; }

.pagination .nav-links,
.posts-navigation .nav-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.pagination .page-numbers,
.posts-navigation a {
	display: inline-block;
	padding: 0.5rem 0.85rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-text);
}

.pagination .page-numbers.current {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-white);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 600px) {
	.post-navigation .nav-links { grid-template-columns: 1fr 1fr; }
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	padding: 1rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.post-navigation .nav-next { text-align: right; }

.nav-subtitle {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

/* 13. Footer (footer.php)
   ========================================================================== */

.site-footer {
	border-top: 1px solid var(--color-border);
	background: #000;
	overflow-x: hidden;
}

.site-footer__main { padding: 2.5rem 0; }

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.site-footer__description {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	max-width: 320px;
}

.site-footer__heading {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-text-muted);
	margin-bottom: 0.85rem;
}

.footer-links a {
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.footer-links li + li { margin-top: 0.5rem; }

.footer-links a:hover { color: var(--color-white); }

.footer-sitemap {
	max-height: 260px;
	overflow-y: auto;
	padding-right: 0.25rem;
}

.footer-sitemap__link {
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.footer-sitemap__link:hover {
	color: var(--color-white);
}

.footer-sitemap__link + .footer-sitemap__link {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.82rem;
}

.footer-sitemap .rank-math-html-sitemap__section + .rank-math-html-sitemap__section {
	margin-top: 1rem;
}

.footer-sitemap .rank-math-html-sitemap__title {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.footer-sitemap .rank-math-html-sitemap__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-sitemap .rank-math-html-sitemap__item + .rank-math-html-sitemap__item {
	margin-top: 0.35rem;
}

.footer-sitemap .rank-math-html-sitemap__link {
	color: var(--color-text-muted);
	font-size: 0.85rem;
	line-height: 1.45;
}

.footer-sitemap .rank-math-html-sitemap__link:hover {
	color: var(--color-white);
}

.footer-sitemap .rank-math-html-sitemap__date {
	color: #777777;
	font-size: 0.75rem;
}

.site-footer__bottom {
	border-top: 1px solid var(--color-border);
	padding: 1rem 0;
}

.site-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	text-align: center;
}

@media (min-width: 768px) {
	.site-footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.site-info,
.site-credit,
.site-footer__sitemap-link {
	margin: 0;
	font-size: 0.8rem;
	color: var(--color-text-muted);
}

.site-footer__sitemap-link a {
	color: var(--color-text-muted);
}

.site-footer__sitemap-link a:hover {
	color: var(--color-white);
}

.site-info a { color: var(--color-text); }

/* Gutenberg
   ========================================================================== */

.alignwide {
	max-width: calc(var(--content-width) + 160px);
	margin-inline: auto;
}

.alignfull {
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.entry-content a { color: var(--color-accent); }

/* 404
   ========================================================================== */

.content-area--centered {
	padding: 4rem 0;
	text-align: center;
}

.error-404 .page-title { font-family: var(--font-display); }

/* JetFormBuilder
   ========================================================================== */

.contact-form-box .jet-form-builder {
	--jfb-submit-bgc: var(--color-accent);
	--jfb-submit-color: var(--color-white);
}

.contact-form-box .jet-form-builder-row {
	margin-bottom: 1.25rem;
}

.contact-form-box .jet-form-builder__label,
.contact-form-box .jet-form-builder-row .jet-form-builder__label {
	margin-bottom: 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.contact-form-box .jet-form-builder__field,
.contact-form-box .jet-form-builder input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.contact-form-box .jet-form-builder textarea,
.contact-form-box .jet-form-builder select {
	width: 100%;
	padding: 0.8rem 1rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	color: var(--color-white);
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s ease;
}

.contact-form-box .jet-form-builder__field:focus,
.contact-form-box .jet-form-builder input:not([type="submit"]):not([type="button"]):focus,
.contact-form-box .jet-form-builder textarea:focus,
.contact-form-box .jet-form-builder select:focus {
	outline: none;
	border-color: var(--color-accent);
}

.contact-form-box .jet-form-builder__field::placeholder,
.contact-form-box .jet-form-builder textarea::placeholder,
.contact-form-box .jet-form-builder input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.contact-form-box .jet-form-builder-row.field-type-textarea-field .jet-form-builder__field,
.contact-form-box .jet-form-builder textarea {
	min-height: 9rem;
	resize: vertical;
}

.contact-form-box .jet-form-builder__submit-wrap,
.contact-form-box .jet-form-builder-row.field-type-submit-field,
.contact-form-box .jet-form-builder__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 1rem;
	margin-top: 0.5rem;
}

.contact-form-box .jet-form-builder__submit,
.contact-form-box .jet-form-builder-row.field-type-submit-field button,
.contact-form-box .jet-form-builder-row.field-type-submit-field input[type="submit"],
.contact-form-box .jet-form-builder button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.75rem 1.35rem;
	background: var(--color-accent);
	border: 1px solid var(--color-accent);
	border-radius: 10px;
	color: var(--color-white);
	font-family: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-form-box .jet-form-builder__submit:hover,
.contact-form-box .jet-form-builder-row.field-type-submit-field button:hover,
.contact-form-box .jet-form-builder-row.field-type-submit-field input[type="submit"]:hover,
.contact-form-box .jet-form-builder button[type="submit"]:hover {
	background: #8f0002;
	border-color: #8f0002;
}

.contact-form-box .jet-form-builder__clear,
.contact-form-box .jet-form-builder button[type="reset"],
.contact-form-box .jet-form-builder .jet-form-builder-re-clear {
	padding: 0;
	background: none;
	border: 0;
	color: var(--color-text-muted);
	font-family: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
}

.contact-form-box .jet-form-builder__clear:hover,
.contact-form-box .jet-form-builder button[type="reset"]:hover,
.contact-form-box .jet-form-builder .jet-form-builder-re-clear:hover {
	color: var(--color-white);
}

.jet-form-builder-row { margin-bottom: 1rem; }

.jet-form-builder__label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
}

.jet-form-builder__field {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--color-surface-2);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	color: var(--color-white);
}

/* Utilities
   ========================================================================== */

.whatsapp-widget {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 9999;
}

.whatsapp-widget__button {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-width: 3.5rem;
	height: 3.5rem;
	padding: 0 1rem;
	background: #25d366;
	border-radius: 999px;
	color: #ffffff;
	font-size: 1.65rem;
	line-height: 1;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-widget__button:hover {
	transform: translateY(-2px);
	background: #1ebe57;
	color: #ffffff;
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-widget__label {
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 700;
}

@media (max-width: 599px) {
	.whatsapp-widget__label {
		display: none;
	}

	.whatsapp-widget__button {
		justify-content: center;
		width: 3.5rem;
		padding: 0;
	}
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ==========================================================================
   Code Blocks (macOS style window with black background and Prism syntax colors)
   ========================================================================== */

.entry-content pre {
	position: relative;
	background-color: #000000 !important;
	border: 1px solid #222222;
	border-radius: 12px;
	padding: 3rem 1.5rem 1.5rem !important;
	margin: 2rem 0;
	overflow-x: auto;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* macOS Window Header Bar */
.entry-content pre::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.5rem;
	background-color: #111111;
	border-top-left-radius: 11px;
	border-top-right-radius: 11px;
	border-bottom: 1px solid #222222;
}

/* macOS dots: red, yellow, green */
.entry-content pre::after {
	content: "";
	position: absolute;
	top: 0.85rem;
	left: 1.25rem;
	width: 10px;
	height: 10px;
	background-color: #ff5f56;
	border-radius: 50%;
	box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #27c93f;
	z-index: 2;
}

.entry-content pre code {
	font-family: 'Fira Code', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace !important;
	font-size: 0.92rem;
	line-height: 1.6;
	color: #e0e0e0 !important;
	background: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	display: block;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	text-shadow: none !important;
}

/* Inline code tags (inside paragraph text) */
.entry-content code:not(pre code) {
	background-color: #111111 !important;
	color: #ff79c6 !important;
	padding: 0.2rem 0.45rem !important;
	border-radius: 6px;
	font-family: Consolas, Monaco, 'Andale Mono', monospace;
	font-size: 0.9em;
	border: 1px solid #222222;
	word-break: break-word;
}

/* Prism syntax highlighting colors override */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #6272a4 !important;
	font-style: italic;
}

.token.punctuation {
	color: #f8f8f2 !important;
}

.token.namespace {
	opacity: 0.7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	color: #ff79c6 !important;
}

.token.boolean,
.token.number {
	color: #bd93f9 !important;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #f1fa8c !important;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #f8f8f2 !important;
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: #ff79c6 !important;
}

.token.function,
.token.class-name {
	color: #50fa7b !important;
}

.token.regex,
.token.important,
.token.variable {
	color: #ffb86c !important;
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

/* ==========================================================================
   Responsive Gutenberg Overrides
   ========================================================================== */

.entry-content iframe,
.entry-content embed,
.entry-content object,
.entry-content video {
	max-width: 100%;
	height: auto;
}

.entry-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
	.alignfull {
		margin-inline: calc(-1 * var(--gutter));
		width: auto;
		max-width: none;
	}
}

@font-face {
	font-family: 'FontAwesome';
	src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0');
	src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
		 url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
		 url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
		 url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
		 url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
