:root {
	--blue: #0057b7;
	--blue-dark: #004494;
	--yellow: #ffd700;
	--yellow-dark: #ffc700;
	--ink: #111827;
	--muted: #4b5563;
	--soft: #f6f7f9;
	--line: #e5e7eb;
	--footer: #111827;
	--white: #ffffff;
	--shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
	--container: 1184px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.pobratim-home {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Arial, "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

body.pobratim-home.admin-bar .site-header {
	top: 32px;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.container {
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(10px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 80px;
}

.brand,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.brand-mark {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 25%, #b40008 0 34%, #5e0006 72%, #070000 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 7px 18px rgba(83, 0, 5, 0.22);
	flex: 0 0 auto;
}

.heart-mark {
	position: relative;
	width: 18px;
	height: 18px;
	transform: rotate(45deg);
	background: var(--white);
	border-radius: 3px;
}

.heart-mark::before,
.heart-mark::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--white);
}

.heart-mark::before {
	left: -8px;
	top: 0;
}

.heart-mark::after {
	left: 0;
	top: -8px;
}

.brand-copy {
	display: grid;
	line-height: 1.2;
	min-width: 0;
}

.brand-title {
	color: var(--ink);
	font-size: 20px;
	font-weight: 800;
	white-space: nowrap;
}

.brand-subtitle {
	color: #5b6472;
	font-size: 12px;
	white-space: nowrap;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	color: #374151;
	font-size: 16px;
}

.primary-nav a,
.mobile-nav a,
.site-footer a,
.report-card a {
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.primary-nav a:hover,
.report-card a:hover {
	color: var(--blue);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 24px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
}

.button-primary {
	background: var(--blue);
	color: var(--white);
}

.button-primary:hover {
	background: var(--blue-dark);
}

.button-accent {
	background: var(--yellow);
	color: var(--blue);
}

.button-accent:hover {
	background: var(--yellow-dark);
}

.button-ghost {
	border-color: currentColor;
	color: var(--white);
}

.button-ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	border-radius: 999px;
}

.mobile-nav {
	display: none;
	width: min(calc(100% - 32px), var(--container));
	margin: 0 auto;
	padding: 0 0 18px;
}

.mobile-nav a:not(.button) {
	display: block;
	padding: 9px 0;
	color: #374151;
}

.hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--white);
}

.hero-media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 87, 183, 0.92), rgba(0, 87, 183, 0.7)),
		url("https://images.unsplash.com/photo-1646055817531-38ff50f166f4?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920") center / cover;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 690px) minmax(320px, 430px);
	align-items: center;
	justify-content: space-between;
	gap: 56px;
	padding: 88px 0;
}

.hero-copy {
	max-width: 690px;
}

.hero h1 {
	margin: 0 0 24px;
	font-size: clamp(42px, 6vw, 64px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: 0;
}

.hero p {
	margin: 0 0 32px;
	font-size: 20px;
	line-height: 1.7;
}

.hero-actions,
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero-donate-card {
	width: 100%;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 50px rgba(0, 32, 80, 0.24);
	backdrop-filter: blur(10px);
}

.hero-donate-card h2 {
	margin: 0 0 22px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0;
	color: var(--white);
}

.hero-donate-card dl {
	display: grid;
	gap: 16px;
	margin: 0;
}

.hero-donate-card div {
	padding: 14px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ink);
}

.hero-donate-card dt {
	margin: 0 0 3px;
	color: var(--blue);
	font-weight: 900;
}

