/* v12.5-phase6g — Scoped reset: the global [data-slot] { display: none } rule
   from the product-page slot system would hide the doc-grid + chips + doc
   cards because Claude Design reused data-slot attributes. Restore display. */
#screen-index [data-slot],
#screen-preview [data-slot] {
	display: revert !important;
}
#screen-index [data-slot="doc-grid"] {
	display: grid !important;
}
#screen-index [data-slot="type-chips"] {
	display: flex !important;
	flex-wrap: wrap;
}
#screen-preview [data-slot="preview-block"] {
	display: block !important;
}
/* Doc cards themselves are wrapped with data-doc-slug not data-slot, so they
   aren't affected — but just in case Claude Design puts them inside a [data-slot]
   container that gets hidden: explicit show on all cards. */
#screen-index .doc {
	display: flex !important;
}

/* ======================================================
   Materjalid (Document Library) — Eterniit.ee
   Tokens: cream/charcoal/red · Inter 800 + Fraunces italic
   ====================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
	font-family: "Inter", system-ui, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: var(--charcoal);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "ss01", "cv11";
}
img,
svg {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	color: inherit;
}

:root {
	--red-nav: #b8352a;
	--red-accent: #c0392b;
	--red-dark: #a42f22;
	--cream: #faf7f2;
	--cream-warm: #f4ede2;
	--sand: #eee4d3;
	--wood: #8b6f47;
	--charcoal: #201614;
	--charcoal-soft: #3a2d26;
	--ink-grey: #7a6b60;
	--line: #e6ddc9;
	--line-soft: #efe7d5;
	--container: 1280px;
	--gutter: 20px;
}
@media (min-width: 768px) {
	:root {
		--gutter: 32px;
	}
}
@media (min-width: 1200px) {
	:root {
		--gutter: 48px;
	}
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: inherit;
}
.h1 {
	font-size: clamp(38px, 5vw + 14px, 72px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.028em;
}
.h2 {
	font-size: clamp(28px, 3vw + 12px, 48px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
}
.h3 {
	font-size: clamp(20px, 1vw + 14px, 24px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.italic {
	font-family: "Fraunces", serif;
	font-style: italic;
	font-weight: 500;
	color: var(--red-accent);
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--red-accent);
}
.eyebrow::before {
	content: "";
	width: 24px;
	height: 1px;
	background: currentColor;
}
.mono {
	font-family: "JetBrains Mono", monospace;
	letter-spacing: 0.03em;
}

/* ---------- buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	transition:
		background 0.18s,
		color 0.18s,
		border-color 0.18s,
		transform 0.18s;
	cursor: pointer;
}
.btn--red {
	background: var(--red-accent);
	color: #fdfbf7;
}
.btn--red:hover {
	background: var(--red-dark);
}
.btn--ghost {
	background: transparent;
	color: var(--charcoal);
	border-color: var(--charcoal);
}
.btn--ghost:hover {
	background: var(--charcoal);
	color: #fdfbf7;
}

/* ======================================================
   NAV — intentionally NOT redefined here.
   /materjalid/ uses the homepage shell (01-homepage.html),
   which carries its own canonical nav styles + palette-fix.css
   overrides (red bg + white links). Redefining .nav, .nav__menu,
   .nav__logo here previously broke the navbar (cream bg + black
   text, mismatching every other page). v15-task1 (2026-05-09)
   removes those rules so the shell wins.
   ====================================================== */

/* ======================================================
   SCREEN LABEL (delivery overlay, not in production)
   ====================================================== */
.screen-label {
	background: var(--charcoal);
	color: #fdfbf7;
	padding: 18px 0;
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.screen-label .container {
	display: flex;
	align-items: baseline;
	gap: 24px;
	flex-wrap: wrap;
}
.screen-label__tag {
	color: var(--red-accent);
	font-weight: 500;
}
.screen-label__desc {
	color: #fdfbf7;
	opacity: 0.7;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: none;
	font-size: 13px;
	font-family: "Inter", system-ui, sans-serif;
}

/* ======================================================
   BREADCRUMB
   ====================================================== */
.crumb {
	/* v17bl.1 — Use padding-top/bottom only so .crumb.container can still apply
	   horizontal gutter via .container's padding-left/right. Was: padding: 24px 0 8px
	   which clobbered horizontal gutter, pushing crumb flush to viewport edge on mobile. */
	padding-top: 24px;
	padding-bottom: 8px;
	font-size: 13px;
	color: var(--ink-grey);
	font-family: "JetBrains Mono", monospace;
}
.crumb a:hover {
	color: var(--red-accent);
}
.crumb span {
	margin: 0 10px;
	opacity: 0.5;
}

/* ======================================================
   SCREEN 1 — INDEX HERO
   ====================================================== */
.mat-hero {
	padding: 20px 0 64px;
	border-bottom: 1px solid var(--line);
}
.mat-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: end;
}
@media (min-width: 900px) {
	.mat-hero__grid {
		grid-template-columns: 1fr auto;
		gap: 64px;
	}
}
.mat-hero__eyebrow {
	margin-bottom: 18px;
}
.mat-hero__title {
	margin-bottom: 20px;
	max-width: 16ch;
}
.mat-hero__title u {
	text-decoration: none;
}
.mat-hero__sub {
	max-width: 58ch;
	color: var(--charcoal-soft);
	font-size: clamp(15px, 0.6vw + 13px, 18px);
	line-height: 1.5;
}
.mat-hero__stat {
	text-align: right;
	padding: 8px 0;
	border-top: 1px solid var(--charcoal);
	border-bottom: 1px solid var(--charcoal);
	min-width: 180px;
}
.mat-hero__stat-num {
	font-size: clamp(48px, 4vw + 20px, 72px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}
.mat-hero__stat-label {
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-grey);
	margin-top: 8px;
}

