/* ─────────────────────────────────────────────────────
   MOSHARAF CORE — BASE STYLES
   Design tokens (:root variables) are defined in style.css.
   This file contains base/reset, typography, layout utilities,
   button classes, and colour utility classes — all using
   var(--lsc-*) tokens defined in style.css.
   ───────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────
   BACKGROUND UTILITY CLASSES
   Maps directly to the token palette above.
   Use these in ACF background_color select fields.
   ───────────────────────────────────────────────────── */
.bg-lsc-primary   { background: var(--lsc-color-primary); color: var(--lsc-color-light); }
.bg-lsc-secondary { background: var(--lsc-color-secondary); }
.bg-lsc-accent    { background: var(--lsc-color-accent); }
.bg-lsc-dark      { background: var(--lsc-color-dark); }
.bg-lsc-mid       { background: var(--lsc-color-mid); }
.bg-lsc-subtle    { background: var(--lsc-color-subtle); }
.bg-lsc-light     { background: var(--lsc-color-light); }

/* ─────────────────────────────────────────────────────
   TEXT COLOR UTILITY CLASSES
   ───────────────────────────────────────────────────── */
.color-lsc-primary   { color: var(--lsc-color-primary); }
.color-lsc-secondary { color: var(--lsc-color-secondary); }
.color-lsc-accent    { color: var(--lsc-color-accent); }
.color-lsc-dark      { color: var(--lsc-color-dark); }
.color-lsc-mid       { color: var(--lsc-color-mid); }
.color-lsc-subtle    { color: var(--lsc-color-subtle); }
.color-lsc-light     { color: var(--lsc-color-light); }

/* Brand primary text utility */
p.text-primary,
.text-primary p {
    color: var(--lsc-color-primary);
}


* {
    box-sizing: border-box;
    /* Mobile browsers flash a default semi-transparent tint across a
       tapped link/button's whole hit area (including ancestors like
       table rows) on press — most visible on the cart page's product
       row and coupon controls, where it reads as a stray gray
       "hover" box that doesn't match any state this theme defines.
       `:active`/`:focus-visible` already give touch/keyboard users
       proper feedback, so this default is just noise to mute. */
    -webkit-tap-highlight-color: transparent;
}

/* Keyboard focus ring — suppressed on mouse/touch via :focus-visible */
/* :focus-visible {
    outline: 0.125rem solid var(--lsc-color-accent);
    outline-offset: 0.125rem;
    border-radius: 0.125rem;
} */

