/**
 * PTRHub Games Builds — Archive Styles.
 *
 * Dark-themed builds archive with stats bar, filters, card grid, and CTA.
 * NOTE: This is an intentional dark gaming-brand design scoped to .ptrhub-archive.
 * Body/header/footer overrides only apply when the archive is present.
 * Typography inherits from Elementor CSS custom properties.
 *
 * @package PTRHub\GamesBuilds
 */

/* ==========================================================================
   CSS Custom Properties (scoped to archive — dark gaming brand)
   ========================================================================== */

.ptrhub-archive {
	--ptrhub-accent: #febf0f;
	--ptrhub-bg: rgba(17, 17, 17, 0.75);
	--ptrhub-bg-surface: #1a1a1a;
	--ptrhub-bg-input: #222;
	--ptrhub-border: #2a2a2a;
	--ptrhub-border-input: #444;
	--ptrhub-text: #e0e0e0;
	--ptrhub-text-muted: #999;
	--ptrhub-text-dim: #888;
	--ptrhub-text-faint: #777;
	--ptrhub-text-heading: #fff;
}

/* ==========================================================================
   Archive Wrapper
   ========================================================================== */

.ptrhub-archive {
	width: 100%;
	max-width: 100%;
	padding-bottom: 2em;
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	color: var(--ptrhub-text);
	background: var(--ptrhub-bg);
}

/* Force dark background on body when archive is present */
body:has(.ptrhub-archive) {
	background: #111;
}

/* Override theme header/footer to match dark look */
body:has(.ptrhub-archive) .site-header,
body:has(.ptrhub-archive) header {
	background: #111;
	color: var(--ptrhub-text);
}

body:has(.ptrhub-archive) .site-header a,
body:has(.ptrhub-archive) header a {
	color: var(--ptrhub-text);
}

body:has(.ptrhub-archive) .site-footer,
body:has(.ptrhub-archive) footer {
	background: #111;
	color: var(--ptrhub-text-dim);
}

body:has(.ptrhub-archive) .site-footer a,
body:has(.ptrhub-archive) footer a {
	color: var(--ptrhub-text-dim);
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */

.ptrhub-stats-bar {
	background: #d4a017;
	padding: 1.5em 2em;
}

.ptrhub-stats-bar__inner {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5em;
	max-width: 1140px;
	margin: 0 auto;
}

.ptrhub-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ptrhub-stat__number {
	font-family: var(--e-global-typography-primary-font-family, sans-serif);
	font-size: 2em;
	font-weight: 800;
	line-height: 1.2;
	color: #111;
}

.ptrhub-stat__label {
	font-size: 0.7em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #111;
	opacity: 0.8;
}

/* ==========================================================================
   Stats Bar — Icon Variant (shortcode)
   ========================================================================== */

.ptrhub-stats-icons {
	--ptrhub-stats-color: #1a1a1a;
	padding: 3em 2em;
	width: 100%;
}

.ptrhub-stats-icons__inner {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 2em;
}

.ptrhub-stats-icons__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.6em;
	flex: 1;
	min-width: 140px;
	padding: 1.5em 1em;
}

.ptrhub-stats-icons__icon {
	margin-bottom: 1em;
	color: var(--ptrhub-stats-color);
	line-height: 0;
}

.ptrhub-stats-icons__icon svg {
	width: 120px;
	height: 120px;
}

.ptrhub-stats-icons__number {
	font-family: var(--e-global-typography-primary-font-family, sans-serif);
	font-size: 3.5em;
	font-weight: 800;
	line-height: 1.2;
	color: var(--ptrhub-stats-color);
}

.ptrhub-stats-icons__label {
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ptrhub-stats-color);
	opacity: 0.8;
}

@media (max-width: 767px) {
	.ptrhub-stats-icons__inner {
		gap: 1.5em;
	}

	.ptrhub-stats-icons__item {
		min-width: 120px;
		flex-basis: 40%;
	}

	.ptrhub-stats-icons__icon svg {
		width: 72px;
		height: 72px;
	}

	.ptrhub-stats-icons__number {
		font-size: 2.5em;
	}

	.ptrhub-stats-icons__label {
		font-size: 0.7em;
	}
}

/* ==========================================================================
   Filter Section
   ========================================================================== */