.hero-donate-card dd {
	margin: 0;
	font-family: Consolas, "Courier New", monospace;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.copy-card-number {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	overflow-wrap: anywhere;
}

.copy-card-number:hover,
.copy-card-number:focus-visible {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.copy-card-number.is-copied {
	padding: 2px 6px;
	margin: -2px -6px;
	border-radius: 6px;
	background: var(--blue);
	color: var(--white);
	text-decoration: none;
}

.stats {
	background: var(--soft);
	padding: 64px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.stat-item {
	text-align: center;
}

.stat-item strong {
	display: block;
	color: var(--blue);
	font-size: 40px;
	line-height: 1;
	font-weight: 900;
	margin-bottom: 12px;
}

.stat-item span {
	color: #5b6472;
}

.section {
	padding: 80px 0;
	background: var(--white);
}

.section-muted {
	background: var(--soft);
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}

.section-heading h2 {
	margin: 0 0 14px;
	color: var(--ink);
	font-size: clamp(32px, 4vw, 42px);
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0;
}

.section-heading > span {
	display: block;
	width: 80px;
	height: 4px;
	margin: 0 auto;
	background: var(--yellow);
}

.section-heading p {
	margin: 24px auto 0;
	color: #4b5563;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 48px;
}

.about-media {
	position: relative;
	padding: 0 24px 24px 0;
}

.about-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: var(--shadow);
}

.about-logo {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 160px;
	padding: 16px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 24px 48px rgba(17, 24, 39, 0.22);
}

.about-logo img {
	width: 128px;
	height: 128px;
	object-fit: contain;
}

.about-copy h3,
.contacts-info h3,
.bank-card h3 {
	margin: 0 0 22px;
	color: var(--ink);
	font-size: 26px;
	line-height: 1.35;
	font-weight: 900;
}

.contacts-info {
	min-width: 0;
}

.about-copy p {
	margin: 0 0 18px;
	color: #374151;
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	min-height: 28px;
	padding-left: 42px;
	color: #374151;
	display: flex;
	align-items: center;
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0070d9, var(--blue));
	box-shadow: 0 8px 18px rgba(0, 87, 183, 0.18);
	transform: translateY(-50%);
}

.check-list li::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 50%;
	width: 10px;
	height: 6px;
	border: solid var(--white);
	border-width: 0 0 2.5px 2.5px;
	border-radius: 1px;
	transform: translateY(-62%) rotate(-45deg);
}

.directions-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.direction-card {
	min-height: 300px;
	padding: 32px;
	border-radius: 14px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.direction-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.direction-card h3,
.report-card h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 900;
	color: var(--ink);
}

.direction-card p,
.report-card p {
	margin: 0;
	color: #4b5563;
}

.icon-badge {
	width: 64px;
	height: 64px;
	margin: 0 0 24px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
}

.icon-blue {
	background: rgba(0, 87, 183, 0.1);
}

.icon-yellow {
	background: rgba(255, 215, 0, 0.22);
}

.icon-badge svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cta-section {
	padding: 80px 0;
	color: var(--white);
	background: linear-gradient(90deg, var(--blue), var(--blue-dark));
	text-align: center;
}

.cta-inner {
	max-width: 850px;
}

.cta-section h2 {
	margin: 0 0 20px;
	font-size: clamp(32px, 4vw, 42px);
	line-height: 1.2;
	font-weight: 900;
}

.cta-section p {
	margin: 0 0 32px;
	font-size: 20px;
}

.cta-actions {
	justify-content: center;
}