html {
    height: 100%;
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

@media only screen and (min-width: 1921px) {
    html {
        font-size: 0.833vw;
    }
}

body {
    color: var(--lsc-color-text);
    background-color: var(--lsc-color-background);
    font-family: var(--lsc-font-body);
    font-size: 1.0625rem; /* 17px */
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    height: 100%;
    margin: 0;
    min-height: 100%;
}
body.no-scroll{ 
	overflow: hidden;
}
/* Visually hidden (screen reader only) utility */
.sr-only,
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
/* Skip link: hidden via .sr-only, revealed only on keyboard focus. */
.skip-link:focus {
    position: fixed !important;
    top: 1rem !important;
    left: 1rem !important;
    z-index: 100000 !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: .75rem 1.25rem !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    background: var(--lsc-color-primary, #1a1614) !important;
    color: var(--lsc-color-light, #fff) !important;
    border-radius: .375rem !important;
    text-decoration: none !important;
}
img, svg {
    vertical-align: middle;
	max-width: 100%;
	height: auto;
}
.media img{
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: 0.4s all ease;
}
.image-hover img{
    transition: 0.4s all ease;
	transform: scale(1);
}
.image-hover:hover img{
    transform: scale(1.10);
}
.media picture {
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: block;
}
.media iframe,
.media video {
    height: 100%;
    object-fit: cover;
}
iframe, video {
    width: 100%;
    max-width: 100%;
}
#page {
	overflow-x: clip;
}
a {
    color: var(--lsc-color-accent);
    font-weight: 400;
    text-decoration: underline;
    transition: 0.3s all ease;
}
button, input, textarea, select {
    outline: none;
    box-shadow: none;
}
a[href^=tel] {
    text-decoration: inherit;
}
.underline-text{
	text-decoration: underline;
}
p{
    margin-top: 0;
    margin-bottom: 0.9375rem; /* 15px */
}
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	margin-bottom: 0;
}

p strong,
b {
    font-weight: 600;
}

ul.lsc-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 1.875rem;
}
ul.lsc-list li {
	position: relative;
	padding-left: 2.5rem;
	font-weight: 500;
	line-height: 162.5%;
}
ul.lsc-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
	height: 1.25rem;
	border: 0.063rem solid var(--lsc-color-accent);
	background-image: url("../svgs/check.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.6rem;
	border-radius: 50%;
}
h1,.h1-style,
h2,.h2-style,
h3,.h3-style,
h4,.h4-style,
h5,.h5-style,
h6,.h6-style {
	color: var(--lsc-color-heading);
	font-family: var(--lsc-font-heading);
	margin-top: 0;
	margin-bottom: 0.9375rem; /* 15px */
	font-weight: 700;
	line-height: 1;
}
h1,
.h1-style {
	font-size: 64px;
	line-height: 110%;
	letter-spacing: -1.28px;
	text-transform: uppercase;
}
h2,
.h2-style {
	font-size: 2.75rem; /* 44px */
	line-height: 150%;
	letter-spacing: -0.88px;
	text-transform: uppercase;
}
.h2-large-style{
	font-size: 3.25rem; /* 52px */
	line-height: 110%;
	letter-spacing: -1.04px; /* 1.04px */
	text-transform: uppercase;
}
h3,
.h3-style {
	font-size: 2.25rem; /* 36px */
	line-height: 130%;
	letter-spacing: -0.72px;
	text-transform: uppercase;
}
h4,
.h4-style {
	font-size: 1.75rem; /* 28px */
	line-height: 130%;
	letter-spacing: -0.56px;
	text-transform: uppercase;
}
h5,
.h5-style {
	font-size: 1.25rem; /* 20px */
	line-height: 140%;
	letter-spacing: -0.44px;
	text-transform: uppercase;
}
h6,.h6-style {
	font-size: 1.0625rem; /* 17px */
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 25.5px */
	letter-spacing: -0.17px;
	text-transform: inherit;
}


@media only screen and (max-width:1399px) {
	h1,
	.h1-style {
		font-size: 4rem; /* 64px */
	}
	.h2-large-style {
		font-size: 3rem; /* 48px */
	}
	h2,
	.h2-style {
		font-size: 2.5rem; /* 40px */
	}
	h3,
	.h3-style {
		font-size: 2rem; /* 32px */
	}
	h4,
	.h4-style {
		font-size: 1.625rem; /* 26px */
	}
	h5,
	.h5-style {
		font-size: 1.25rem; /* 20px */
	}
	h6,
	.h6-style {
		font-size: 1.0625rem; /* 17px */
	}
}
@media only screen and (max-width:1199px) {
	h1,
	.h1-style {
		font-size: 3.5rem; /* 56px */
	}
	.h2-large-style {
		font-size: 2.75rem; /* 44px */
	}
	h2,
	.h2-style {
		font-size: 2.25rem; /* 36px */
	}
	h3,
	.h3-style {
		font-size: 1.875rem; /* 30px */
	}
	h4,
	.h4-style {
		font-size: 1.5rem; /* 24px */
	}
	h5,
	.h5-style {
		font-size: 1.1875rem; /* 19px */
	}
	h6,
	.h6-style {
		font-size: 1.0625rem; /* 17px */
	}
}
@media only screen and (max-width:991px) {
	h1,
	.h1-style {
		font-size: 3rem; /* 48px */
	}
	.h2-large-style {
		font-size: 2.375rem; /* 38px */
	}
	h2,
	.h2-style {
		font-size: 2rem; /* 32px */
	}
	h3,
	.h3-style {
		font-size: 1.75rem; /* 28px */
	}
	h4,
	.h4-style {
		font-size: 1.375rem; /* 22px */
	}
	h5,
	.h5-style {
		font-size: 1.125rem; /* 18px */
	}
	h6,
	.h6-style {
		font-size: 1rem; /* 16px */
	}
}

