:root {
	--hf-primary: #0b7a3e;
	--hf-primary-dark: #075a2e;
	--hf-primary-light: #4caf78;
	--hf-secondary: #f5b301;
	--hf-secondary-dark: #c48f00;
	--hf-accent: #0f172a;
	--hf-dark-bg: #0a1220;

	--hf-radius: 16px;
	--hf-radius-sm: 8px;
	--hf-radius-lg: 24px;
	--hf-container: 1280px;
	--hf-font-size: 16px;
	--hf-font: "Vazirmatn", "Vazir", "IRANSans", Tahoma, "Segoe UI", sans-serif;
	--hf-heading-font: var(--hf-font);

	--hf-body-bg: #f3f6fb;
	--hf-surface: #ffffff;
	--hf-surface-2: #f7f9fd;
	--hf-surface-3: #eef2f8;
	--hf-text: #16203a;
	--hf-text-muted: #5c6a85;
	--hf-text-faint: #8695ad;
	--hf-border: #e3e8f2;
	--hf-border-strong: #d3dbe9;
	--hf-shadow: 0 10px 30px -12px rgba(11, 34, 72, 0.22);
	--hf-shadow-lg: 0 28px 60px -24px rgba(9, 30, 66, 0.32);
	--hf-glass: rgba(255, 255, 255, 0.72);
	--hf-overlay: rgba(8, 17, 32, 0.72);

	--hf-header-bg: rgba(255, 255, 255, 0.92);
	--hf-topbar-bg: linear-gradient(90deg, var(--hf-accent), #14243f 55%, var(--hf-primary-dark));
	--hf-topbar-text: #e6ecf7;

	--hf-success: #16a34a;
	--hf-danger: #dc2626;
	--hf-info: #0284c7;

	--hf-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--hf-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--hf-duration: 0.32s;

	--hf-social-size: 40px;
	--hf-slider-height: 620px;
	--hf-committee-color: var(--hf-primary);
	--hf-cat-color: var(--hf-primary);
	--hf-section-accent: var(--hf-primary);
	--hf-archive-accent: var(--hf-primary);
}

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--hf-font);
	font-size: var(--hf-font-size);
	line-height: 1.9;
	color: var(--hf-text);
	background-color: var(--hf-body-bg);
	background-image:
		radial-gradient(circle at 12% -10%, rgba(11, 122, 62, 0.10), transparent 42%),
		radial-gradient(circle at 88% 0%, rgba(245, 179, 1, 0.10), transparent 38%);
	background-attachment: fixed;
	direction: rtl;
	text-align: right;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color var(--hf-duration) var(--hf-ease), color var(--hf-duration) var(--hf-ease);
}

body.hf-scroll-lock {
	overflow: hidden;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

img {
	border-style: none;
}

svg {
	fill: none;
	vertical-align: middle;
}

.hf-icon {
	flex: 0 0 auto;
	display: inline-block;
	vertical-align: middle;
}

a {
	color: var(--hf-primary);
	text-decoration: none;
	transition: color 0.2s var(--hf-ease), opacity 0.2s var(--hf-ease);
}

a:hover {
	color: var(--hf-primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--hf-secondary);
	outline-offset: 2px;
	border-radius: 6px;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	color: inherit;
}

input,
select,
textarea {
	font-family: inherit;
	font-size: 1rem;
	color: inherit;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--hf-heading-font);
	font-weight: 800;
	line-height: 1.55;
	margin: 0 0 0.6em;
	color: var(--hf-text);
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.5rem, 2.6vw, 2.3rem); }
h2 { font-size: clamp(1.3rem, 2.1vw, 1.85rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.4rem); }
h4 { font-size: 1.06rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.94rem; }

p {
	margin: 0 0 1em;
}

hr {
	border: 0;
	border-top: 1px solid var(--hf-border);
	margin: 2rem 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0;
	font-size: 0.95em;
}

table th,
table td {
	border: 1px solid var(--hf-border);
	padding: 0.7em 0.9em;
	text-align: right;
}