.ptrhub-filter-section {
	background: var(--ptrhub-bg-surface);
	border: 1px solid var(--ptrhub-border);
	border-radius: 8px;
	padding: 2em;
	margin: 2em auto;
	max-width: 1140px;
}

.ptrhub-filter-section__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.5em;
	flex-wrap: wrap;
	gap: 1em;
}

.ptrhub-filter-section__title {
	font-family: var(--e-global-typography-primary-font-family, sans-serif);
	font-size: 1.5em;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ptrhub-text-heading);
	margin: 0 0 0.25em 0;
}

.ptrhub-filter-section__subtitle {
	font-size: 0.85em;
	color: var(--ptrhub-accent);
	margin: 0;
	border-bottom: 1px solid var(--ptrhub-accent);
	display: inline;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.ptrhub-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7em 1.8em;
	border: 2px solid var(--ptrhub-accent);
	background: transparent;
	color: var(--ptrhub-accent);
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.ptrhub-btn--primary:hover {
	background: var(--ptrhub-accent);
	color: #111;
}

/* ==========================================================================
   Filter Groups
   ========================================================================== */

.ptrhub-filters {
	display: flex;
	flex-direction: column;
}

.ptrhub-filters__row {
	display: flex;
	gap: 1em;
	align-items: flex-end;
	flex-wrap: wrap;
}

.ptrhub-filter-group {
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}

.ptrhub-filter-group--select {
	min-width: 160px;
	flex: 1;
}

.ptrhub-filter-group--search {
	flex: 1.5;
	min-width: 200px;
}

.ptrhub-filter-group__label {
	font-size: 0.7em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ptrhub-text-dim);
}

/* ==========================================================================
   Custom Searchable Select
   ========================================================================== */

.ptrhub-select {
	position: relative;
}

.ptrhub-select__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.55em 0.8em;
	border: 1px solid var(--ptrhub-border-input);
	border-radius: 4px;
	background: var(--ptrhub-bg-input);
	color: var(--ptrhub-text-muted);
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	font-size: 0.85em;
	cursor: pointer;
	transition: border-color 0.2s ease;
	gap: 0.5em;
	text-align: left;
}

.ptrhub-select__trigger:hover,
.ptrhub-select__trigger:focus {
	border-color: var(--ptrhub-accent);
	background: var(--ptrhub-bg-input);
	color: var(--ptrhub-text-muted);
	text-decoration: none;
}

.ptrhub-select--open .ptrhub-select__trigger {
	outline: none;
	border-color: var(--ptrhub-accent);
	background: var(--ptrhub-bg-input);
	color: var(--ptrhub-text-muted);
}

.ptrhub-select__value {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ptrhub-select__arrow {
	flex-shrink: 0;
	color: var(--ptrhub-text-dim);
	transition: transform 0.2s ease;
}

.ptrhub-select--open .ptrhub-select__arrow {
	transform: rotate(180deg);
}

.ptrhub-select__dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 100;
	border: 1px solid var(--ptrhub-border-input);
	border-radius: 4px;
	background: rgba(30, 30, 30, 0.82);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

.ptrhub-select--open .ptrhub-select__dropdown {
	display: block;
}

.ptrhub-select__search {
	display: block;
	width: 100%;
	padding: 0.5em 0.8em;
	border: none;
	border-bottom: 1px solid var(--ptrhub-border);
	background: var(--ptrhub-bg-surface);
	color: var(--ptrhub-text-muted);
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	font-size: 0.85em;
	box-sizing: border-box;
}

.ptrhub-select__search::placeholder {
	color: #666;
}

.ptrhub-select__search:focus {
	outline: none;
	background: #1e1e1e;
}

.ptrhub-select__options {
	list-style: none;
	margin: 0;
	padding: 4px 0;
	max-height: 200px;
	overflow-y: auto;
}

.ptrhub-select__option {
	padding: 0.5em 0.8em;
	cursor: pointer;
	color: var(--ptrhub-text-muted);
	font-size: 0.85em;
	transition: background 0.15s ease, color 0.15s ease;
}

.ptrhub-select__option:hover,
.ptrhub-select__option--focused,
.ptrhub-select__option--highlighted {
	background: rgba(254, 191, 15, 0.12);
	color: var(--ptrhub-accent);
}

.ptrhub-select__option--active {
	color: var(--ptrhub-accent);
	font-weight: 600;
}

.ptrhub-select__option--hidden {
	display: none;
}

.ptrhub-select__option--disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* Scrollbar styling for the dropdown */
.ptrhub-select__options::-webkit-scrollbar {
	width: 6px;
}

.ptrhub-select__options::-webkit-scrollbar-track {
	background: var(--ptrhub-bg-surface);
}

.ptrhub-select__options::-webkit-scrollbar-thumb {
	background: var(--ptrhub-border-input);
	border-radius: 3px;
}

/* ==========================================================================
   Search Input
   ========================================================================== */

.ptrhub-filter-search {
	width: 100%;
	padding: 0.55em 0.8em;
	border: 1px solid var(--ptrhub-border-input);
	border-radius: 4px;
	background: var(--ptrhub-bg-input);
	color: var(--ptrhub-text-muted);
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	font-size: 0.85em;
}

.ptrhub-filter-search::placeholder {
	color: #666;
}

.ptrhub-filter-search:hover {
	border-color: var(--ptrhub-text-dim);
}

.ptrhub-filter-search:focus {
	outline: none;
	border-color: var(--ptrhub-accent);
}

/* ==========================================================================
   Builds Grid
   ========================================================================== */

.ptrhub-builds-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5em;
	max-width: 1140px;
	margin: 0 auto 2em;
	padding: 0 2em;
	transition: opacity 0.15s ease;
}