@media only screen and (max-width: 767px) {
	h1, 
	.h1-style{
		font-size: 2.5rem; /* 40px */
	}
	.h2-large-style {
		font-size: 2rem; /* 32px */
	}
	h2,
	.h2-style {
		font-size: 1.75rem; /* 28px */
	}
	h3,
	.h3-style {
		font-size: 1.5rem; /* 24px */
	}
	h4,
	.h4-style {
		font-size: 1.25rem; /* 20px */
		line-height: 120%;
	}
	h5,
	.h5-style {
		font-size: 1.0625rem; /* 17px */
		line-height: 120%;
	}
	h6,
	.h6-style {
		font-size: 1rem; /* 16px */
	}
}


.card-grid {
	display: grid;
	--lsc-card-grid-gap: 1.25rem; /* 20px — override per section to keep widths in sync */
	gap: var(--lsc-card-grid-gap);
	align-items: stretch;
}
.columns-2{
	grid-template-columns: repeat(2, 1fr);
}
.columns-3{
	grid-template-columns: repeat(3, 1fr);
}
.columns-4{
	grid-template-columns: repeat(4, 1fr);
}
.columns-5{
	grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 991px) {
	.columns-3,
	.columns-4,
	.columns-5 {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (max-width: 767px) {
	.columns-2,
	.columns-3,
	.columns-4,
	.columns-5 {
		grid-template-columns: 1fr;
	}
}

/* Opt-in: center the orphan items in the last row.
   Widths derive from --lsc-card-grid-gap so they always match the actual gap.
   Full rows fill edge-to-edge; only an incomplete last row centers. */
.card-grid.card-grid--center-last-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.card-grid--center-last-row.columns-2 > * { flex: 0 1 calc((100% - 1 * var(--lsc-card-grid-gap)) / 2 - 0.5px); }
.card-grid--center-last-row.columns-3 > * { flex: 0 1 calc((100% - 2 * var(--lsc-card-grid-gap)) / 3 - 0.5px); }
.card-grid--center-last-row.columns-4 > * { flex: 0 1 calc((100% - 3 * var(--lsc-card-grid-gap)) / 4 - 0.5px); }
.card-grid--center-last-row.columns-5 > * { flex: 0 1 calc((100% - 4 * var(--lsc-card-grid-gap)) / 5 - 0.5px); }
@media only screen and (max-width: 991px) {
	.card-grid--center-last-row.columns-3 > *,
	.card-grid--center-last-row.columns-4 > *,
	.card-grid--center-last-row.columns-5 > * { flex-basis: calc((100% - 1 * var(--lsc-card-grid-gap)) / 2 - 0.5px); }
}
@media only screen and (max-width: 767px) {
	.card-grid--center-last-row.columns-2 > *,
	.card-grid--center-last-row.columns-3 > *,
	.card-grid--center-last-row.columns-4 > *,
	.card-grid--center-last-row.columns-5 > * { flex-basis: 100%; }
}

/* Optional inner inset: pulls a block's content in from the section gutter
   (e.g. so cards / a carousel / a grid sit narrower than the section heading).
   Reusable on any element; widths inside follow automatically since they derive
   from 100% of the padded content box. */
.layout-inset {
	padding-inline: var(--lsc-grid-inset);
}
/* The inset only earns its keep while the container is centered with free
   space beside it. Once the viewport reaches the container's outer width
   (content max 1342px + 2 × 32px gutter = 1406px) the container goes
   edge-to-edge, so remove the inset — no extra inner padding at or below
   the container width. Zero the padding directly (not via the :root var)
   and use px so neither the style.css base token nor rem-in-MQ can win. */
@media only screen and (max-width: 1406px) {
	.layout-inset {
		padding-inline: 0;
	}
}

/* ── Section header ──────────────────────────────────────────────────────────
   Global, reusable section heading: a standard divider dash + optional eyebrow
   + title + optional description. Alignment is controlled with the .text-center
   utility on the .section-header wrapper. Section-specific classes load later
   (faisal.css) and can still override any of this. */
.section-header__divider {
	display: block;
	width: 2.5rem;          /* 40px */
	height: 0.1875rem;      /* 3px  */
	margin-bottom: 1.25rem; /* 20px */
	background: var(--lsc-color-accent);
}
.section-header.text-center .section-header__divider {
	margin-inline: auto;
}
.section-header__eyebrow {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--lsc-color-accent);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0.09rem;
	text-transform: uppercase;
}
.section-header__description {
	color: rgba(26, 22, 20, 0.55);
	line-height: 160%;
}

.lsc-container {
	max-width: var(--lsc-container-max);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
/* When the container also carries the gutter, widen its max-width by the gutter
   so the *content* stays the full --lsc-container-max instead of the padding
   eating into it (box-sizing is border-box theme-wide). */
.lsc-container.layout-padding {
	max-width: calc(var(--lsc-container-max) + 2 * var(--lsc-layout-padding));
}
.layout-padding {
	padding-left: var(--lsc-layout-padding); /* 24px base */
	padding-right: var(--lsc-layout-padding);
}

.layout-margin {
	margin-left: 1.5rem; /* 24px */
	margin-right: 1.5rem; /* 24px */
}


@media only screen and (max-width: 767px) {
	
	.layout-padding.layout-padding0 {
		padding-left: 0;
		padding-right: 0;
	}
	.layout-padding-mobile {
		padding-left: 1.5rem; /* 24px */
		padding-right: 1.5rem; /* 24px */
	}
	.layout-margin-mobile {
		margin-left: 1.5rem; /* 24px */
		margin-right: 1.5rem; /* 24px */
	}
}

@media only screen and (min-width: 1200px) {

	:root {
		--lsc-layout-padding: 2rem; /* 32px — also drives .lsc-container.layout-padding max-width */
	}
	.layout-margin {
		margin-left: 2rem; /* 32px */
		margin-right: 2rem; /* 32px */
	}
}
@media only screen and (min-width: 1600px) {

	:root {
		--lsc-layout-padding: 3.125rem; /* 50px — also drives .lsc-container.layout-padding max-width */
	}
	.layout-margin{
        margin-left: 3.125rem; /* 50px */
		margin-right: 3.125rem; /* 50px */
    }

}


/* Global Slick Arrow Container */
.lsc-group-slick-arrow-container {
	display: flex;
	gap: 2.625rem; /* 42px */
	justify-content: center;
	align-items: center;
	margin-top: 3.125rem; /* 50px */
}
.lsc-group-slick-arrow {
	width: 4.25rem; /* 68px */
	height: 2.5rem; /* 40px */
	border: 0.063rem solid rgba(255, 138, 59, 0.35);
	border-radius: 999rem;
	background-color: rgba(255, 138, 59, 0.10);
	color: var(--lsc-color-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	transition: background-color var(--lsc-transition), border-color var(--lsc-transition), color var(--lsc-transition), transform var(--lsc-transition);
}
.lsc-group-slick-arrow:hover,
.lsc-group-slick-arrow:focus-visible {
	border-color: var(--lsc-color-accent);
	background-color: var(--lsc-color-accent);
	color: var(--lsc-color-white);
}
.lsc-group-slick-arrow:focus-visible {
	outline: 0.125rem solid rgba(255, 138, 59, 0.35);
	outline-offset: 0.188rem;
}
.lsc-group-slick-arrow:active {
	transform: translateY(0.063rem);
}
.lsc-group-slick-arrow.slick-disabled {
	opacity: .4;
	cursor: not-allowed;
	pointer-events: none;
}
.lsc-group-slick-arrow svg {
	width: 1.5rem; /* 24px */
	height: 1.5rem; /* 24px */
	display: block;
}

/* Responsive - Mobile */
@media only screen and (max-width: 767px) {
	.lsc-group-slick-arrow-container {
		flex-wrap: wrap;
		column-gap: .875rem; /* 14px */
		row-gap: 1.5625rem; /* 25px */
		margin-top: 1.25rem; /* 20px */
	}
	.lsc-group-slick-arrow-container .section-cta {
		order: 3;
		width: 100%;
		text-align: center;
	}
}

/* Pagination Style Start */

.pagination {
	margin-top: 6.25rem;
}
.pagination .page-numbers {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 1.875rem; /* 30px */
}
.pagination .page-numbers .page-numbers {
	text-decoration: none;
	color: var(--lsc-color-dark);
	width: 2.375rem;
	height: 2.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0.063rem solid transparent;
	border-radius: 50%;
	font-weight: 400;
	transition: background-color var(--lsc-transition), color var(--lsc-transition);
}
.pagination .page-numbers .page-numbers:not(.current):hover {
	background-color: var(--lsc-color-subtle);
	color: var(--lsc-color-accent);
}
.pagination .page-numbers .page-numbers.current {
	color: var(--lsc-color-primary);
	background-color: var(--lsc-color-accent);
	font-weight: 700;
}
.pagination .prev span, .pagination .next span {
	display: flex;
	align-items: center;
}

@media only screen and (max-width:991px) {

	.pagination{
		margin-top: 4.375rem; /* 70px */
	}

}
@media only screen and (max-width:767px) {

	.pagination{
		margin-top: 3.125rem; /* 50px */
	}
	.pagination .page-numbers {
		column-gap: .625rem; /* 10px */
	}
	.pagination .page-numbers .page-numbers {
		width: 2rem; /* 32px */
		height: 2rem; /* 32px */
		font-size: 0.875rem; /* 14px */
	}
	.pagination .prev svg,
	.pagination .next svg {
		width: 1rem; /* 16px */
	}
}

/* Pagination Style End */

/* ─────────────────────────────────────────────────────
   CONTENT TYPOGRAPHY
   .entry-content wraps the_content() output in content.php and
   content-page.php. Add the class to any content area to inherit
   these styles — they are not scoped to a single template.
   ───────────────────────────────────────────────────── */

/* ── Vertical rhythm ──────────────────────────────────────────────────────
   Use adjacent sibling selectors so the first heading in a section gets
   no extra top margin, only headings that follow other content do.
   ───────────────────────────────────────────────────────────────────────── */

/* Paragraph bottom margin — bumped from global 15px for better content rhythm */
.entry-content p {
	margin-bottom: 1.25rem;
}

/* Paragraph containing an image (classic editor default markup: <p><img></p>)
   needs extra bottom clearance before the next element */
.entry-content p:has(> img) {
	margin-bottom: 1.75rem;
}

.entry-content * + h2 { margin-top: 2.5rem; }
.entry-content * + h3 { margin-top: 2rem; }
.entry-content * + h4,
.entry-content * + h5,
.entry-content * + h6 { margin-top: 1.5rem; }

/* Tighter when a subheading directly follows its parent — they are related */
.entry-content h2 + h3,
.entry-content h3 + h4,
.entry-content h4 + h5,
.entry-content h5 + h6 {
	margin-top: 0.75rem;
}

/* Lists */
.entry-content ul,
.entry-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}
.entry-content li {
	margin-bottom: 0.375rem;
}
.entry-content li > ul,
.entry-content li > ol {
	margin-top: 0.375rem;
	margin-bottom: 0;
}

/* Blockquote */
.entry-content blockquote {
	border-left: 0.25rem solid var(--lsc-color-accent);
	padding: 1rem 1.5rem;
	margin: 1.75rem 0;
	background-color: var(--lsc-color-subtle);
	border-radius: 0 var(--lsc-border-radius-sm) var(--lsc-border-radius-sm) 0;
	font-size: 1.125rem;
	font-style: italic;
}
.entry-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content blockquote cite {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 600;
	color: var(--lsc-color-mid);
}
.entry-content blockquote cite::before {
	content: '— ';
}

/* Inline code */
.entry-content :not(pre) > code {
	font-family: ui-monospace, 'Cascadia Code', 'SF Mono', Menlo, monospace;
	font-size: 0.875em;
	background-color: var(--lsc-color-subtle);
	color: var(--lsc-color-accent);
	padding: 0.15em 0.4em;
	border-radius: 0.25rem;
}

/* Code block */
.entry-content pre {
	font-family: ui-monospace, 'Cascadia Code', 'SF Mono', Menlo, monospace;
	font-size: 0.9375rem;
	line-height: 1.6;
	background-color: var(--lsc-color-dark);
	color: var(--lsc-color-subtle);
	padding: 1.25rem 1.5rem;
	border-radius: var(--lsc-border-radius);
	overflow-x: auto;
	margin: 1.75rem 0;
}
.entry-content pre code {
	font-family: inherit;
	font-size: inherit;
	background: none;
	color: inherit;
	padding: 0;
	border-radius: 0;
}

/* Table */
.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.75rem 0;
	font-size: 0.9375rem;
}
.entry-content th,
.entry-content td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 0.0625rem solid var(--lsc-color-subtle);
}
.entry-content th {
	font-weight: 700;
	background-color: var(--lsc-color-subtle);
	border-bottom-color: var(--lsc-color-mid);
	border-bottom-width: 0.125rem;
}
.entry-content tbody tr:hover td {
	background-color: var(--lsc-color-subtle);
}