/* ======================================================
   v17q — FILTER / SEARCH BAR migrated to canonical .global-filter
   (global-filter.css). Legacy .mat-filters / .mat-chip / .mat-search
   rules removed; the search <input class="mat-search__input"> kept
   only as a JS hook (selector targeted by materjalid.js).
   ====================================================== */

/* ======================================================
   DOC GRID
   ====================================================== */
.mat-grid-wrap {
	padding: 40px 0 96px;
}
.mat-grid-meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 20px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--line);
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	color: var(--ink-grey);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.mat-grid-meta strong {
	color: var(--charcoal);
	font-weight: 500;
}

.mat-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 480px) {
	.mat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {
	.mat-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1024px) {
	.mat-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 32px 24px;
	}
}

/* -------- Doc card -------- */
.doc {
	display: flex;
	flex-direction: column;
	background: transparent;
	position: relative;
	transition: transform 0.25s ease;
}
.doc:hover {
	transform: translateY(-4px);
}
/* v17s — must beat `#screen-index .doc { display: flex !important; }` defined
   above. That rule has specificity 0-1-1 (id + class); a plain .doc.is-hidden
   is only 0-0-2. Adding an #screen-index-scoped copy matches the id selector
   and wins the cascade. Without this, JS toggled is-hidden has no visual effect. */
.doc.is-hidden,
#screen-index .doc.is-hidden {
	display: none !important;
}

.doc__cover {
	position: relative;
	aspect-ratio: 3 / 4;
	background: var(--cream-warm);
	border: 1px solid var(--line);
	overflow: hidden;
	margin-bottom: 16px;
}
.doc__cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.doc:hover .doc__cover-img {
	transform: scale(1.03);
}

.doc__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 10px;
	background: var(--cream);
	font-family: "JetBrains Mono", monospace;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--charcoal);
	border: 1px solid var(--line);
}

/* v12.5-phase11 — .doc__body removed; everything lives on .doc__cover now.
   Title is rendered inside the SVG via foreignObject (word-wrapped); meta +
   Vaata appear as bottom overlay strip via .doc__overlay below. */
.doc__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		180deg,
		rgba(32, 22, 20, 0) 0%,
		rgba(32, 22, 20, 0.78) 60%,
		rgba(32, 22, 20, 0.92) 100%
	);
	color: #fdfbf7;
	padding: 32px 16px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.04em;
	z-index: 2;
}
.doc__overlay .doc__meta {
	color: rgba(253, 251, 247, 0.85);
}
.doc__overlay .doc__cta {
	font-weight: 600;
	color: #fdfbf7;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.doc:hover .doc__overlay .doc__cta {
	color: var(--red-accent);
}
.doc__source {
	position: absolute;
	top: 12px;
	right: 12px;
	font-family: "JetBrains Mono", monospace;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: rgba(32, 22, 20, 0.78);
	color: #fdfbf7;
	padding: 4px 8px;
	z-index: 2;
}
.doc__body {
	display: none;
}
.doc__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--charcoal);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.6em;
	transition: color 0.15s;
}
.doc:hover .doc__title {
	color: var(--red-accent);
}

.doc__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	color: var(--ink-grey);
	letter-spacing: 0.05em;
}
.doc__meta-sep {
	opacity: 0.4;
}

.doc__cta {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--red-accent);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.doc__cta-arrow {
	transition: transform 0.2s;
}
.doc:hover .doc__cta-arrow {
	transform: translateX(4px);
}