.ptrhub-builds-grid--loading {
	opacity: 0.5;
	pointer-events: none;
}

/* ==========================================================================
   Build Card
   ========================================================================== */

.ptrhub-build-card {
	background: var(--ptrhub-bg-surface);
	border: 1px solid var(--ptrhub-border);
	border-radius: 8px;
	padding: 1.5em;
	display: flex;
	flex-direction: column;
	gap: 0.6em;
	transition: border-color 0.2s ease;
}

.ptrhub-build-card:hover {
	border-color: var(--ptrhub-border-input);
}

.ptrhub-build-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
}

.ptrhub-build-card__tag {
	padding: 0.2em 0.6em;
	border: 1px solid #555;
	border-radius: 3px;
	font-size: 0.7em;
	color: var(--ptrhub-text-muted);
	text-transform: capitalize;
}

.ptrhub-build-card__tag.ptrhub-tier-badge {
	border-color: transparent;
}

.ptrhub-build-card__title {
	font-family: var(--e-global-typography-primary-font-family, sans-serif);
	font-size: 1.2em;
	font-weight: 700;
	color: var(--ptrhub-text-heading);
	margin: 0;
	line-height: 1.3;
}

.ptrhub-build-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.8em;
}

.ptrhub-build-card__patch {
	color: var(--ptrhub-accent);
	font-weight: 600;
}

.ptrhub-build-card__sep {
	color: var(--ptrhub-border-input);
}

.ptrhub-build-card__difficulty {
	color: var(--ptrhub-accent);
}

.ptrhub-build-card__desc {
	font-size: 0.85em;
	color: var(--ptrhub-text-muted);
	line-height: 1.5;
	margin: 0;
	flex: 1;
}

.ptrhub-build-card__actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.5em;
	padding-top: 0.75em;
	border-top: 1px solid var(--ptrhub-border);
}

.ptrhub-build-card__stats {
	display: flex;
	gap: 1em;
	margin-top: auto;
	padding-top: 0.5em;
}

.ptrhub-build-card__stat {
	display: flex;
	align-items: center;
	gap: 0.3em;
	font-size: 0.75em;
	color: var(--ptrhub-text-faint);
}

.ptrhub-build-card__stat svg {
	flex-shrink: 0;
	opacity: 0.7;
}

.ptrhub-build-card__link {
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ptrhub-accent);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.ptrhub-build-card__link:hover {
	opacity: 0.8;
}

.ptrhub-build-card__discuss {
	font-size: 0.8em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ptrhub-text-faint);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ptrhub-build-card__discuss:hover {
	color: var(--ptrhub-text-muted);
}

/* ==========================================================================
   No Results
   ========================================================================== */

