/* ==========================================================================
   Pijani somovi — site.css
   1. Fonts
   2. Tokens
   3. Base & typography
   4. Layout primitives
   5. Statistics bar
   6. Filter bar
   7. Tournament card
   8. Tournament archive
   9. Single tournament
   10. Timeline / sponsors / contact
   11. Empty states & utilities
   ========================================================================== */

/* 1. Fonts — self-hosted, latin-ext subset required for š đ č ć ž.
   Drop the .woff2 files into assets/fonts/ (see assets/fonts/README.md). */

@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/oswald-v53-latin-ext-500.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/oswald-v53-latin-ext-700.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/inter-v18-latin-ext-regular.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/inter-v18-latin-ext-600.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* 2. Tokens — mirrored in Elementor → Site Settings → Global Colors/Fonts. */

:root {
	--ps-primary: #0b2434;
	--ps-secondary: #12405c;
	--ps-accent: #f0a020;
	--ps-text: #1a1a1a;
	--ps-text-light: #e8eef2;
	--ps-surface: #f5f7f8;

	--ps-font-heading: 'Oswald', 'Arial Narrow', sans-serif;
	--ps-font-body: 'Inter', -apple-system, 'Segoe UI', roboto, sans-serif;

	--ps-container: 1200px;
	--ps-section-y: 100px;
	--ps-gap: 24px;
	--ps-radius: 8px;
	--ps-radius-pill: 999px;

	--ps-gold: #d4a017;
	--ps-silver: #9aa5ad;
	--ps-bronze: #a9713b;
	--ps-neutral: #12405c;
}

@media (max-width: 768px) {
	:root {
		--ps-section-y: 60px;
		--ps-gap: 16px;
	}
}

/* 3. Base & typography */

.ps-scope,
body.ps-body {
	color: var(--ps-text);
	font-family: var(--ps-font-body);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
}

.ps-scope h1,
.ps-scope h2,
.ps-scope h3,
.ps-scope h4 {
	font-family: var(--ps-font-heading);
	margin: 0 0 0.5em;
	color: inherit;
}

.ps-scope h1 {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.ps-scope h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
}

.ps-scope h3 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
}

.ps-scope p {
	margin: 0 0 1.2em;
}

.ps-scope a {
	color: var(--ps-secondary);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.ps-scope a:hover,
.ps-scope a:focus-visible {
	color: var(--ps-accent);
}

.ps-small {
	font-size: 14px;
}

@media (max-width: 768px) {
	.ps-scope,
	body.ps-body {
		font-size: 16px;
	}

	.ps-scope h1 {
		font-size: 36px;
	}

	.ps-scope h2 {
		font-size: 28px;
	}

	.ps-scope h3 {
		font-size: 20px;
	}
}

/* 4. Layout primitives */

.ps-container {
	width: 100%;
	max-width: var(--ps-container);
	margin-inline: auto;
	padding-inline: 20px;
}

.ps-section {
	padding-block: var(--ps-section-y);
}

.ps-section--surface {
	background: var(--ps-surface);
}

.ps-section--dark {
	background: var(--ps-primary);
	color: var(--ps-text-light);
}

.ps-section--dark h1,
.ps-section--dark h2,
.ps-section--dark h3 {
	color: var(--ps-text-light);
}

.ps-section__head {
	margin-bottom: 40px;
}

.ps-section__lead {
	max-width: 62ch;
	margin: 0;
	opacity: 0.85;
}

.ps-btn {
	display: inline-block;
	padding: 12px 26px;
	border: 0;
	border-radius: var(--ps-radius);
	background: var(--ps-accent);
	color: var(--ps-primary);
	font-family: var(--ps-font-heading);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.ps-btn:hover,
.ps-btn:focus-visible {
	background: #d98f18;
	color: var(--ps-primary);
}

.ps-btn--ghost {
	background: transparent;
	border: 2px solid currentcolor;
	color: inherit;
}

.ps-btn--ghost:hover,
.ps-btn--ghost:focus-visible {
	background: currentcolor;
	color: var(--ps-primary);
}

/* 5. Statistics bar */

.ps-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--ps-gap);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-stats__item {
	padding: 24px 16px;
	border-radius: var(--ps-radius);
	background: var(--ps-secondary);
	color: var(--ps-text-light);
	text-align: center;
}

.ps-stats__num {
	display: block;
	font-family: var(--ps-font-heading);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	color: var(--ps-accent);
}

.ps-stats__label {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.ps-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.ps-stats__num {
		font-size: 36px;
	}
}

/* 6. Filter bar */

.ps-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
}

