/***********************************************************************
*  Theme + Base
**********************************************************************/
:root {
	--bg: #000e2b;
	--cover-bg: #000e2b;
	--card-bg: #fff;
	--accent: darkred;
	--shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
	--nav-bg: #1e1f24;

	--card-pad: 15px;
	--card-margin: 20px;

	--bp-nav: 880px;
	--bp-layout: 1125px;
}

@font-face {
	font-family: "CustomFont";
	src:
		url("/assets/font/CustomFont.woff2") format("woff2"),
		url("/assets/font/CustomFont.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg);
	font-family: "CustomFont", roboto, sans-serif;
	line-height: 1.7em;
	letter-spacing: 0.1em;
}

/* Base heading look */
h1,
h2,
h3 {
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-decoration-thickness: 3px;
	font-weight: 900;
	margin: 0;
}
h1 {
	letter-spacing: 0.15em;
}
h2 {
	letter-spacing: 0.12em;
}
h3 {
	letter-spacing: 0.1em;
}

/***********************************************************************
*  Card shell (used everywhere)
**********************************************************************/
.default-div-wrapper,
.img-text-div-wrapper,
.lrg-img-text-div-wrapper,
.two-text-columns-wrapper,
.flex-accordion-wrapper {
	background: var(--card-bg);
	padding: var(--card-pad);
	margin: var(--card-margin);
	box-shadow: var(--shadow);
}

/***********************************************************************
*  Cover
**********************************************************************/
.container {
	margin-top: 20px;
	height: 300px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--cover-bg);
}

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

/***********************************************************************
*  Default Div
**********************************************************************/
.default-div-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	text-align: left;
}

.default-div-wrapper > p {
	text-align: left;
	padding: 5px;
	margin: 5px;
}

.default-div-wrapper > h1 {
	padding-bottom: 0;
	text-align: center;
}

/***********************************************************************
*  Small image / big text  (img-text-div-wrapper)
**********************************************************************/
.img-text-div-wrapper {
	display: grid;
	gap: 1px;
}

@media (min-width: 1125px) {
	.img-text-div-wrapper {
		grid-template-columns: 1fr 2fr;
	}
	/* When reversed: text big, image small */
	.img-text-div-wrapper.reverse {
		grid-template-columns: 2fr 1fr;
	}
}