.ptrhub-no-results {
	max-width: 1140px;
	margin: 0 auto;
	padding: 3em 2em;
	text-align: center;
	color: var(--ptrhub-text-dim);
	font-size: 1.1em;
}

/* ==========================================================================
   Community CTA
   ========================================================================== */

.ptrhub-community-cta {
	--ptrhub-accent: #febf0f;
	--ptrhub-bg-surface: #1a1a1a;
	--ptrhub-border: #2a2a2a;
	--ptrhub-text-heading: #fff;
	--ptrhub-text-muted: #999;
	background: var(--ptrhub-bg-surface);
	border: 1px solid var(--ptrhub-border);
	border-radius: 8px;
	padding: 3em 2em;
	text-align: center;
	max-width: 1140px;
	margin: 0 auto 2em;
}

.ptrhub-community-cta__label {
	display: block;
	font-size: 0.75em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ptrhub-accent);
	margin-bottom: 0.75em;
}

.ptrhub-community-cta__title {
	font-family: var(--e-global-typography-primary-font-family, sans-serif);
	font-size: 1.6em;
	font-weight: 700;
	color: var(--ptrhub-text-heading);
	margin: 0 0 0.5em;
}

.ptrhub-community-cta__text {
	font-size: 0.9em;
	color: var(--ptrhub-text-muted);
	margin: 0 0 1.5em;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Standalone shortcode: remove card chrome, inherit page background */
:not(.ptrhub-archive) > .ptrhub-community-cta {
	background: transparent;
	border: none;
	border-radius: 0;
}

/* ==========================================================================
   Responsive — Tablet (Elementor: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
	.ptrhub-builds-grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 0 1em;
	}

	.ptrhub-filter-section {
		margin: 1.5em 1em;
	}

	.ptrhub-community-cta {
		margin-left: 1em;
		margin-right: 1em;
	}
}

/* ==========================================================================
   Responsive — Mobile (Elementor: 767px)
   ========================================================================== */

@media (max-width: 767px) {
	.ptrhub-stats-bar__inner {
		gap: 1em;
	}

	.ptrhub-stat__number {
		font-size: 1.5em;
	}

	.ptrhub-stat__label {
		font-size: 0.6em;
	}

	.ptrhub-filter-section {
		padding: 1.25em;
	}

	.ptrhub-filter-section__title {
		font-size: 1.2em;
	}

	.ptrhub-filters__row {
		flex-direction: column;
		align-items: stretch;
	}

	.ptrhub-filter-group--select,
	.ptrhub-filter-group--search {
		min-width: 0;
		width: 100%;
	}

	.ptrhub-builds-grid {
		grid-template-columns: 1fr;
	}

	.ptrhub-community-cta {
		padding: 2em 1.25em;
	}

	.ptrhub-community-cta__title {
		font-size: 1.2em;
	}
}

/* ==========================================================================
   Per-Page Select
   ========================================================================== */

.ptrhub-filter-group--perpage {
	min-width: 80px;
	max-width: 110px;
}

.ptrhub-filter-group--sort {
	min-width: 100px;
	max-width: 140px;
}

.ptrhub-perpage-select,
.ptrhub-sort-select {
	width: 100%;
	padding: 0.55em 0.8em;
	border: 1px solid var(--ptrhub-border-input);
	border-radius: 4px;
	background: var(--ptrhub-bg-input);
	color: var(--ptrhub-text-muted);
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	font-size: 0.85em;
	cursor: pointer;
	appearance: auto;
}

.ptrhub-perpage-select:hover,
.ptrhub-sort-select:hover {
	border-color: var(--ptrhub-text-dim);
}

.ptrhub-perpage-select:focus,
.ptrhub-sort-select:focus {
	outline: none;
	border-color: var(--ptrhub-accent);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.ptrhub-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	padding: 1.25em 0;
}

.ptrhub-pagination__btn {
	padding: 0.5em 1.2em;
	border: 1px solid var(--ptrhub-border-input);
	border-radius: 4px;
	background: var(--ptrhub-bg-input);
	color: var(--ptrhub-text-muted);
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	font-size: 0.85em;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

.ptrhub-pagination__btn:hover:not(:disabled) {
	border-color: var(--ptrhub-accent);
	color: var(--ptrhub-accent);
}

.ptrhub-pagination__btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.ptrhub-pagination__info {
	color: var(--ptrhub-text-muted);
	font-family: var(--e-global-typography-text-font-family, sans-serif);
	font-size: 0.85em;
}

/* ==========================================================================
   Focus Visible — Accessibility
   ========================================================================== */

.ptrhub-select__trigger:focus-visible,
.ptrhub-filter-search:focus-visible,
.ptrhub-perpage-select:focus-visible,
.ptrhub-sort-select:focus-visible,
.ptrhub-pagination__btn:focus-visible,
.ptrhub-btn:focus-visible,
.ptrhub-build-card__link:focus-visible,
.ptrhub-build-card__discuss:focus-visible {
	outline: 2px solid var(--ptrhub-accent);
	outline-offset: 2px;
}

/* ==========================================================================
   Latest Builds Shortcode — [ptrhub_latest_builds]
   Dark standalone variant that can be dropped into any page.
   ========================================================================== */

.ptrhub-latest-builds {
	--ptrhub-accent: #febf0f;
	--ptrhub-bg-surface: #0A0A0A;
	--ptrhub-border: #2a2a2a;
	--ptrhub-border-input: #444;
	--ptrhub-text: #e0e0e0;
	--ptrhub-text-muted: #999;
	--ptrhub-text-dim: #888;
	--ptrhub-text-faint: #777;
	--ptrhub-text-heading: #fff;
}

/* Override Elementor .e-con-inner max-width constraint */
.e-con > .e-con-inner:has(.ptrhub-latest-builds) {
	max-width: 100%;
	margin: 0;
}

.ptrhub-latest-builds .ptrhub-builds-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

/* Card overrides inside latest-builds */
.ptrhub-latest-builds .ptrhub-build-card {
	background: var(--ptrhub-bg-surface);
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 2.5em 2em;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1em;
	transition: border-color 0.2s ease;
}

.ptrhub-latest-builds .ptrhub-build-card:hover {
	border-color: var(--ptrhub-border);
}

/* Reorder: title first, tags second */
.ptrhub-latest-builds .ptrhub-build-card__title {
	order: 1;
	font-family: var(--e-global-typography-primary-font-family, sans-serif);
	font-size: 1.65em;
	font-weight: 800;
	color: var(--ptrhub-text-heading);
	text-transform: uppercase;
	margin: 0;
	line-height: 1.3;
}

/* Tags: gold inline text with bullet separators, no pill borders */
.ptrhub-latest-builds .ptrhub-build-card__tags {
	order: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.ptrhub-latest-builds .ptrhub-build-card__tag {
	padding: 0;
	border: none;
	border-radius: 0;
	font-size: 1em;
	font-weight: 700;
	color: var(--ptrhub-accent);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ptrhub-latest-builds .ptrhub-build-card__tag + .ptrhub-build-card__tag::before {
	content: "\2022";
	margin: 0 0.5em;
	color: var(--ptrhub-accent);
}

/* Hide meta (patch/difficulty) */
.ptrhub-latest-builds .ptrhub-build-card__meta {
	display: none;
}

/* Description */
.ptrhub-latest-builds .ptrhub-build-card__desc {
	order: 3;
	font-size: 1em;
	color: var(--ptrhub-text-muted);
	line-height: 1.6;
	margin: 0.25em 0 0;
	flex: 1;
}

/* Hide stats row */
.ptrhub-latest-builds .ptrhub-build-card__stats {
	display: none;
}

/* Actions row — centered, only show View Build link */
.ptrhub-latest-builds .ptrhub-build-card__actions {
	order: 5;
	margin-top: auto;
	padding-top: 0.75em;
	border-top: none;
	justify-content: center;
}

/* Hide DISCUSS link */
.ptrhub-latest-builds .ptrhub-build-card__discuss {
	display: none;
}

/* Responsive: tablet — 2 columns */
@media (max-width: 1024px) {
	.ptrhub-latest-builds .ptrhub-builds-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5em;
	}
}

/* Responsive: mobile — 1 column */
@media (max-width: 767px) {
	.ptrhub-latest-builds .ptrhub-builds-grid {
		grid-template-columns: 1fr;
		gap: 1.25em;
	}
}