/* -------- Empty state -------- */
.mat-empty {
	display: none;
	text-align: center;
	padding: 96px 20px;
	border: 1px dashed var(--line);
	background: var(--cream-warm);
}
.mat-empty.is-visible {
	display: block;
}
.mat-empty h3 {
	font-family: "Fraunces", serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(24px, 2vw + 10px, 32px);
	margin-bottom: 12px;
}
.mat-empty p {
	color: var(--charcoal-soft);
	margin: 0 0 28px;
	font-size: 15px;
}

/* ======================================================
   CTA BAND
   ====================================================== */
.mat-cta {
	background: var(--charcoal);
	color: #fdfbf7;
	padding: 96px 0;
}
.mat-cta__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: end;
}
@media (min-width: 900px) {
	.mat-cta__grid {
		grid-template-columns: 1.4fr 1fr;
		gap: 64px;
	}
}
.mat-cta .eyebrow {
	color: #ff8b7a;
}
.mat-cta .eyebrow::before {
	background: #ff8b7a;
}
.mat-cta__title {
	margin-top: 18px;
	margin-bottom: 20px;
	max-width: 18ch;
}
.mat-cta__title .italic {
	color: #ff8b7a;
}
.mat-cta__sub {
	color: rgba(253, 251, 247, 0.75);
	max-width: 52ch;
	font-size: 16px;
}
.mat-cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
}
@media (min-width: 900px) {
	.mat-cta__actions {
		justify-content: flex-end;
	}
}
/* v17ab — need !important to beat palette-fix.css's sitewide
   .btn--ghost { color: #201614 !important } rule. Without !important
   here, "Helista 1900" text was dark-on-dark (invisible) until hover. */
.mat-cta .btn--ghost {
	color: #fdfbf7 !important;
	border-color: rgba(253, 251, 247, 0.4) !important;
}
.mat-cta .btn--ghost:hover {
	background: #fdfbf7 !important;
	color: var(--charcoal) !important;
}

/* ======================================================
   FOOTER (compact shared)
   ====================================================== */
.footer {
	background: #14100e;
	color: rgba(253, 251, 247, 0.7);
	padding: 64px 0 32px;
	font-size: 14px;
}
.footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(253, 251, 247, 0.1);
}
@media (min-width: 768px) {
	.footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
		gap: 48px;
	}
}
.footer__brand {
	color: #fdfbf7;
}
.footer__brand .nav__logo {
	color: #fdfbf7;
	font-size: 22px;
}
.footer__tag {
	margin: 16px 0 0;
	color: rgba(253, 251, 247, 0.7);
	font-size: 14px;
	max-width: 30ch;
}
.footer__col h4 {
	color: #fdfbf7;
	font-size: 12px;
	font-family: "JetBrains Mono", monospace;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 16px;
	font-weight: 500;
}
.footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__col a:hover {
	color: #fdfbf7;
}
.footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	flex-wrap: wrap;
	gap: 16px;
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	color: rgba(253, 251, 247, 0.5);
	letter-spacing: 0.08em;
}

/* ======================================================
   SCREEN 2 — PREVIEW PAGE
   ====================================================== */
.prv-hero {
	padding: 16px 0 64px;
	border-bottom: 1px solid var(--line);
}
.prv-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}
@media (min-width: 900px) {
	.prv-grid {
		grid-template-columns: 3fr 2fr;
		gap: 64px;
	}
}
.prv-cover {
	aspect-ratio: 3 / 4;
	background: var(--cream-warm);
	border: 1px solid var(--line);
	position: relative;
	overflow: hidden;
	max-width: 520px;
}
.prv-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prv-info__pill {
	display: inline-block;
	padding: 5px 10px;
	background: var(--sand);
	color: var(--charcoal);
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.prv-info__title {
	font-size: clamp(32px, 3vw + 14px, 48px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin-bottom: 20px;
}
.prv-info__sub {
	color: var(--charcoal-soft);
	font-size: 16px;
	margin-bottom: 32px;
	max-width: 46ch;
}
.prv-info__meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 32px;
	padding: 24px 0;
	margin-bottom: 32px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.prv-info__meta dt {
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-grey);
	margin-bottom: 4px;
}
.prv-info__meta dd {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--charcoal);
}
.prv-info__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* -------- Preview iframe block -------- */
.prv-preview {
	background: var(--cream-warm);
	padding: 80px 0;
	border-bottom: 1px solid var(--line);
}
.prv-preview__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 32px;
}
.prv-preview__head .eyebrow {
	margin: 0;
}
.prv-preview__dl {
	font-size: 14px;
	font-weight: 600;
	color: var(--red-accent);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border-bottom: 1px solid transparent;
	padding-bottom: 2px;
}
.prv-preview__dl:hover {
	border-bottom-color: var(--red-accent);
}