/* Horizontal rule */
.entry-content hr {
	border: none;
	border-top: 0.0625rem solid var(--lsc-color-mid);
	margin: 2.5rem 0;
	opacity: 0.2;
}

/* Figure + caption */
.entry-content figure {
	margin: 1.75rem 0;
}
.entry-content figcaption {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: var(--lsc-color-mid);
	font-style: italic;
	text-align: center;
}
.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--lsc-border-radius-sm);
}

/* WordPress image alignment classes */
.entry-content .alignleft {
	float: left;
	margin: 0.25rem 1.5rem 1rem 0;
}
.entry-content .alignright {
	float: right;
	margin: 0.25rem 0 1rem 1.5rem;
}
.entry-content .aligncenter,
.entry-content .alignnone {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Links inside content */
.entry-content a:not(.site-btn) {
	color: var(--lsc-color-accent);
}
.entry-content a:not(.site-btn):hover {
	color: var(--lsc-color-primary);
}

/* Keyboard shortcut */
.entry-content kbd {
	font-family: ui-monospace, 'Cascadia Code', 'SF Mono', Menlo, monospace;
	font-size: 0.8125rem;
	padding: 0.1em 0.45em;
	background-color: var(--lsc-color-dark);
	color: var(--lsc-color-light);
	border-radius: 0.25rem;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

/* Highlighted text */
.entry-content mark {
	background-color: var(--lsc-color-accent);
	color: var(--lsc-color-dark);
	padding: 0.1em 0.25em;
	border-radius: 0.125rem;
}

/* Abbreviation */
.entry-content abbr[title] {
	text-decoration: underline dotted;
	cursor: help;
}

@media only screen and (max-width: 767px) {
	.entry-content .alignleft,
	.entry-content .alignright {
		float: none;
		margin: 1.75rem 0;
	}
	.entry-content table {
		font-size: 0.875rem;
	}
	.entry-content th,
	.entry-content td {
		padding: 0.5rem 0.75rem;
	}
	.entry-content blockquote {
		font-size: 1rem;
		padding: 0.875rem 1.25rem;
	}
}

/* =============================================================================
   BREADCRUMB
   ============================================================================= */

.lsc-group-breadcrumb {
	font-size: 0.8125rem;
	align-items: center;
	gap: 0.375rem;
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
	margin-top: 0;
	margin-bottom: 0;
	color: var(--lsc-color-mid);
}

.lsc-group-breadcrumb a {
	color: var(--lsc-color-mid);
	text-decoration: none;
	transition: color var(--lsc-transition);
}

.lsc-group-breadcrumb a:hover {
	color: var(--lsc-color-accent);
}

.lsc-group-breadcrumb .breadcrumb-separator {
	color: var(--lsc-color-mid);
	opacity: 0.4;
}

.lsc-group-breadcrumb .current {
	color: var(--lsc-color-text);
	font-weight: 500;
}

/*
=============================================================================
   Search Results
=============================================================================
*/

.search-results-header {
	background: var(--lsc-color-subtle);
	padding-bottom: 2.5rem;
	border-bottom: 0.0625rem solid var(--lsc-color-subtle);
}

.search-results-header-inner {
	max-width: 50rem; /* 800px */
	margin: 0 auto;
	text-align: center;
}

.search-results-title {
	font-size: 2.5rem; /* 40px */
	font-weight: 700;
	color: var(--lsc-color-primary);
	margin: 0 0 1rem 0; /* 16px */
	line-height: 1.2;
}

.search-results-title .search-query {
	color: var(--lsc-color-accent);
}

.search-results-count {
	font-size: 1.125rem; /* 18px */
	color: var(--lsc-color-mid);
	margin: 0;
}

.search-result-count {
	margin: 0.5rem 0 0;
	font-size: 0.9375rem;
	color: var(--lsc-color-mid);
}

.search-section-header {
	margin-bottom: 2.5rem; /* 40px */
}

.search-section-title {
	font-size: 1.875rem; /* 30px */
	font-weight: 700;
	color: var(--lsc-color-primary);
	margin: 0;
	padding-bottom: 1rem; /* 16px */
	border-bottom: 0.1875rem solid var(--lsc-color-accent); /* 3px */
	display: inline-block;
}

.search-results-group + .search-results-group {
	border-top: 0.0625rem solid var(--lsc-color-subtle);
}

.search-results-group__title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 1.375rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 1.75rem;
	color: var(--lsc-color-text);
}

.search-results-group__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.625rem;
	height: 1.625rem;
	padding: 0 0.4375rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--lsc-color-accent);
	background-color: color-mix(in srgb, var(--lsc-color-accent) 10%, transparent);
	border-radius: var(--lsc-border-radius-sm);
}