table th {
	background: var(--hf-surface-3);
	font-weight: 700;
}

blockquote {
	margin: 1.6em 0;
	padding: 1.1em 1.4em;
	border-inline-start: 4px solid var(--hf-secondary);
	background: var(--hf-surface-2);
	border-radius: 0 var(--hf-radius-sm) var(--hf-radius-sm) 0;
	font-weight: 500;
	color: var(--hf-text);
}

blockquote p:last-child {
	margin-bottom: 0;
}

code,
pre,
kbd {
	font-family: "SFMono-Regular", Consolas, "Courier New", monospace;
	font-size: 0.9em;
	direction: ltr;
	text-align: left;
}

code {
	background: var(--hf-surface-3);
	padding: 0.15em 0.45em;
	border-radius: 6px;
}

pre {
	background: var(--hf-accent);
	color: #e6ecf7;
	padding: 1.1em;
	border-radius: var(--hf-radius-sm);
	overflow-x: auto;
}

.hf-container {
	width: 100%;
	max-width: var(--hf-container);
	margin-inline: auto;
	padding-inline: clamp(0.85rem, 2.4vw, 1.75rem);
}

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

.skip-link {
	position: absolute;
	top: -100px;
	inset-inline-start: 50%;
	transform: translateX(-50%);
	z-index: 99999;
	background: var(--hf-secondary);
	color: #1b1300;
	padding: 0.7em 1.4em;
	border-radius: 0 0 var(--hf-radius-sm) var(--hf-radius-sm);
	font-weight: 700;
	transition: top 0.25s var(--hf-ease);
}

.skip-link:focus {
	top: 0;
}

.hf-main {
	position: relative;
	z-index: 1;
	min-height: 60vh;
}

.hf-section {
	position: relative;
	padding: clamp(2.2rem, 4vw, 3.6rem) 0;
}

.hf-section:nth-of-type(even) {
	background: linear-gradient(180deg, transparent, var(--hf-surface-2) 30%, var(--hf-surface-2) 70%, transparent);
}

.hf-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: clamp(1.2rem, 2.4vw, 2.2rem);
	align-items: start;
	padding-block: clamp(1.4rem, 3vw, 2.6rem);
}

.hf-layout--full {
	grid-template-columns: minmax(0, 1fr);
}

.hf-content-column {
	min-width: 0;
}

body.hf-sidebar-left .hf-layout:not(.hf-layout--full) {
	grid-template-columns: 340px minmax(0, 1fr);
}

body.hf-sidebar-left .hf-content-column {
	order: 2;
}

body.hf-sidebar-left .hf-sidebar {
	order: 1;
}

.hf-grid {
	display: grid;
	gap: clamp(0.9rem, 1.8vw, 1.5rem);
}

.hf-grid--1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.hf-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hf-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hf-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hf-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hf-grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.hf-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
	margin-bottom: clamp(1.2rem, 2.4vw, 2rem);
}

.hf-section-head-main {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-width: 0;
}

.hf-section-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: var(--hf-radius-sm);
	color: #fff;
	background: linear-gradient(140deg, var(--hf-section-accent), var(--hf-primary-dark));
	box-shadow: 0 12px 24px -14px var(--hf-section-accent);
	position: relative;
	overflow: hidden;
}

.hf-section-icon::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45), transparent 60%);
	opacity: 0.6;
}

.hf-section-title {
	margin: 0;
	font-size: clamp(1.18rem, 2vw, 1.6rem);
	position: relative;
	display: inline-block;
}

.hf-section-title::after {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	border-radius: 4px;
	margin-top: 0.4rem;
	background: linear-gradient(90deg, var(--hf-secondary), transparent);
}

.hf-section-subtitle {
	margin: 0.35rem 0 0;
	color: var(--hf-text-muted);
	font-size: 0.93rem;
	max-width: 62ch;
}

.hf-section-subtitle + .hf-section-title::after,
.hf-section-title::after + .hf-section-subtitle {
	margin-top: 0;
}