.ps-filter__group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ps-pill {
	display: inline-flex;
	align-items: center;
	padding: 7px 16px;
	border: 1px solid rgba(18, 64, 92, 0.3);
	border-radius: var(--ps-radius-pill);
	background: #fff;
	color: var(--ps-secondary);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
}

.ps-pill[aria-pressed='true'] {
	border-color: var(--ps-primary);
	background: var(--ps-primary);
	color: var(--ps-text-light);
}

.ps-filter__select {
	padding: 8px 12px;
	border: 1px solid rgba(18, 64, 92, 0.3);
	border-radius: var(--ps-radius);
	background: #fff;
	font-family: inherit;
	font-size: 14px;
}

.ps-filter__count {
	margin-left: auto;
	font-size: 14px;
	opacity: 0.7;
}

.ps-filter__reset {
	border: 0;
	background: none;
	color: var(--ps-secondary);
	font: inherit;
	font-size: 14px;
	text-decoration: underline;
	cursor: pointer;
}

/* 7. Tournament card */

.ps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--ps-gap);
}

.ps-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--ps-radius);
	background: #fff;
	box-shadow: 0 1px 3px rgba(11, 36, 52, 0.12);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ps-card:hover,
.ps-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(11, 36, 52, 0.16);
}

.ps-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--ps-secondary);
}

.ps-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ps-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
}

.ps-card__title {
	margin: 0;
	font-family: var(--ps-font-heading);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
}

.ps-card__title a {
	color: var(--ps-primary);
	text-decoration: none;
}

.ps-card__title a::after {
	position: absolute;
	inset: 0;
	content: '';
}

.ps-card__meta {
	margin: 0;
	font-size: 14px;
	color: #4a5b66;
}

.ps-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 8px;
}

/* Badges */

.ps-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: var(--ps-radius-pill);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

.ps-badge--zlato {
	background: var(--ps-gold);
	color: #2b1d00;
}

.ps-badge--srebro {
	background: var(--ps-silver);
	color: #1b2226;
}

.ps-badge--bronza {
	background: var(--ps-bronze);
	color: #fff;
}

.ps-badge--ucesce {
	background: var(--ps-neutral);
	color: var(--ps-text-light);
}

.ps-badge--tag {
	background: rgba(18, 64, 92, 0.08);
	color: var(--ps-secondary);
}

.ps-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.ps-badge__icon {
	width: 14px;
	height: 14px;
	fill: currentcolor;
}

/* 8. Tournament archive */

.ps-year {
	margin: 56px 0 20px;
	padding-bottom: 8px;
	border-bottom: 2px solid rgba(18, 64, 92, 0.15);
	font-family: var(--ps-font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--ps-secondary);
}

.ps-year:first-of-type {
	margin-top: 0;
}

.ps-year[hidden] {
	display: none;
}

/* 9. Single tournament */

.ps-breadcrumb {
	font-size: 14px;
	opacity: 0.8;
}

.ps-breadcrumb a {
	color: inherit;
}

.ps-turnir-slika {
	margin: 0;
	line-height: 0;
}

.ps-turnir-slika img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.ps-turnir-slika img {
		max-height: 260px;
	}
}

.ps-turnir-hero {
	padding-block: 64px;
	background: var(--ps-primary);
	color: var(--ps-text-light);
}

.ps-turnir-hero h1 {
	margin: 12px 0 8px;
}

.ps-turnir-hero__meta {
	margin: 0;
	font-size: 17px;
	opacity: 0.9;
}

.ps-turnir-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

/* Final score */

.ps-finale {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: var(--ps-gap);
	padding: 32px;
	border-radius: var(--ps-radius);
	background: var(--ps-surface);
	text-align: center;
}