.search-no-results {
	text-align: center;
	padding: 4rem 0;
}

.search-no-results__text {
	font-size: 1.0625rem;
	color: var(--lsc-color-mid);
	margin-bottom: 2rem;
}

.search-no-results .search-form {
	max-width: 30rem;
	margin: 0 auto;
}

/*
=============================================================================
   404 PAGE
=============================================================================
*/

.error-404 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	text-align: center;
}

.error-404-wrapper {
	position: relative;
	max-width: 40rem;
	margin: 0 auto;
}

.error-404-wrapper::before {
	content: '';
	position: absolute;
	top: -2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 40rem;
	height: 26rem;
	background: radial-gradient(ellipse at center, color-mix(in srgb, var(--lsc-color-accent) 10%, transparent) 0%, transparent 70%);
	pointer-events: none;
	z-index: -1;
}

.error-404-number {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	line-height: 1;
	margin-bottom: 2rem;
}

.error-404-number span {
	font-size: clamp(7rem, 22vw, 13rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	background: linear-gradient(145deg, var(--lsc-color-accent) 0%, var(--lsc-color-secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.error-404-number span:nth-child(2) {
	opacity: 0.25;
}

.error-404-title {
	font-size: clamp(1.375rem, 3.5vw, 2rem);
	font-weight: 800;
	color: var(--lsc-color-heading);
	margin: 0 0 0.875rem;
	line-height: 1.2;
}

.error-404-text {
	font-size: 1.0625rem;
	color: var(--lsc-color-mid);
	line-height: 1.7;
	margin: 0 auto 2.5rem;
	max-width: 34rem; /* 544px */
}

.error-404-actions {
	justify-content: center;
}

@media (max-width: 767px) {
	.error-404-number {
		gap: 0.5rem;
	}

	.error-404-text {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.error-404-actions {
		margin-bottom: 2rem;
	}

	.error-404-actions .site-btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.error-404-text {
		font-size: 0.9375rem;
	}
}

/* ─────────────────────────────────────────────────────
   BUTTON SYSTEM
   Base: .site-btn
   Variants: .btn-primary  .btn-secondary  .btn-outline  .btn-text-link
   Modifier: .btn-has-border (adds visible border, reduces padding by 2px)

   Update color values per project by changing the token values
   in :root — the button classes reference only tokens.
   ───────────────────────────────────────────────────── */

.btns {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5625rem; /* 25px */
    row-gap: 1.5625rem;    /* 25px */
}

/* Base button styles — shared across all variants */
.site-btn {
	display: inline-block;
	padding: .5rem 1.5rem; /* 8px 24px */
	font-size: .9375rem;
	line-height: 150%;
	font-family: var(--lsc-font-body);
	text-decoration: none;
	font-weight: 700;
	line-height: 150%;
	border-radius: .5rem;
	letter-spacing: 0.009rem;
	border: 0.063rem solid transparent;
	transition: all var(--lsc-transition);
	text-align: center;
}

/* ── Primary action: orange accent fill, dark text → dark fill on hover */
.btn-primary {
    background: var(--lsc-color-accent);
    color: var(--lsc-color-primary);
    border-color: var(--lsc-color-accent);
}

.btn-primary:hover {
	background: transparent;
	color: var(--lsc-color-accent);
	border-color: var(--lsc-color-accent);
}

/* .btn-primary:hover {
    background: var(--lsc-color-white);
    color: var(--lsc-color-primary);
    border-color: var(--lsc-color-secondary);
} */

/* ── Secondary: primary dark fill, light text → orange accent on hover */
.btn-secondary {
    background: var(--lsc-color-primary);
    color: var(--lsc-color-light);
    border-color: var(--lsc-color-primary);
}
.btn-secondary:hover {
    background: var(--lsc-color-accent);
    color: var(--lsc-color-primary);
    border-color: var(--lsc-color-accent);
}

/* ── Outline: transparent, primary border/text → primary fill on hover */
.btn-outline {
	background: transparent;
	color: var(--lsc-color-primary);
	border-color: var(--lsc-color-accent);
	color: var(--lsc-color-accent);
}
.btn-outline:hover {
    background-color: var(--lsc-color-accent);
    color: var(--lsc-color-primary);
    border-color: var(--lsc-color-accent);
}

/* ── Outline (light): for dark backgrounds — light border/text → light fill on hover */
.btn-outline-light {
	background: transparent;
	color: var(--lsc-color-light);
	border-color: var(--lsc-color-light);
}
.btn-outline-light:hover {
	background-color: var(--lsc-color-light);
	color: var(--lsc-color-primary);
	border-color: var(--lsc-color-light);
}

/* ── Text link: no background or border, just styled text */
.btn-text-link {
    background: transparent;
    color: var(--lsc-color-accent);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
}
.btn-text-link:hover {
    color: var(--lsc-color-primary);
    text-decoration: underline;
}

/* ── Border modifier: reduces padding to account for 2px border */
.site-btn.btn-has-border {
    padding-top: .875rem;
    padding-bottom: .875rem;
}

/* ── Size & layout variants — use these globally instead of per-section button classes */
.site-btn--lg {
	padding: .875rem 1.75rem;
}
.site-btn--wide {
	padding-inline: 3.125rem;
}
.site-btn--block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Global Submit Field Wrapper with Icon */

.action-field {
	display: flex;
	margin-bottom: 0;
	column-gap: 1.25rem; /* 20px */
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5625rem; /* 25px */
}
@media only screen and (max-width:767px) {

	.action-field {
		flex-direction: column;
		margin-bottom: 0;
		row-gap: 1.25rem; /* 20px */
		justify-content: center;
		align-items: center;
		margin-top: 0;
	}
}