.hf-section-foot {
	display: flex;
	justify-content: center;
	margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.hf-section-more {
	white-space: nowrap;
}

.hf-block-title {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.24rem;
	margin-bottom: 1.2rem;
}

.hf-block-title .hf-icon {
	color: var(--hf-primary);
}

.hf-btn {
	--hf-btn-bg: var(--hf-primary);
	--hf-btn-color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.68em 1.4em;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.6;
	background: var(--hf-btn-bg);
	color: var(--hf-btn-color);
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.25s var(--hf-ease), box-shadow 0.25s var(--hf-ease), background-color 0.25s var(--hf-ease), color 0.25s var(--hf-ease);
	box-shadow: 0 12px 22px -16px rgba(9, 30, 66, 0.9);
}

.hf-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
	transform: translateX(-120%);
	transition: transform 0.6s var(--hf-ease);
}

.hf-btn:hover {
	transform: translateY(-2px);
	color: var(--hf-btn-color);
	box-shadow: 0 18px 30px -18px rgba(9, 30, 66, 0.85);
}

.hf-btn:hover::before {
	transform: translateX(120%);
}

.hf-btn:active {
	transform: translateY(0) scale(0.985);
}

.hf-btn--primary {
	background: linear-gradient(135deg, var(--hf-primary), var(--hf-primary-dark));
}

.hf-btn--secondary {
	background: linear-gradient(135deg, var(--hf-secondary), var(--hf-secondary-dark));
	color: #241a00;
}

.hf-btn--ghost {
	background: transparent;
	color: var(--hf-primary);
	border-color: var(--hf-border-strong);
	box-shadow: none;
}

.hf-btn--ghost:hover {
	background: var(--hf-surface-3);
	border-color: var(--hf-primary);
}

.hf-btn--glass {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hf-btn--lg {
	padding: 0.82em 1.8em;
	font-size: 1rem;
}

.hf-btn--sm {
	padding: 0.4em 0.95em;
	font-size: 0.83rem;
}

.hf-btn--block {
	width: 100%;
}

.hf-btn[disabled],
.hf-btn.is-loading {
	opacity: 0.65;
	pointer-events: none;
}

.hf-btn-label {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
}

.hf-btn-loading {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
}

.hf-btn-loading::before {
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	animation: hf-spin 0.75s linear infinite;
}

.hf-btn.is-loading .hf-btn-loading,
.hf-btn.is-loading .hf-btn-label[hidden] {
	display: inline-flex;
}

@keyframes hf-spin {
	to { transform: rotate(360deg); }
}

.hf-checkbox--inline {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-inline-end: 1rem;
	font-size: 0.86rem;
	font-weight: 500;
	cursor: pointer;
}

.hf-checkbox--inline input {
	accent-color: var(--hf-primary);
	width: 17px;
	height: 17px;
}

.hf-field-hint {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.78rem;
	color: var(--hf-text-faint);
	line-height: 1.85;
}

.hf-code-area,
.hf-textarea {
	width: 100%;
	min-height: 130px;
	padding: 0.75rem 0.9rem;
	border-radius: var(--hf-radius-sm);
	border: 1px solid var(--hf-border);
	background: var(--hf-surface);
	color: var(--hf-text);
	font-family: Consolas, Monaco, "Courier New", monospace;
	font-size: 0.84rem;
	line-height: 1.9;
	direction: ltr;
	text-align: left;
	resize: vertical;
}

.hf-code-area:focus,
.hf-textarea:focus {
	border-color: var(--hf-primary);
	box-shadow: 0 0 0 3px rgba(11, 122, 62, 0.14);
	outline: none;
}

.hf-icon-btn {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: var(--hf-text);
	background: var(--hf-surface-2);
	border: 1px solid var(--hf-border);
	transition: background-color 0.2s var(--hf-ease), color 0.2s var(--hf-ease), transform 0.2s var(--hf-ease);
}

.hf-icon-btn:hover {
	background: var(--hf-primary);
	color: #fff;
	transform: translateY(-1px);
}

.hf-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.24em 0.75em;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.9;
	background: var(--hf-surface-3);
	color: var(--hf-text-muted);
	border: 1px solid var(--hf-border);
}