.ps-finale__tim {
	font-family: var(--ps-font-heading);
	font-size: 22px;
	font-weight: 500;
	text-transform: uppercase;
}

.ps-finale__rezultat {
	font-family: var(--ps-font-heading);
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	color: var(--ps-accent);
	white-space: nowrap;
}

@media (max-width: 768px) {
	.ps-finale {
		grid-template-columns: 1fr;
		padding: 24px 16px;
	}

	.ps-finale__rezultat {
		font-size: 44px;
	}
}

/* Roster */

.ps-sastav {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-sastav__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ps-sastav__item[hidden] {
	display: none;
}

.ps-inicijali {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: var(--ps-radius-pill);
	background: var(--ps-secondary);
	color: var(--ps-text-light);
	font-family: var(--ps-font-heading);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* Gallery */

.ps-galerija {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--ps-gap);
}

.ps-galerija a {
	display: block;
	overflow: hidden;
	border-radius: var(--ps-radius);
	aspect-ratio: 4 / 3;
}

.ps-galerija img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 1024px) {
	.ps-galerija {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.ps-galerija {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Prev / next */

.ps-susedni {
	display: flex;
	justify-content: space-between;
	gap: var(--ps-gap);
	padding-top: 40px;
	border-top: 1px solid rgba(18, 64, 92, 0.15);
}

.ps-susedni a {
	max-width: 45%;
	font-weight: 600;
	text-decoration: none;
}

.ps-susedni span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	opacity: 0.7;
}

/* 10. Timeline / sponsors / contact */

.ps-vremenska-linija {
	list-style: none;
	margin: 0;
	padding: 0 0 0 28px;
	border-left: 2px solid rgba(240, 160, 32, 0.4);
}

.ps-vremenska-linija li {
	position: relative;
	padding-bottom: 32px;
}

.ps-vremenska-linija li::before {
	position: absolute;
	top: 8px;
	left: -35px;
	width: 12px;
	height: 12px;
	border-radius: var(--ps-radius-pill);
	background: var(--ps-accent);
	content: '';
}

.ps-vremenska-linija__godina {
	display: block;
	font-family: var(--ps-font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--ps-accent);
}

.ps-sponzori {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	align-items: center;
	gap: var(--ps-gap);
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-sponzori img {
	width: 100%;
	max-height: 80px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.75;
	transition: filter 0.15s ease, opacity 0.15s ease;
}

.ps-sponzori a:hover img,
.ps-sponzori a:focus-visible img {
	filter: none;
	opacity: 1;
}

.ps-kontakt__mail {
	font-family: var(--ps-font-heading);
	font-size: 22px;
	font-weight: 500;
	word-break: break-word;
}

/* 11. Sign-up pages (group link, token landing)
   Opened on a phone, straight out of a Viber message. Big targets, one column,
   nothing to hunt for. */

.ps-prijava {
	padding-block: 48px;
}

.ps-prijava__box {
	max-width: 560px;
}

.ps-prijava__turnir {
	padding-bottom: 20px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(18, 64, 92, 0.15);
}

.ps-prijava__turnir h1 {
	font-size: 28px;
	line-height: 1.15;
}

.ps-prijava__meta {
	margin: 0 0 12px;
	color: #4a5b66;
}

.ps-prijava__rok {
	margin: 12px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-secondary);
}

.ps-prijava__potvrda {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	margin-bottom: 24px;
	border-left: 4px solid #2e7d32;
	border-radius: var(--ps-radius);
	background: #eaf4ea;
}

.ps-prijava__greska {
	padding: 14px 18px;
	margin-bottom: 20px;
	border-left: 4px solid #c62828;
	border-radius: var(--ps-radius);
	background: #fdeaea;
	color: #7f1d1d;
}

.ps-prijava__pitanje {
	margin: 24px 0 12px;
	font-weight: 600;
}

.ps-polje {
	display: block;
	margin: 0 0 20px;
	padding: 0;
	border: 0;
}

.ps-polje > label,
.ps-polje > legend {
	display: block;
	margin-bottom: 6px;
	padding: 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ps-secondary);
}

.ps-polje select,
.ps-polje textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(18, 64, 92, 0.35);
	border-radius: var(--ps-radius);
	background: #fff;
	font-family: inherit;
	font-size: 17px;
}