.prv-preview__frame {
	width: 100%;
	height: 60vh;
	min-height: 480px;
	background: #fdfbf7;
	border: 1px solid var(--line);
}
.prv-preview__fallback {
	display: none;
	padding: 80px 40px;
	text-align: center;
	background: #fdfbf7;
	border: 1px solid var(--line);
}
.prv-preview.is-fallback .prv-preview__frame {
	display: none;
}
.prv-preview.is-fallback .prv-preview__fallback {
	display: block;
}

/* -------- Related strip -------- */
.prv-related {
	padding: 80px 0;
}
.prv-related__head {
	margin-bottom: 48px;
}
.prv-related__head .h2 {
	margin-top: 12px;
	max-width: 16ch;
}
.prv-related__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 600px) {
	.prv-related__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.prv-related__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.rel {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: var(--cream-warm);
	border: 1px solid var(--line);
	transition:
		border-color 0.15s,
		transform 0.2s;
	align-items: center;
}
.rel:hover {
	border-color: var(--charcoal);
	transform: translateY(-2px);
}
.rel__cover {
	flex-shrink: 0;
	width: 72px;
	height: 96px;
	background: var(--sand);
	overflow: hidden;
}
.rel__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* v12.5-phase13.3: SVG cover (from coverSvg helper) needs explicit fill so the
   foreignObject title scales proportionally to the small 72×96 tile instead of
   overflowing at the SVG's native 300×400 viewBox dimensions. */
.rel__cover svg {
	width: 100%;
	height: 100%;
	display: block;
}
.rel__body {
	flex: 1;
	min-width: 0;
}
.rel__title {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.3;
	color: var(--charcoal);
	margin-bottom: 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.rel__meta {
	font-family: "JetBrains Mono", monospace;
	font-size: 10px;
	color: var(--ink-grey);
	letter-spacing: 0.05em;
}

/* -------- Feedback band -------- */
.prv-feedback {
	background: var(--cream-warm);
	border-top: 1px solid var(--line);
	padding: 64px 0;
	text-align: center;
}
.prv-feedback__title {
	font-family: "Fraunces", serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(24px, 2vw + 12px, 32px);
	margin-bottom: 20px;
}
.prv-feedback a {
	color: var(--red-accent);
	font-weight: 600;
	border-bottom: 1px solid var(--red-accent);
}

/* ======================================================
   SEPARATOR (delivery only)
   ====================================================== */
.delivery-sep {
	height: 64px;
	background: repeating-linear-gradient(
		-45deg,
		transparent 0 10px,
		var(--sand) 10px 12px
	);
}

/* v17ai — Hybrid PDF preview: iframe on desktop, tap-to-open card on mobile.
   iOS Safari iframes only render page 1 of PDFs with no scroll; Android Samsung
   Internet doesn't preview inline at all (shows "Open" button instead). Below
   1024px we swap the iframe for a structured card with explicit Ava PDF /
   Laadi alla buttons so the native PDF viewer handles pagination correctly. */
.prv-mobile-card {
	display: none;
}
@media (max-width: 1023px) {
	.prv-preview__frame {
		display: none !important;
	}
	.prv-cover--pdf {
		min-height: auto;
		height: auto;
		aspect-ratio: auto;
	}
	.prv-mobile-card {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		padding: 32px 24px;
		background: var(--cream-warm, #f4ede2);
		border: 1px solid var(--line, #e8e0d2);
		border-radius: 6px;
		text-align: center;
	}
	.prv-mobile-card__icon {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		color: var(--red-accent, #c0392b);
	}
	.prv-mobile-card__icon svg {
		width: 48px;
		height: 48px;
	}
	.prv-mobile-card__type {
		font:
			700 11px / 1 "JetBrains Mono",
			monospace;
		letter-spacing: 0.12em;
		padding: 3px 8px;
		background: var(--red-accent, #c0392b);
		color: #fff;
		border-radius: 2px;
	}
	.prv-mobile-card__meta {
		display: flex;
		flex-direction: column;
		gap: 4px;
		font-size: 14px;
		color: var(--charcoal, #201614);
	}
	.prv-mobile-card__name {
		font-weight: 600;
		word-break: break-word;
		line-height: 1.3;
	}
	.prv-mobile-card__size {
		font:
			500 12px / 1.4 "JetBrains Mono",
			monospace;
		color: var(--ink-grey, #7a6b60);
		letter-spacing: 0.04em;
	}
	.prv-mobile-card__actions {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
		width: 100%;
	}
	.prv-mobile-card__actions .btn {
		display: inline-flex;
		align-items: center;
		flex: 1 1 140px;
		justify-content: center;
	}
}