.hf-badge--primary {
	background: var(--hf-cat-color);
	border-color: transparent;
	color: #fff;
}

.hf-badge--live {
	background: rgba(220, 38, 38, 0.12);
	border-color: rgba(220, 38, 38, 0.35);
	color: #b91c1c;
}

.hf-badge--cat {
	background: var(--hf-cat-color);
	color: #fff;
	border-color: transparent;
}

.hf-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
	animation: hf-pulse-dot 1.8s infinite;
}

@keyframes hf-pulse-dot {
	0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
	100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.hf-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 1rem;
	font-size: 0.8rem;
	color: var(--hf-text-faint);
}

.hf-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.32rem;
	white-space: nowrap;
}

.hf-meta-item .hf-icon {
	opacity: 0.75;
}

.hf-meta-item a {
	color: inherit;
}

.hf-meta-item a:hover {
	color: var(--hf-primary);
}

.hf-form-row {
	display: flex;
	flex-direction: column;
	gap: 0.42rem;
	margin-bottom: 1.05rem;
	position: relative;
}

.hf-form-row label {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--hf-text);
}

.hf-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 1.1rem;
}

.hf-form-row--full,
.hf-form-row--captcha {
	grid-column: 1 / -1;
}

.hf-form-row--hp {
	position: absolute !important;
	inset-inline-start: -9999px !important;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.hf-form input[type="text"],
.hf-form input[type="search"],
.hf-form input[type="email"],
.hf-form input[type="tel"],
.hf-form input[type="url"],
.hf-form input[type="password"],
.hf-form input[type="number"],
.hf-form textarea,
.hf-form select {
	width: 100%;
	padding: 0.78em 1em;
	border-radius: var(--hf-radius-sm);
	border: 1.5px solid var(--hf-border-strong);
	background: var(--hf-surface);
	color: var(--hf-text);
	transition: border-color 0.2s var(--hf-ease), box-shadow 0.2s var(--hf-ease), background-color 0.2s;
}

.hf-form textarea {
	resize: vertical;
	min-height: 130px;
	line-height: 1.9;
}

.hf-form input:focus,
.hf-form textarea:focus,
.hf-form select:focus {
	outline: none;
	border-color: var(--hf-primary);
	box-shadow: 0 0 0 4px rgba(11, 122, 62, 0.14);
}

.hf-form input.is-invalid,
.hf-form textarea.is-invalid,
.hf-form select.is-invalid {
	border-color: var(--hf-danger);
	box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.hf-select-wrap {
	position: relative;
}

.hf-select-wrap select {
	appearance: none;
	-webkit-appearance: none;
	padding-inline-end: 2.4rem;
	cursor: pointer;
}

.hf-select-wrap::after {
	content: "";
	position: absolute;
	inset-inline-end: 1rem;
	top: 50%;
	width: 8px;
	height: 8px;
	border: 2px solid var(--hf-text-muted);
	border-top: 0;
	border-inline-start: 0;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.hf-required {
	color: var(--hf-danger);
}

.hf-optional {
	color: var(--hf-text-faint);
	font-weight: 400;
	font-size: 0.8em;
}

.hf-input-icon {
	position: absolute;
	inset-inline-start: 0.85rem;
	top: 2.5rem;
	color: var(--hf-text-faint);
	pointer-events: none;
}

.hf-form input[type="text"],
.hf-form input[type="password"] {
	padding-inline-start: 2.6rem;
}

.hf-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	font-weight: 500;
}

.hf-checkbox input {
	width: 18px;
	height: 18px;
	accent-color: var(--hf-primary);
	cursor: pointer;
}

.hf-form-message {
	min-height: 1.4em;
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0.5rem 0;
}

.hf-form-message.is-success {
	color: var(--hf-success);
}

.hf-form-message.is-error {
	color: var(--hf-danger);
}

.hf-form-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 0.6rem;
}

.hf-form-hint {
	color: var(--hf-text-muted);
	font-size: 0.92rem;
	margin-bottom: 1.2rem;
}

.hf-search-inline {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--hf-surface);
	border: 1.5px solid var(--hf-border-strong);
	border-radius: 999px;
	padding: 0.3rem 0.4rem 0.3rem 1rem;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.hf-search-inline:focus-within {
	border-color: var(--hf-primary);
	box-shadow: 0 0 0 4px rgba(11, 122, 62, 0.12);
}

.hf-search-inline input {
	flex: 1;
	border: 0 !important;
	background: transparent !important;
	padding: 0.5em 0.2em !important;
	box-shadow: none !important;
	min-width: 0;
}

.hf-search-inline button {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--hf-primary);
	color: #fff;
	border-radius: 999px;
	padding: 0.55em 1.15em;
	font-weight: 700;
	font-size: 0.88rem;
	transition: background-color 0.2s, transform 0.2s;
}