.ps-opcije {
	display: grid;
	gap: 10px;
}

.ps-opcija {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border: 2px solid rgba(18, 64, 92, 0.25);
	border-radius: var(--ps-radius);
	background: #fff;
	font-size: 17px;
	font-weight: 600;
	color: var(--ps-text);
	text-decoration: none;
	cursor: pointer;
}

.ps-opcija input {
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--ps-secondary);
}

.ps-opcija:has(input:checked),
.ps-opcija.is-aktivna {
	border-color: var(--ps-primary);
	background: var(--ps-surface);
}

.ps-opcija--zelena {
	border-left: 6px solid #2e7d32;
}

.ps-opcija--zuta {
	border-left: 6px solid #ef9a00;
}

.ps-opcija--crvena {
	border-left: 6px solid #c62828;
}

.ps-opcija--siva {
	border-left: 6px solid #90a4ae;
}

.ps-opcije--linkovi .ps-opcija:hover,
.ps-opcije--linkovi .ps-opcija:focus-visible {
	border-color: var(--ps-primary);
	background: var(--ps-surface);
}

.ps-prijava__napomena {
	margin-top: 20px;
	color: #4a5b66;
}

/* 12. Member area
   Sixty people who are already convinced. Fast beats pretty. */

.ps-clanovi {
	padding-block: 40px;
}

.ps-clanovi__box {
	max-width: 760px;
}

.ps-clanovi__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(18, 64, 92, 0.15);
}

.ps-clanovi__head h1 {
	margin: 0;
	font-size: 32px;
}

.ps-clanovi__ko {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ps-accent);
}

.ps-clanovi__odjava {
	flex: 0 0 auto;
	font-size: 14px;
}

.ps-clanovi__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 16px 0 24px;
	border-bottom: 1px solid rgba(18, 64, 92, 0.15);
}

.ps-clanovi__nav a {
	padding: 10px 16px;
	border-bottom: 3px solid transparent;
	font-size: 15px;
	font-weight: 600;
	color: var(--ps-secondary);
	text-decoration: none;
}

.ps-clanovi__nav a.is-aktivna {
	border-bottom-color: var(--ps-accent);
	color: var(--ps-primary);
}

.ps-clanovi__sekcija {
	margin-bottom: 40px;
}

.ps-clanovi__sekcija h2 {
	font-size: 22px;
}

.ps-clanovi__ok {
	padding: 14px 18px;
	margin-bottom: 20px;
	border-left: 4px solid #2e7d32;
	border-radius: var(--ps-radius);
	background: #eaf4ea;
}

.ps-tabela {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.ps-tabela th,
.ps-tabela td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(18, 64, 92, 0.12);
	text-align: left;
	vertical-align: top;
}

.ps-tabela th {
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ps-secondary);
}

.ps-tabela .ps-small {
	display: block;
	color: #4a5b66;
}

.ps-clanovi__turnir {
	padding: 20px;
	margin-bottom: 16px;
	border: 1px solid rgba(18, 64, 92, 0.15);
	border-radius: var(--ps-radius);
}

.ps-clanovi__turnir h3 {
	margin: 0 0 4px;
}

.ps-clanovi__turnir form {
	margin-top: 16px;
}

.ps-clanovi__podaci {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 6px 20px;
	margin: 0 0 12px;
}

.ps-clanovi__podaci dt {
	font-size: 14px;
	font-weight: 600;
	color: var(--ps-secondary);
}

.ps-clanovi__podaci dd {
	margin: 0;
}

.ps-polje input[type='tel'],
.ps-polje input[type='email'],
.ps-polje input[type='password'],
.ps-polje input[type='text'] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(18, 64, 92, 0.35);
	border-radius: var(--ps-radius);
	background: #fff;
	font-family: inherit;
	font-size: 17px;
}

.ps-saldo {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 20px 24px;
	border-radius: var(--ps-radius);
	background: var(--ps-surface);
}