@media (max-width: 1124.98px) {
	.img-text-div-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/***********************************************************************
*  50/50 split image + text (lrg-img-text-div-wrapper)
**********************************************************************/
.lrg-img-text-div-wrapper {
	display: grid;
	gap: 1px;
	text-align: left;
}

@media (min-width: 1125px) {
	.lrg-img-text-div-wrapper {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1124.98px) {
	.lrg-img-text-div-wrapper {
		grid-template-columns: 1fr;
	}
}

/***********************************************************************
*  Text columns (inner padding)
**********************************************************************/
.img-text-div-text,
.lrg-img-text-div-text {
	padding: 20px;
	margin: 20px;
	text-align: left;
}

@media (max-width: 1124.98px) {
	.lrg-img-text-div-text {
		margin: 12px;
	}
}

/***********************************************************************
*  Polaroid frames (APPLIES TO BOTH WRAPPERS)
**********************************************************************/
.img-text-div-img,
.lrg-img-text-div-img {
	background: #fff;
	padding: 14px;
	margin: 20px;
	box-shadow: var(--shadow);
	border-radius: 2px;
	text-align: center;
	align-self: start;
}

.lrg-img-text-div-img {
	align-self: center;
}

.img-text-div-img > img,
.lrg-img-text-div-img > img {
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	border-radius: 2px;
	object-fit: cover;
}

.img-text-div-img > p,
.lrg-img-text-div-img > p {
	margin: 10px 0 0;
	padding: 0;
	text-align: center;
	color: #111;
}

/* Social mini icons */
.sml > a > img {
	width: 32px;
	height: 42px;
	padding: 10px 0 0;
	margin: 0;
}
.sml > a {
	padding-bottom: 32px;
}

/***********************************************************************
*  Two text columns
**********************************************************************/
.two-text-columns-wrapper {
	display: grid;
	gap: 1px;
	text-align: left;
	position: relative;
}

@media (min-width: 1125px) {
	.two-text-columns-wrapper {
		grid-template-columns: 1fr 1fr;
	}

	.two-text-columns-text-left {
		padding: 20px;
		margin: 20px;
		margin-right: 0;
	}

	.two-text-columns-text-right {
		padding: 20px;
		margin: 20px;
		margin-left: 0;
	}
}

@media (max-width: 1124.98px) {
	.two-text-columns-wrapper {
		grid-template-columns: 1fr;
	}

	.two-text-columns-text-left {
		padding: 20px;
		margin: 20px;
		margin-bottom: 0;
	}

	.two-text-columns-text-right {
		padding: 20px;
		margin: 20px;
		margin-top: 0;
	}
}

/***********************************************************************
*  Separators that follow image position
*  (uses your JS classes: .reverse and .img-left)
**********************************************************************/
/* imgText desktop: default border-left; reversed border-right */
@media (min-width: 1125px) {
	.img-text-div-text {
		border-left: 2px solid var(--accent);
	}
	.img-text-div-wrapper.reverse .img-text-div-text {
		border-left: none;
		border-right: 2px solid var(--accent);
	}
}

/* imgText mobile: separator becomes top/bottom depending on order */
@media (max-width: 1124.98px) {
	.img-text-div-text {
		border-left: none;
		border-right: none;
	}

	.img-text-div-wrapper:not(.reverse) .img-text-div-text {
		border-top: 2px solid var(--accent);
		border-bottom: none;
	}

	.img-text-div-wrapper.reverse .img-text-div-text {
		border-top: none;
		border-bottom: 2px solid var(--accent);
	}
}

/* split50 + right mobile: separator becomes top/bottom depending on order */
@media (max-width: 1124.98px) {
	.lrg-img-text-div-text {
		border-left: none;
		border-right: none;
	}

	.lrg-img-text-div-wrapper:not(.img-left) .lrg-img-text-div-text,
	.right:not(.img-left) .lrg-img-text-div-text {
		border-bottom: 2px solid var(--accent);
		border-top: none;
	}

	.lrg-img-text-div-wrapper.img-left .lrg-img-text-div-text,
	.right.img-left .lrg-img-text-div-text {
		border-top: 2px solid var(--accent);
		border-bottom: none;
	}
}

/***********************************************************************
*  True centre divider ONLY for true 50/50 layouts
**********************************************************************/
.lrg-img-text-div-wrapper {
	position: relative;
}

.lrg-img-text-div-wrapper::before,
.two-text-columns-wrapper::before {
	content: "";
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 50%;
	width: 2px;
	transform: translateX(-1px);
	background: var(--accent);
	pointer-events: none;
}

@media (max-width: 1124.98px) {
	.lrg-img-text-div-wrapper::before,
	.two-text-columns-wrapper::before {
		display: none;
	}
}

/***********************************************************************
*  Hover-card overlay inside polaroid frames (optional)
**********************************************************************/
.img-text-div-img .content,
.lrg-img-text-div-img .content {
	width: 100%;
	max-width: none;
	margin: 0;
	border-radius: 2px;
}

.img-text-div-img .content-image,
.lrg-img-text-div-img .content-image {
	width: 100%;
	height: auto;
}

/* Required for overlays to appear above images */
.img-text-div-img .content,
.lrg-img-text-div-img .content {
	position: relative;
}

.img-text-div-img .content-overlay,
.lrg-img-text-div-img .content-overlay {
	z-index: 1;
}

.img-text-div-img .content-details,
.lrg-img-text-div-img .content-details {
	z-index: 2;
}

.img-text-div-img .content-image,
.lrg-img-text-div-img .content-image {
	position: relative;
	z-index: 0;
}

/***********************************************************************
*  Footer
**********************************************************************/
footer {
	text-align: center;
	background-color: var(--card-bg);
	padding: 20px;
	margin: 20px;
}

footer ol li {
	list-style: none;
	margin-bottom: 10px;
}

footer ol {
	padding-left: 0;
	margin: 0;
}

footer ol li img {
	padding: 0 5px;
	width: 35px;
}
footer a {
	text-decoration-line: none;
}

/* Polaroid contexts: let images size naturally (fixes “disappearing” images) */
.img-text-div-img .content-image,
.lrg-img-text-div-img .content-image {
	height: auto;
	object-fit: contain;
}

/* Optional: keep the polaroid content wrapper from collapsing oddly */
.img-text-div-img .content,
.lrg-img-text-div-img .content {
	height: auto;
}

/***********************************************************************
*  cms banner
**********************************************************************/

#cms-banner {
	width: 100%;
	margin-top: 20px;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--cover-bg);
}