.reports-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.report-card {
	padding: 26px 24px;
	border: 2px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.report-card:hover {
	border-color: var(--blue);
	transform: translateY(-2px);
}

.file-icon {
	display: block;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	color: var(--blue);
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.report-card p {
	margin-bottom: 18px;
}

.report-card a {
	color: var(--blue);
	font-weight: 800;
}

.report-card a::after {
	content: " ->";
}

.reports-carousel {
	position: relative;
}

.reports-carousel-viewport {
	overflow: hidden;
}

.reports-carousel-track {
	display: flex;
	gap: 18px;
	transition: transform 0.32s ease;
	will-change: transform;
}

.report-video-card {
	flex: 0 0 calc((100% - 72px) / 5);
	min-width: 0;
	padding: 10px;
	border: 2px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.report-video-card:hover {
	border-color: var(--blue);
	transform: translateY(-2px);
}

.report-video-frame {
	width: 100%;
	aspect-ratio: 9 / 16;
	border-radius: 10px;
	overflow: hidden;
	background: #111827;
}

.report-video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.reports-carousel-button {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(0, 87, 183, 0.22);
	border-radius: 999px;
	background: var(--white);
	color: var(--blue);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.16);
	cursor: pointer;
	transform: translateY(-50%);
}

.reports-carousel-button::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border: solid currentColor;
	border-width: 0 3px 3px 0;
}

.reports-carousel-prev {
	left: -22px;
}

.reports-carousel-prev::before {
	transform: translateX(3px) rotate(135deg);
}

.reports-carousel-next {
	right: -22px;
}

.reports-carousel-next::before {
	transform: translateX(-3px) rotate(-45deg);
}

.reports-carousel-button:hover,
.reports-carousel-button:focus-visible {
	background: var(--blue);
	color: var(--white);
}

.reports-empty {
	max-width: 760px;
	margin: 0 auto;
	padding: 26px;
	border-radius: 12px;
	background: var(--soft);
	color: #4b5563;
	text-align: center;
}

.reports-empty p {
	margin: 0;
}

.reports-empty a {
	color: var(--blue);
	font-weight: 800;
}

.contacts-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
	gap: 48px;
}

.contact-list {
	display: grid;
	gap: 18px;
}

.contact-item {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 14px;
	align-items: start;
}

.contact-item strong {
	display: block;
	color: var(--ink);
}

.contact-item a,
.contact-item span {
	color: #374151;
}

.contact-icon {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(0, 87, 183, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
}

.contact-icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.socials {
	margin-top: 34px;
}

.socials p {
	margin: 0 0 14px;
	font-weight: 800;
}

.socials div {
	display: flex;
	gap: 16px;
}

.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: var(--white);
	overflow: hidden;
}

.socials a:hover {
	transform: translateY(-1px);
}

.socials img {
	width: 40px;
	height: 40px;
	object-fit: cover;
}

.contact-video {
	margin-top: 34px;
	width: min(100%, 560px);
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	overflow: hidden;
	background: #111827;
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}