.ps-saldo__broj {
	font-family: var(--ps-font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}

.ps-saldo__broj.is-dug {
	color: #c62828;
}

.ps-saldo__broj.is-cisto {
	color: #2e7d32;
}

.ps-saldo__valuta {
	font-size: 18px;
}

.ps-saldo__opis {
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #4a5b66;
}

@media (max-width: 768px) {
	.ps-clanovi__head h1 {
		font-size: 26px;
	}

	.ps-tabela {
		font-size: 14px;
	}

	.ps-tabela th,
	.ps-tabela td {
		padding: 8px;
	}
}

/* 13. Finance bars — plain divs, no charting library */

.ps-bar-lista {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.ps-bar-lista > li {
	margin-bottom: 14px;
}

.ps-bar__red {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 4px;
	font-size: 15px;
}

.ps-bar {
	height: 10px;
	overflow: hidden;
	border-radius: var(--ps-radius-pill);
	background: rgba(18, 64, 92, 0.12);
}

.ps-bar__fill {
	height: 100%;
	border-radius: var(--ps-radius-pill);
	background: var(--ps-secondary);
}

.ps-bar-lista--ugnjezdena {
	margin: 8px 0 0;
	padding-left: 16px;
	border-left: 2px solid rgba(18, 64, 92, 0.12);
}

.ps-bar-lista--ugnjezdena .ps-bar__red {
	font-size: 14px;
	color: #4a5b66;
}

.ps-bar-lista--ugnjezdena em {
	font-style: normal;
	opacity: 0.7;
}

.ps-qr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	padding: 20px;
	border: 1px solid rgba(18, 64, 92, 0.15);
	border-radius: var(--ps-radius);
}

.ps-qr img {
	width: 200px;
	height: 200px;
	background: #fff;
}

.ps-qr code {
	font-size: 12px;
	word-break: break-all;
}

/* Rendered guide inside the member area */

.ps-uputstvo-tekst h2 {
	margin-top: 1.8em;
	padding-bottom: 0.3em;
	border-bottom: 2px solid rgba(18, 64, 92, 0.15);
	font-size: 26px;
}

.ps-uputstvo-tekst h3 {
	margin-top: 1.6em;
	font-size: 20px;
}

.ps-uputstvo-tekst hr {
	margin: 2.5em 0;
	border: 0;
	border-top: 1px solid rgba(18, 64, 92, 0.15);
}

.ps-uputstvo-tekst ul,
.ps-uputstvo-tekst ol {
	margin: 0 0 1.2em 1.4em;
	padding: 0;
}

.ps-uputstvo-tekst li {
	margin-bottom: 0.4em;
}

.ps-uputstvo-tekst blockquote {
	margin: 1.5em 0;
	padding: 14px 20px;
	border-left: 4px solid var(--ps-accent);
	border-radius: var(--ps-radius);
	background: #fdf6e6;
}

.ps-uputstvo-tekst blockquote p:last-child {
	margin-bottom: 0;
}

.ps-uputstvo-tekst code {
	padding: 2px 6px;
	border-radius: 4px;
	background: rgba(18, 64, 92, 0.08);
	font-size: 15px;
}

.ps-uputstvo-tekst pre {
	padding: 14px 18px;
	overflow-x: auto;
	border-radius: var(--ps-radius);
	background: var(--ps-surface);
}

.ps-uputstvo-tekst pre code {
	padding: 0;
	background: none;
}

.ps-uputstvo-tekst table {
	width: 100%;
	margin: 1.5em 0;
	border-collapse: collapse;
	font-size: 15px;
}

.ps-uputstvo-tekst th,
.ps-uputstvo-tekst td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(18, 64, 92, 0.12);
	text-align: left;
	vertical-align: top;
}

.ps-uputstvo-tekst th {
	font-size: 13px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ps-secondary);
}

/* 14. Empty states & utilities */

.ps-prazno {
	padding: 48px 24px;
	border: 1px dashed rgba(18, 64, 92, 0.25);
	border-radius: var(--ps-radius);
	color: #4a5b66;
	text-align: center;
}

.ps-vrsta-liste {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ps-screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

[hidden] {
	display: none !important;
}