.hf-search-inline button:hover {
	background: var(--hf-primary-dark);
	transform: translateY(-1px);
}

.hf-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--hf-radius);
	overflow: hidden;
	background: #060c16;
	box-shadow: var(--hf-shadow);
}

.hf-video-frame iframe,
.hf-video-frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@supports not (aspect-ratio: 16 / 9) {
	.hf-video-frame::before {
		content: "";
		display: block;
		padding-top: 56.25%;
	}
}

.hf-empty {
	text-align: center;
	color: var(--hf-text-muted);
	background: var(--hf-surface-2);
	border: 1px dashed var(--hf-border-strong);
	border-radius: var(--hf-radius);
	padding: 2rem 1rem;
}

.hf-empty-state {
	text-align: center;
	padding: clamp(2rem, 6vw, 4.5rem) 1rem;
	background: var(--hf-surface);
	border-radius: var(--hf-radius-lg);
	border: 1px solid var(--hf-border);
	box-shadow: var(--hf-shadow);
}

.hf-empty-icon {
	display: inline-grid;
	place-items: center;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	color: var(--hf-primary);
	background: linear-gradient(140deg, rgba(11, 122, 62, 0.14), rgba(245, 179, 1, 0.14));
	margin-bottom: 1rem;
}

.hf-empty-title {
	margin-bottom: 0.4rem;
}

.hf-empty-text {
	color: var(--hf-text-muted);
	max-width: 56ch;
	margin-inline: auto;
}

.hf-empty-search {
	max-width: 520px;
	margin: 1.6rem auto;
}

.hf-empty-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	justify-content: center;
}

.hf-breadcrumb {
	font-size: 0.84rem;
	color: var(--hf-text-faint);
	margin-bottom: 1rem;
}

.hf-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
}

.hf-breadcrumb a {
	color: var(--hf-text-muted);
}

.hf-breadcrumb a:hover {
	color: var(--hf-primary);
}

.hf-breadcrumb-sep {
	display: inline-flex;
	opacity: 0.5;
}

.hf-breadcrumb li:last-child span {
	color: var(--hf-primary);
	font-weight: 700;
}

.hf-pattern {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.35);
	pointer-events: none;
}

@media print {
	body {
		background: #fff !important;
		color: #000 !important;
		font-size: 12pt;
	}

	.hf-topbar,
	.hf-site-header,
	.hf-sidebar,
	.hf-site-footer,
	.hf-floating-socials,
	.hf-back-to-top,
	.hf-sticky-bar,
	.hf-single-toolbar,
	.hf-share,
	.hf-rating,
	.hf-post-nav,
	.hf-related,
	.hf-comments-form-wrap,
	.hf-ticker,
	.hf-breadcrumb,
	.hf-fontsize,
	.hf-mobile-panel,
	.hf-search-overlay,
	.hf-preloader {
		display: none !important;
	}

	.hf-layout {
		display: block !important;
	}

	.hf-single-content {
		max-width: 100% !important;
	}

	a[href]::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
		color: #555;
	}

	.hf-single-media img,
	.hf-single-thumb img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}

	.hf-single-title {
		page-break-after: avoid;
	}
}