#cms-banner img {
	display: block;
	width: 100%;
	max-height: 300px;
	height: auto;
	object-fit: contain; /* show all, no crop */
}

#cms-portal {
	width: 100%;
}

/***********************************************************************
*  cms section adder
**********************************************************************/

/* Empty state */
.cms-empty {
	padding: 18px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	margin: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

/* Emty state text formatting */
.cms-empty-title {
	color: #fff;
	align-self: center;
	font-weight: 700;
	letter-spacing: 0.02em;
	opacity: 0.9;
}

/* Divider CTA */
.cms-divider-btn {
	margin-top: 14px;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
}

.cms-divider-line {
	flex: 1 1 auto;
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
}

.cms-divider-plus {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	font-weight: 900;
	background: rgba(60, 200, 120, 0.18);
	border: 1px solid rgba(60, 200, 120, 0.35);
	transform: translateZ(0);
	transition:
		transform 160ms ease,
		background 160ms ease;
}

.cms-divider-text {
	font-weight: 700;
	letter-spacing: 0.02em;
	opacity: 0.9;
}

/* Hover animation */
.cms-divider-btn:hover .cms-divider-plus {
	transform: scale(1.08) rotate(90deg);
	background: rgba(60, 200, 120, 0.26);
}
.cms-divider-btn:hover .cms-divider-line {
	background: rgba(60, 200, 120, 0.22);
}

.cms-block {
	position: relative;
}

.cms-block--pending {
	outline: 1px solid rgba(255, 183, 3, 0.5);
	box-shadow: 0 0 0 1px rgba(255, 183, 3, 0.2);
}

.cms-block__badge {
	position: absolute;
	top: -20px;
	left: 1px;
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(10, 12, 18, 0.95);
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
	pointer-events: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cms-block__badge--baseline {
	background: rgba(28, 34, 52, 0.97);
	border-color: rgba(110, 130, 190, 0.75);
	color: rgba(235, 242, 255, 0.98);
}

.cms-block__badge--new {
	background: rgba(14, 42, 32, 0.97);
	border-color: rgba(80, 200, 140, 0.9);
	color: rgba(220, 255, 235, 0.98);
}

.cms-block__badge--modified {
	background: rgba(52, 34, 16, 0.97);
	border-color: rgba(255, 170, 80, 0.9);
	color: rgba(255, 238, 220, 0.98);
}

.cms-block__badge--committed {
	background: rgba(24, 36, 72, 0.97);
	border-color: rgba(100, 140, 255, 0.9);
	color: rgba(230, 238, 255, 0.98);
}

.cms-block__badge--removed {
	background: rgba(76, 18, 18, 0.97);
	border-color: rgba(255, 110, 110, 0.9);
	color: rgba(255, 232, 232, 0.98);
}

.cms-block__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 12, 20, 0.4);
	backdrop-filter: blur(1px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	pointer-events: none;
	margin: 0 20px 0 20px;
}

.cms-block__overlay--remove {
	background: rgba(120, 30, 30, 0.6);
	color: rgba(255, 235, 235, 0.95);
}

.cms-block__controls {
	position: absolute;
	top: 8px;
	right: 30px;
	display: flex;
	gap: 6px;
	z-index: 2;
}

.cms-block__btn {
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(10, 12, 20, 0.75);
	color: #1b1b1b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 6px 10px;
	border-radius: 10px;
	cursor: pointer;
	transition:
		background 120ms ease,
		border-color 120ms ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
	text-align: center;
}

.cms-block__btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
}