.contact-video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.contact-map {
	margin-top: 38px;
	width: min(100%, 560px);
	aspect-ratio: 16 / 10;
	border-radius: 14px;
	overflow: hidden;
	background: #e5e7eb;
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.bank-card {
	padding: 32px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.bank-card dl {
	display: grid;
	gap: 18px;
	margin: 0;
}

.bank-card dt {
	margin: 0 0 6px;
	color: #6b7280;
	font-size: 14px;
}

.bank-card dd {
	margin: 0;
	color: var(--ink);
	font-weight: 700;
}

.bank-card .mono {
	padding: 12px;
	border-radius: 8px;
	background: #f3f4f6;
	font-family: Consolas, "Courier New", monospace;
	font-weight: 500;
	overflow-wrap: anywhere;
}

.bank-card-note {
	margin: -4px 0 0;
	color: #6b7280;
	font-size: 13px;
	font-style: italic;
	line-height: 1.45;
}

.bank-card-note dt {
	display: none;
}

.bank-card-note dd {
	color: inherit;
	font-weight: 400;
}

.crypto-wallet dd {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.crypto-wallet img {
	width: 112px;
	height: 112px;
	border-radius: 10px;
	background: #f3f4f6;
	object-fit: contain;
}

.crypto-wallet-address {
	padding: 12px;
	border-radius: 8px;
	background: #f3f4f6;
	font-family: Consolas, "Courier New", monospace;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.bank-card dl > div:last-child {
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.site-footer {
	background: var(--footer);
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
	padding: 48px 0 36px;
}

.footer-brand img {
	display: none;
}

.footer-brand .brand-mark {
	width: 42px;
	height: 42px;
}

.footer-brand .heart-mark {
	width: 16px;
	height: 16px;
}

.footer-brand .heart-mark::before,
.footer-brand .heart-mark::after {
	width: 16px;
	height: 16px;
}

.footer-brand .heart-mark::before {
	left: -7px;
}

.footer-brand .heart-mark::after {
	top: -7px;
}

.footer-brand span {
	display: grid;
	line-height: 1.25;
}

.footer-brand small {
	color: #9ca3af;
}

.footer-about p {
	max-width: 360px;
	margin: 18px 0 0;
	color: #9ca3af;
	font-size: 14px;
}

.site-footer h2 {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.4;
}

.site-footer nav {
	display: grid;
	align-content: start;
	gap: 10px;
}

.site-footer nav a {
	color: #9ca3af;
	font-size: 14px;
}

.site-footer nav a:hover {
	color: var(--white);
}

.footer-bottom {
	border-top: 1px solid #1f2937;
	padding: 24px 16px;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	color: #9ca3af;
	font-size: 14px;
}

.events-main,
.single-main {
	background: var(--soft);
}

.events-hero,
.single-event-hero {
	padding: 72px 0 56px;
	color: var(--white);
	background:
		linear-gradient(90deg, rgba(0, 87, 183, 0.94), rgba(0, 68, 148, 0.76)),
		url("https://images.unsplash.com/photo-1593113598332-cd288d649433?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1800") center / cover;
}

.events-hero h1,
.single-event-hero h1 {
	max-width: 960px;
	margin: 0 0 14px;
	font-size: clamp(40px, 6vw, 68px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: 0;
}

.events-hero p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 20px;
	line-height: 1.65;
}

.events-section {
	padding: 72px 0 80px;
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.event-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.event-card:hover {
	border-color: rgba(0, 87, 183, 0.36);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.event-card-media {
	position: relative;
	display: block;
	background: #e5e7eb;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.event-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-card-closed .event-card-media img {
	filter: grayscale(1);
}

.event-card-closed-label {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: max-content;
	max-width: calc(100% - 32px);
	transform: translate(-50%, -50%) rotate(-4deg);
	color: #e00000;
	font-size: clamp(26px, 2.4vw, 38px);
	font-weight: 1000;
	line-height: 1;
	text-align: center;
	text-shadow:
		-2px -2px 0 #fff,
		2px -2px 0 #fff,
		-2px 2px 0 #fff,
		2px 2px 0 #fff,
		0 3px 8px rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

.event-card-copy {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 24px;
}

.event-card-copy time,
.single-event-hero time {
	color: var(--blue);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.single-event-hero time {
	display: block;
	margin-bottom: 16px;
	color: var(--yellow);
}

.event-card-copy h2,
.event-card-copy h3 {
	margin: 0;
	color: var(--ink);
	font-size: 22px;
	line-height: 1.28;
	font-weight: 900;
	letter-spacing: 0;
}

.event-card-copy h2 a:hover,
.event-card-copy h3 a:hover {
	color: var(--blue);
}

.home-fundraisers-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 38px;
}

.home-fundraisers-heading .section-heading {
	margin-bottom: 0;
}

.home-fundraisers-all {
	flex: 0 0 auto;
	margin-bottom: 5px;
	color: var(--blue);
	font-weight: 900;
}

.home-fundraisers-all::after {
	content: " ->";
}

.home-fundraisers-all:hover {
	color: #00458f;
}

.event-card-copy p {
	margin: 0;
	color: #4b5563;
}

.event-card-link {
	justify-self: start;
	margin-top: 4px;
	color: var(--blue);
	font-weight: 900;
}

.event-card-link::after {
	content: " ->";
}

.events-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 44px;
}

.events-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	color: var(--blue);
	font-weight: 800;
}

.events-pagination .page-numbers.current,
.events-pagination .page-numbers:hover {
	border-color: var(--blue);
	background: var(--blue);
	color: var(--white);
}

.events-empty {
	max-width: 760px;
	margin: 0 auto;
	padding: 34px;
	border-radius: 14px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
	text-align: center;
}

.events-empty h2 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.25;
}

.events-empty p {
	margin: 0;
	color: #4b5563;
}

.single-event-hero .legal-back {
	margin-bottom: 24px;
}

.single-event-cover {
	margin-top: -36px;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	background: #e5e7eb;
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
	overflow: hidden;
}

.single-event-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.single-event-content {
	max-width: 980px;
	padding: 56px 0 80px;
}

.single-event-content > * {
	margin-left: auto;
	margin-right: auto;
}

.single-event-content p {
	max-width: 760px;
	margin-top: 0;
	margin-bottom: 18px;
	color: #374151;
	font-size: 19px;
	line-height: 1.75;
}

.single-event-content > h2,
.single-event-content > h3,
.single-event-content > h4 {
	max-width: 760px;
	margin-top: 32px;
	margin-bottom: 18px;
}

.event-gallery {
	max-width: 980px;
	margin: 36px auto;
}

.event-gallery-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}

.event-gallery-item {
	flex: 0 1 calc((100% - 36px) / 3);
	position: relative;
	min-width: 0;
	margin: 0;
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
	overflow: hidden;
}

.event-gallery-button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.event-gallery-button img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.22s ease;
}

.event-gallery-button:hover img,
.event-gallery-button:focus-visible img {
	transform: scale(1.035);
}

.event-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	align-items: center;
	justify-items: center;
	padding: 32px;
	background: rgba(6, 12, 24, 0.92);
}

.event-lightbox[hidden] {
	display: none;
}

.event-lightbox img {
	position: relative;
	z-index: 1;
	max-width: min(100%, 1180px);
	max-height: calc(100vh - 130px);
	border-radius: 8px;
	object-fit: contain;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.event-lightbox p {
	max-width: min(100%, 980px);
	margin: 16px 0 0;
	color: var(--white);
	text-align: center;
}

.event-lightbox-close {
	position: absolute;
	z-index: 4;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	font-size: 32px;
	line-height: 38px;
	cursor: pointer;
}

.event-lightbox-close:hover,
.event-lightbox-close:focus-visible {
	background: rgba(255, 255, 255, 0.22);
}

.event-lightbox-nav {
	position: absolute;
	z-index: 4;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.72);
	color: var(--white);
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
	transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.event-lightbox-nav::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	border: solid currentColor;
	border-width: 0 4px 4px 0;
}

.event-lightbox-prev {
	left: 22px;
}

.event-lightbox-prev::before {
	transform: translateX(4px) rotate(135deg);
}

.event-lightbox-next {
	right: 22px;
}

.event-lightbox-next::before {
	transform: translateX(-4px) rotate(-45deg);
}

.event-lightbox-nav:hover,
.event-lightbox-nav:focus-visible {
	background: rgba(0, 87, 183, 0.88);
	transform: translateY(-50%) scale(1.04);
}

.event-lightbox-nav:disabled {
	opacity: 0.32;
	cursor: default;
}

.single-event-content .wp-block-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 980px;
	margin-top: 34px;
	margin-bottom: 34px;
}

.single-event-content .wp-block-gallery .wp-block-image {
	width: 100%;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
	overflow: hidden;
}

.single-event-content .wp-block-gallery .wp-block-image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.single-event-content .wp-block-video {
	max-width: 980px;
	margin-top: 34px;
	margin-bottom: 0;
	border-radius: 14px;
	background: #111827;
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
	overflow: hidden;
}

.single-event-content .wp-block-video video {
	display: block;
	width: 100%;
	max-height: 720px;
	background: #111827;
	object-fit: contain;
}

.legal-main {
	background: var(--soft);
}

.legal-hero {
	padding: 72px 0 40px;
	background: linear-gradient(90deg, var(--blue), var(--blue-dark));
	color: var(--white);
}

.legal-back {
	display: inline-flex;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 700;
}

.legal-back:hover {
	color: var(--white);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.legal-hero h1 {
	max-width: 920px;
	margin: 0 0 12px;
	font-size: clamp(36px, 5vw, 58px);
	line-height: 1.12;
	font-weight: 900;
	letter-spacing: 0;
}

.legal-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
}

.legal-section {
	padding: 56px 0 80px;
}

.legal-card {
	max-width: 920px;
	padding: 48px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.legal-card h2 {
	margin: 34px 0 12px;
	color: var(--ink);
	font-size: 24px;
	line-height: 1.35;
	font-weight: 900;
	letter-spacing: 0;
}

.legal-card p {
	margin: 0 0 16px;
	color: #374151;
}

.legal-card a {
	color: var(--blue);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.survival-main {
	background: var(--soft);
}

.survival-hero {
	padding: 72px 0 56px;
	color: var(--white);
	background:
		linear-gradient(90deg, rgba(0, 87, 183, 0.94), rgba(0, 68, 148, 0.76)),
		url("https://images.unsplash.com/photo-1518391846015-55a9cc003b25?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1800") center / cover;
}

.survival-hero h1 {
	max-width: 920px;
	margin: 0 0 14px;
	font-size: clamp(40px, 6vw, 68px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: 0;
}

.survival-hero p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 20px;
	line-height: 1.65;
}

.survival-section {
	padding: 72px 0;
}

.survival-section-muted {
	background: var(--white);
}

.survival-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
	gap: 32px;
	align-items: start;
}

.survival-card {
	padding: 34px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}

.survival-card h2 {
	margin: 0 0 18px;
	color: var(--ink);
	font-size: 28px;
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: 0;
}

.survival-side-column {
	display: grid;
	gap: 32px;
}

.survival-text p {
	margin: 0 0 18px;
	color: #374151;
	font-size: 18px;
	line-height: 1.75;
}

.survival-text p:last-child {
	margin-bottom: 0;
}

.survival-video {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: #111827;
}

.survival-video-list {
	display: grid;
	gap: 16px;
}

.survival-video iframe,
.survival-video video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.survival-video video {
	object-fit: contain;
}

.survival-video-card .survival-certificates {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.survival-video-section {
	padding-top: 0;
}

.survival-video-carousel {
	margin-top: 8px;
}

.survival-video-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.survival-video-trigger:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 4px;
}

.survival-video-trigger:hover .survival-video-play,
.survival-video-trigger:focus-visible .survival-video-play {
	transform: translate(-50%, -50%) scale(1.06);
}

.survival-carousel-frame video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.survival-video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 78px;
	height: 56px;
	border-radius: 18px;
	background: #ff0033;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.24);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.survival-video-play::before {
	content: "";
	position: absolute;
	left: 31px;
	top: 17px;
	width: 0;
	height: 0;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-left: 17px solid var(--white);
}

.survival-video-lightbox {
	position: fixed;
	inset: 0;
	z-index: 110;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 28px 72px;
	background: rgba(17, 24, 39, 0.92);
}

.survival-video-lightbox.is-open {
	display: flex;
}

.survival-video-lightbox-frame {
	width: min(100%, 1120px);
	max-height: calc(100vh - 80px);
}

.survival-video-lightbox-frame video {
	display: block;
	width: 100%;
	max-height: calc(100vh - 80px);
	border-radius: 12px;
	background: #000000;
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
	object-fit: contain;
}

.survival-certificates {
	margin: 0;
}

.survival-certificates h2 {
	margin-bottom: 16px;
	font-size: 24px;
}

.survival-certificates-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.survival-certificate-item img {
	height: 148px;
	padding: 8px;
}

.survival-certificate-item[hidden] {
	display: none;
}

.survival-memorandum {
	margin: 0;
}

.survival-memorandum h2 {
	margin-bottom: 16px;
	font-size: 24px;
}

.survival-gallery.survival-memorandum-gallery {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.survival-memorandum-gallery .survival-gallery-item img {
	height: 148px;
}

.survival-certificates-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 44px;
	margin-top: 14px;
	padding: 10px 18px;
	border: 2px solid var(--blue);
	border-radius: 8px;
	background: var(--white);
	color: var(--blue);
	font: inherit;
	font-weight: 800;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.survival-certificates-more:hover,
.survival-certificates-more:focus-visible {
	background: var(--blue);
	color: var(--white);
	transform: translateY(-1px);
}

.survival-video-link {
	display: inline-flex;
	margin-top: 16px;
	color: var(--blue);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.survival-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.survival-gallery-item {
	display: block;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.survival-gallery-item:hover {
	border-color: var(--blue);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.survival-gallery-item img {
	width: 100%;
	height: 210px;
	object-fit: contain;
	background: #f3f4f6;
}

.has-lightbox-open {
	overflow: hidden;
}

.survival-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 28px 72px;
	background: rgba(17, 24, 39, 0.9);
}

.survival-lightbox.is-open {
	display: flex;
}

.survival-lightbox-frame {
	display: grid;
	gap: 12px;
	width: min(100%, 1060px);
	margin: 0;
	color: var(--white);
	text-align: center;
}

.survival-lightbox-frame img {
	width: 100%;
	max-height: calc(100vh - 130px);
	object-fit: contain;
	border-radius: 10px;
	background: #f3f4f6;
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

.survival-lightbox-frame figcaption {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
}

.survival-lightbox-close,
.survival-lightbox-nav {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	cursor: pointer;
}

.survival-lightbox-close:hover,
.survival-lightbox-nav:hover,
.survival-lightbox-close:focus-visible,
.survival-lightbox-nav:focus-visible {
	background: var(--white);
	color: var(--blue);
}

.survival-lightbox-close {
	top: 22px;
	right: 22px;
	width: 44px;
	height: 44px;
}

.survival-lightbox-close::before,
.survival-lightbox-close::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.survival-lightbox-close::before {
	transform: rotate(45deg);
}

.survival-lightbox-close::after {
	transform: rotate(-45deg);
}

.survival-lightbox-nav {
	top: 50%;
	width: 48px;
	height: 48px;
	transform: translateY(-50%);
}

.survival-lightbox-nav::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border: solid currentColor;
	border-width: 0 3px 3px 0;
}

.survival-lightbox-prev {
	left: 22px;
}

.survival-lightbox-prev::before {
	transform: translateX(3px) rotate(135deg);
}

.survival-lightbox-next {
	right: 22px;
}

.survival-lightbox-next::before {
	transform: translateX(-3px) rotate(-45deg);
}

@media (max-width: 1060px) {
	body.pobratim-home.admin-bar .site-header {
		top: 46px;
	}

	.primary-nav,
	.header-cta {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.mobile-nav.is-open {
		display: grid;
	}

	.hero {
		min-height: 560px;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.hero-donate-card {
		max-width: 520px;
	}

	.report-video-card {
		flex-basis: calc((100% - 36px) / 3);
	}

	.stats-grid,
	.directions-grid,
	.reports-grid,
	.events-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-grid,
	.contacts-grid,
	.survival-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.survival-video-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.survival-video-list .survival-video:first-child {
		grid-column: 1 / -1;
	}

	.survival-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-event-content .wp-block-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.event-gallery-item {
		flex-basis: calc((100% - 18px) / 2);
	}

	.survival-certificate-item img {
		height: 180px;
	}
}

@media (max-width: 640px) {
	.home-fundraisers-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 30px;
	}

	.home-fundraisers-all {
		margin-bottom: 0;
	}

	body.pobratim-home.admin-bar .site-header {
		top: 0;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.header-inner {
		min-height: 72px;
		gap: 12px;
	}

	.brand-title {
		font-size: 17px;
	}

	.brand-subtitle {
		max-width: 220px;
		white-space: normal;
	}

	.hero {
		min-height: 560px;
	}

	.hero-content,
	.section,
	.cta-section {
		padding: 64px 0;
	}

	.hero-donate-card {
		padding: 22px;
	}

	.hero-donate-card h2 {
		font-size: 24px;
	}

	.hero-donate-card dd {
		font-size: 16px;
	}

	.hero p,
	.cta-section p {
		font-size: 18px;
	}

	.hero-actions,
	.cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.stats-grid,
	.directions-grid,
	.reports-grid,
	.events-grid {
		grid-template-columns: 1fr;
	}

	.report-video-card {
		flex-basis: 100%;
	}

	.reports-carousel-button {
		width: 40px;
		height: 40px;
	}

	.reports-carousel-prev {
		left: 8px;
	}

	.reports-carousel-next {
		right: 8px;
	}

	.survival-video-lightbox {
		padding: 18px;
	}

	.survival-video-lightbox-frame,
	.survival-video-lightbox-frame video {
		max-height: calc(100vh - 72px);
	}

	.about-media {
		padding: 0 0 72px;
	}

	.about-logo {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
	}

	.direction-card {
		min-height: auto;
	}

	.bank-card {
		padding: 24px;
	}

	.crypto-wallet dd {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 12px;
	}

	.crypto-wallet img {
		width: 96px;
		height: 96px;
	}

	.legal-card {
		padding: 28px;
	}

	.survival-hero {
		padding: 56px 0 44px;
	}

	.survival-section {
		padding: 56px 0;
	}

	.survival-card {
		padding: 24px;
	}

	.survival-card h2 {
		font-size: 24px;
	}

	.survival-text p {
		font-size: 16px;
	}

	.survival-gallery {
		grid-template-columns: 1fr;
	}

	.events-hero,
	.single-event-hero {
		padding: 56px 0 44px;
	}

	.events-section,
	.single-event-content {
		padding: 56px 0;
	}

	.event-card-copy {
		padding: 22px;
	}

	.single-event-cover {
		margin-top: -24px;
	}

	.single-event-content p {
		font-size: 17px;
	}

	.single-event-content .wp-block-gallery {
		grid-template-columns: 1fr;
	}

	.event-gallery-grid {
		gap: 12px;
	}

	.event-gallery-item {
		flex-basis: 100%;
	}

	.single-event-content .wp-block-gallery .wp-block-image img {
		height: 240px;
	}

	.event-lightbox {
		padding: 18px;
	}

	.event-lightbox img {
		max-height: calc(100vh - 110px);
	}

	.event-lightbox-nav {
		width: 48px;
		height: 48px;
	}

	.event-lightbox-nav::before {
		width: 14px;
		height: 14px;
		border-width: 0 3px 3px 0;
	}

	.event-lightbox-prev {
		left: 8px;
	}

	.event-lightbox-next {
		right: 8px;
	}

	.survival-video-list {
		grid-template-columns: 1fr;
	}

	.survival-certificates-gallery {
		grid-template-columns: 1fr;
	}

	.survival-gallery-item img {
		height: 220px;
		max-height: none;
	}

	.survival-certificate-item img {
		height: 150px;
	}

	.survival-lightbox {
		padding: 56px 14px 28px;
	}

	.survival-lightbox-frame img {
		max-height: calc(100vh - 136px);
	}

	.survival-lightbox-close {
		top: 10px;
		right: 10px;
	}

	.survival-lightbox-nav {
		top: auto;
		bottom: 18px;
		width: 44px;
		height: 44px;
		transform: none;
	}

	.survival-lightbox-prev {
		left: 18px;
	}

	.survival-lightbox-next {
		right: 18px;
	}
}