.cms-block__icon {
	width: 14px;
	height: 14px;
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	font-family: system-ui, sans-serif;
	font-weight: 900;
	font-style: normal;
}

.cms-block__icon--edit {
	font-family: "Material Icons", system-ui, sans-serif;
	font-weight: 400;
}

.cms-block__icon--delete {
	font-family: "Material Icons", system-ui, sans-serif;
	font-weight: 400;
}

.cms-block__btn--edit {
	border-color: rgba(255, 190, 60, 0.9);
	background: rgba(255, 190, 60, 0.4);
	color: #1b1b1b;
}

.cms-block__btn--edit:hover {
	background: rgba(255, 190, 60, 0.7);
	border-color: rgba(255, 190, 60, 1);
}

.cms-block__btn--danger {
	border-color: rgba(255, 110, 110, 0.9);
	background: rgba(180, 40, 40, 0.4);
	color: #1b1b1b;
}

.cms-block__btn--danger:hover {
	background: rgba(180, 40, 40, 0.65);
	border-color: rgba(255, 130, 130, 1);
}

.cms-block__btn--move {
	border-color: rgba(90, 140, 255, 0.9);
	background: rgba(90, 140, 255, 0.4);
	color: #0b1526;
}

.cms-block__btn--move:hover {
	background: rgba(90, 140, 255, 0.7);
	border-color: rgba(90, 140, 255, 1);
}

/***********************************************************************
*  cms modal
**********************************************************************/

.cms-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.7);
	padding: 16px;
}

.cms-modal.is-open {
	display: flex;
}

.cms-modal__panel {
	width: min(900px, 96vw);
	max-height: 92vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #0b1220;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.cms-lock,
.cms-lock body {
	overflow: hidden;
}

.cms-modal__header,
.cms-modal__footer {
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.04);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cms-modal__title {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.04em;
	color: #fff;
}

.cms-modal__close {
	background: rgba(255, 90, 90, 0.16);
	border: 1px solid rgba(255, 90, 90, 0.35);
	color: #fff;
	font-size: 18px;
	width: 32px;
	height: 32px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.cms-modal__close:hover {
	background: rgba(255, 90, 90, 0.3);
	border-color: rgba(255, 90, 90, 0.55);
}

.cms-modal__body {
	padding: 16px;
	overflow: auto;
	color: rgba(255, 255, 255, 0.9);
}

.cms-modal__text {
	margin: 0 0 12px;
	opacity: 0.85;
}

.cms-modal__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cms-modal__group {
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.03);
}

.cms-modal__group:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.2);
}

.cms-modal__row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.cms-modal__row:hover {
	background: rgba(255, 255, 255, 0.04);
}

.cms-modal__row--pick {
	padding: 8px 10px;
	border-radius: 10px;
	cursor: pointer;
}

.cms-modal__row--pick .cms-modal__label {
	cursor: pointer;
}

.cms-modal__row--pick .cms-modal__action--pick {
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cms-modal__row--pick:hover .cms-modal__action--pick {
	background: linear-gradient(135deg, #1f9d5a, #2bc26b);
	border-color: rgba(43, 194, 107, 0.6);
	color: #081a10;
}

.cms-modal__label {
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	user-select: none;
}

.cms-modal__row input[type="checkbox"] {
	cursor: pointer;
	pointer-events: auto;
}

.cms-modal__sublist {
	margin: 0;
	padding-left: 18px;
	opacity: 0.9;
}

.cms-rte__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 14px;
}

.cms-rte__label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.7;
}

.cms-rte {
	min-height: 140px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(12, 18, 32, 0.7);
	color: #f5f7ff;
	font:
		500 14px/1.6 system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Arial;
	overflow: auto;
}

.cms-rte:focus {
	outline: 2px solid rgba(60, 200, 120, 0.35);
	border-color: rgba(60, 200, 120, 0.6);
}

.cms-modal__block {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 4px;
	cursor: pointer;
}

.cms-modal__block:hover {
	background: rgba(255, 255, 255, 0.06);
}

.cms-modal__page {
	cursor: pointer;
}

.cms-modal__input,
.cms-modal__textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 8px 10px;
	margin-bottom: 10px;
}

.cms-modal__input:focus,
.cms-modal__textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.35);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.cms-modal__textarea {
	min-height: 110px;
	resize: vertical;
}

.cms-modal__note {
	font-weight: 800;
	letter-spacing: 0.02em;
	opacity: 0.85;
}
.cms-modal__note--subtle {
	font-weight: 600;
	font-size: 0.9em;
	opacity: 0.7;
}

.cms-modal__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 10px;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 0.7em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(255, 183, 3, 0.2);
	border: 1px solid rgba(255, 183, 3, 0.5);
	color: rgba(255, 255, 255, 0.9);
}

.cms-modal__toggle {
	display: inline-flex;
	gap: 8px;
	margin-bottom: 12px;
}

.cms-modal__toggle-btn {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.75);
	padding: 6px 10px;
	border-radius: 10px;
	cursor: pointer;
}

.cms-modal__toggle-btn.is-active {
	background: rgba(60, 200, 120, 0.2);
	border-color: rgba(60, 200, 120, 0.4);
	color: #fff;
}

.cms-modal__toggle-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}

.cms-modal__loading {
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 24px 0;
	opacity: 0.85;
}

.cms-modal__divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin: 12px 0;
}

.cms-modal__action {
	margin-left: auto;
}

.cms-modal .cms-btn {
	font:
		700 12px/1.2 system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Arial;
	border-radius: 10px;
	padding: 6px 10px;
}

.cms-btn.cms-modal__action {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.85);
	cursor: pointer;
}

.cms-btn.cms-modal__action:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.cms-btn.cms-modal__action.cms-btn--danger {
	background: rgba(255, 90, 90, 0.2);
	border-color: rgba(255, 90, 90, 0.4);
	color: #fff;
	cursor: pointer;
}

.cms-btn.cms-modal__action.cms-btn--success {
	background: rgba(60, 200, 120, 0.2);
	border-color: rgba(60, 200, 120, 0.4);
	color: #fff;
	cursor: pointer;
}

.cms-btn.cms-modal__action:not(.cms-btn--danger):not(.cms-btn--success):hover {
	background: rgba(255, 255, 255, 0.08);
}

.cms-btn.cms-modal__action.cms-btn--danger:hover {
	background: rgba(255, 90, 90, 0.3);
	border-color: rgba(255, 90, 90, 0.55);
}

.cms-btn.cms-modal__action.cms-btn--success:hover {
	background: rgba(60, 200, 120, 0.3);
	border-color: rgba(60, 200, 120, 0.55);
}

/***********************************************************************
*  Doc card (insertable anywhere via CMS)
**********************************************************************/
.doc-card {
	background: #fff;
	padding: 14px;
	margin: 20px;
	box-shadow: var(--shadow);
	border-radius: 2px;
}

.doc-card__link {
	display: block;
	color: #111;
	text-decoration: none;
}

.doc-card__title {
	font-weight: 900;
	letter-spacing: 0.1em;
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-decoration-thickness: 3px;
	margin: 0 0 8px 0;
}

.doc-card__desc {
	margin: 0;
	letter-spacing: 0.08em;
	opacity: 0.9;
}

/* Optional: subtle hover that matches your “card” language */
.doc-card:hover {
	transform: rotate(-1deg);
}

/***********************************************************************
*  Divider
**********************************************************************/
hr.divider {
	border: 0;
	border-top: 2px solid var(--accent);
	margin: 10px 0;
	opacity: 0.9;
}
