/**
 * Minimal legacy bridges + offcanvas fixes.
 * Layout/responsive: Bootstrap grid & utilities in Blade (mid-content.blade.php, app.blade.php).
 */

/* Mobile — restore document scroll (fixed bg + 100vh body break iOS/Android touch scroll) */
@media (max-width: 991.98px) {
	html {
		height: auto;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body {
		height: auto;
		min-height: 100vh;
		min-height: 100dvh;
		overflow-x: hidden;
		overflow-y: visible;
		background-attachment: scroll;
	}
}

/* main.css .mid-content { display:flex } — Bootstrap row controls layout */
.mid-content.row {
	margin-bottom: 20px;
	display: flex !important;
	flex-flow: row wrap !important;
	justify-content: flex-start !important;
	align-items: stretch !important;
}

@media (max-width: 991.98px) {
	.mid-content.row {
		--mid-info-col-width: 11rem;
	}

	.mid-content.row > .col.min-width-0:not(.mid-content__slider-col) {
		flex: 1 1 0 !important;
		width: auto !important;
		max-width: calc(100% - var(--mid-info-col-width) - var(--bs-gutter-x, 0.5rem));
	}

	.mid-content.row > .col-auto,
	.mid-content__social-col {
		flex: 0 0 var(--mid-info-col-width) !important;
		width: var(--mid-info-col-width) !important;
		max-width: var(--mid-info-col-width) !important;
		min-width: var(--mid-info-col-width) !important;
		flex-shrink: 0 !important;
		display: block !important;
	}

	.mid-content.row > .mid-content__slider-col {
		flex: 0 0 100% !important;
		width: 100% !important;
	}

	/* main.css hides .info-boxes below 635px — keep strip visible on all mobile/tablet */
	.mid-content .info-boxes {
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		gap: 0 !important;
		height: 264px;
		max-height: 264px;
		width: 100% !important;
	}

	.mid-content .info-boxes > a {
		flex: 1 1 0;
		display: block;
		min-height: 0;
	}

	.mid-content .info-boxes .box {
		width: 100%;
		height: 100%;
		min-height: 0;
	}
}

@media (max-width: 1085px) {
	.mid-content.row {
		justify-content: flex-start !important;
	}
}

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

/* ------------------------------------------------------------------ */
/* Home slider — single source (replaces legacy .slider / .slide)      */
/* ------------------------------------------------------------------ */

.mid-content__promo-col {
	min-width: 0;
}

.mid-content__slider-col {
	min-width: 0;
}

.mid-content__social-col {
	flex: 0 0 auto;
	min-width: 0;
}

@media (min-width: 992px) {
	.mid-content__social-col {
		display: block !important;
	}

	/* Same 264px stack as stats + slider — three equal rows, no vertical gaps */
	.mid-content .info-boxes {
		display: flex !important;
		flex-direction: column;
		width: 168px;
		height: 264px;
		max-height: 264px;
		justify-content: flex-start !important;
		gap: 0;
	}

	.mid-content .info-boxes > a {
		flex: 1 1 0;
		display: block;
		min-height: 0;
	}

	.mid-content .info-boxes .box {
		width: 100%;
		height: 100%;
		min-height: 0;
	}
}

@media (min-width: 992px) and (max-width: 1399.98px) {
	.mid-content__social-col {
		flex: 0 0 auto !important;
		flex-shrink: 0 !important;
	}

	/* Slider grows into space beside stats + social buttons */
	.mid-content__slider-col {
		flex: 1 1 0 !important;
		width: auto !important;
		max-width: none !important;
	}

	.mid-content .home-slider {
		width: 100%;
		max-width: none;
	}
}

@media (min-width: 992px) and (max-width: 1085.98px) {
	/* Narrow desktop — cap slider like original layout */
	.mid-content .home-slider {
		width: 100%;
		max-width: 400px;
		margin-left: auto;
	}
}

@media (min-width: 1400px) {
	/* Calendar removed — social column grows between stats and slider */
	.mid-content__social-col {
		flex: 1 1 0 !important;
		min-width: 168px;
		max-width: none !important;
	}

	.mid-content .info-boxes {
		width: 100%;
	}

	.mid-content .info-boxes .box {
		background-size: cover;
		background-position: center center;
	}

	.mid-content__slider-col {
		flex: 0 0 auto !important;
		width: auto !important;
		flex-shrink: 0 !important;
	}

	.mid-content .home-slider {
		width: 673px;
		max-width: 673px;
	}
}

/* Event calendar — sidebar + mid-content promo (side-light design) */
.event-calendar-card--mid {
	height: 264px;
}

.event-calendar-card--mid.side-light {
	display: flex;
	flex-direction: column;
	height: 264px;
}

.event-calendar-card--mid .content.event-calendar {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.event-calendar-card--mid .event-calendar__grid {
	flex: 1 1 auto;
	align-content: start;
}

.event-calendar-card .content.event-calendar {
	padding-top: 8px;
	padding-bottom: 10px;
}

.event-calendar__weekdays,
.event-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 3px;
}

.event-calendar__weekdays {
	margin-bottom: 4px;
}

.event-calendar__weekday {
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	color: #dac0a3;
	text-transform: uppercase;
	line-height: 1.2;
}

.event-calendar__day {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 22px;
	aspect-ratio: 1;
	padding: 0;
	border: 1px solid transparent;
	font-size: 11px;
	font-weight: 600;
	color: #fbe8d4;
	background: rgba(60, 39, 24, 0.35);
	line-height: 1;
	cursor: pointer;
	font-family: inherit;
}

.event-calendar__day:hover:not(.event-calendar__day--empty) {
	border-color: rgba(130, 73, 46, 0.85);
	background: rgba(64, 35, 21, 0.55);
}

.event-calendar__day:focus-visible {
	outline: 2px solid #ffda00;
	outline-offset: 1px;
}

.event-calendar__day--empty {
	background: transparent;
	border-color: transparent;
	pointer-events: none;
	cursor: default;
}

.event-calendar__day--today {
	color: #402315;
	background: #ffda00;
	border-color: #c9a030;
	font-weight: 700;
}

.event-calendar__day--selected:not(.event-calendar__day--today) {
	border-color: #ffda00;
	box-shadow: inset 0 0 0 1px rgba(255, 218, 0, 0.45);
}

.event-calendar__day--event:not(.event-calendar__day--today) {
	border-color: rgba(130, 73, 46, 0.65);
}

.event-calendar__dot {
	position: absolute;
	bottom: 2px;
	left: 50%;
	width: 4px;
	height: 4px;
	margin-left: -2px;
	border-radius: 50%;
	background: #7bc67e;
	box-shadow: 0 0 4px rgba(123, 198, 126, 0.55);
}

.event-calendar__day--today .event-calendar__dot {
	background: #402315;
	box-shadow: none;
}

.event-calendar-card--mid .event-calendar__day {
	min-height: 0;
	font-size: 10px;
}

.event-calendar-card--mid .event-calendar__weekday {
	font-size: 9px;
}

.event-calendar-card--mid .event-calendar__grid {
	flex: 1 1 auto;
	align-content: start;
}

.event-calendar-card--mid .event-calendar__day-panel {
	flex: 0 1 auto;
	max-height: 72px;
}

.event-calendar__day-panel {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(130, 73, 46, 0.45);
	min-height: 0;
}

.event-calendar__day-panel-head {
	margin-bottom: 6px;
	color: #ffdeb9;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.2;
}

.event-calendar-card--sidebar .event-calendar__day-panel-body {
	max-height: 120px;
	overflow-y: auto;
}

.event-calendar-card--mid .event-calendar__day-panel-body {
	overflow-y: auto;
}

.event-calendar__day-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.event-calendar__day-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
}

.event-calendar__day-marker {
	flex-shrink: 0;
	width: 7px;
	height: 7px;
	margin-top: 5px;
	border-radius: 50%;
	background: rgba(201, 168, 138, 0.55);
}

.event-calendar__day-item--live .event-calendar__day-marker {
	background: #7bc67e;
	box-shadow: 0 0 5px rgba(123, 198, 126, 0.6);
}

.event-calendar__day-text {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.event-calendar__day-name {
	color: #fbe8d4;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
}

.event-calendar__day-meta {
	color: #c9a88a;
	font-size: 10px;
	line-height: 1.25;
}

.event-calendar__day-empty {
	color: #c9a88a;
	font-size: 11px;
	line-height: 1.35;
}

.main-page .side-light--events,
.zeryon-sidebar-offcanvas .side-light--events {
	margin-top: 0;
}

.mid-content .home-slider {
	--hs-w: 673px;
	--hs-h: 264px;
	position: relative;
	width: var(--hs-w);
	max-width: 100%;
	height: var(--hs-h);
	background-color: #3e2a1e;
	overflow: hidden;
	isolation: isolate;
}

.mid-content .home-slider__viewport {
	overflow: hidden;
	width: 100%;
	height: 100%;
	touch-action: pan-y;
	cursor: grab;
	-webkit-user-select: none;
	user-select: none;
}

.mid-content .home-slider__viewport.is-dragging {
	cursor: grabbing;
	touch-action: none;
}

.mid-content .home-slider__track {
	display: flex;
	flex-wrap: nowrap;
	height: 100%;
	will-change: transform;
}

.mid-content .home-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	min-width: 0;
}

.mid-content .home-slider__slide a {
	display: block;
	width: 100%;
	height: 100%;
}

.mid-content .home-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

.mid-content .home-slider__control {
	position: absolute;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%);
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	line-height: 1;
}

.mid-content .home-slider__control:hover {
	opacity: 1;
}

.mid-content .home-slider__control--prev {
	left: 35px;
}

.mid-content .home-slider__control--next {
	right: 35px;
}

.mid-content .home-slider__control i {
	color: #fbe8d4;
	font-size: 24px;
}

@media (max-width: 991.98px) {
	.mid-content .home-slider {
		width: 100%;
		height: auto;
		aspect-ratio: 673 / 264;
	}

	.mid-content .home-slider__control--prev {
		left: 12px;
	}

	.mid-content .home-slider__control--next {
		right: 12px;
	}
}

/* Center logo — subtle zoom on hover */
.logo-box {
	transition: transform 0.35s ease;
}

.logo-box:hover {
	transform: translateX(-50%) scale(1.06);
}

.logo-box:hover .logo {
	animation-play-state: paused;
}

@media (min-width: 992px) {
	.mid-content.row {
		margin-top: 270px;
		flex-wrap: nowrap !important;
	}

	.mid-content .statistics {
		width: 100% !important;
		max-width: 100%;
		height: 264px !important;
	}
}

@media (max-width: 991.98px) {
	.mid-content.row {
		margin-top: 270px;
	}

	.mid-content-strip {
		padding-left: 6px;
		padding-right: 6px;
		/* Sidebar is off-canvas — row height no longer includes panel stack; keep gap before footer */
		padding-bottom: clamp(1.5rem, 5vw, 2.5rem);
	}

	.mid-content.row,
	.main-page.row {
		--bs-gutter-x: 0.5rem;
	}

	.main-page .mid-dark .basic {
		padding-left: 12px;
		padding-right: 12px;
	}

	.main-page > main {
		padding-bottom: 0.25rem;
	}

	.site-footer {
		position: relative;
		z-index: 35;
	}

	.mid-content .statistics {
		width: 100% !important;
		max-width: none;
		height: 264px !important;
	}
}

@media (max-width: 767.98px) {
	.mid-content.row {
		margin-top: 250px;
	}
}

@media (max-width: 635px) {
	.mid-content.row {
		margin-top: 210px;
	}
}

@media (max-width: 575.98px) {
	.mid-content.row {
		margin-top: 200px;
		--mid-info-col-width: 9.5rem;
	}

	.mid-content-strip {
		padding-left: 4px;
		padding-right: 4px;
	}

	.main-page .mid-dark .basic {
		padding-left: 10px;
		padding-right: 10px;
	}

	/* Stats panel — download visible on mobile (main.css .hide-m hides it @550px) */
	.mid-content .statistics .download {
		height: 48px;
		font-size: 15px;
		padding: 0 4px;
	}

	.zeryon-sidebar-offcanvas.offcanvas {
		--bs-offcanvas-width: min(340px, 96vw);
	}
}

/* ------------------------------------------------------------------ */
/* Main page — Bootstrap row: sidebar (lg+) + content                  */
/* ------------------------------------------------------------------ */

.main-page .mid-wrapper,
.main-page .mid-dark,
#content-wrap .mid-dark {
	width: 100% !important;
	max-width: 100%;
}

/* Desktop (lg+) — sidebar column + main: row must follow tallest column; gap before footer */
@media (min-width: 992px) {
	html {
		height: auto;
	}

	body {
		height: auto;
		min-height: 100vh;
		min-height: 100dvh;
		overflow-y: visible;
	}

	.mid-content-strip {
		padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
	}

	.main-page.row {
		align-items: stretch;
		margin-bottom: 20px;
	}

	.main-page.row > aside {
		align-self: flex-start;
	}

	.main-page.row > main {
		min-width: 0;
		min-height: 0;
		padding-bottom: 1rem;
	}

	.main-page .mid-wrapper,
	#content-wrap.mid-wrapper {
		display: block;
		overflow: visible;
		height: auto;
		min-height: 0;
	}

	.main-page .mid-dark,
	#content-wrap .mid-dark {
		height: auto;
		min-height: 0;
		overflow: visible;
	}

	.mid-dark.admin-page {
		overflow-x: hidden;
		overflow-y: visible;
	}

	.mid-dark.admin-page .admin-page-body {
		overflow-x: auto;
		overflow-y: visible;
	}

	.site-footer {
		position: relative;
		z-index: 35;
	}
}

/* Navbar — darker on hover, touch, or open mobile menu */
.navbar.fix-nav.not-scrolled {
	transition: opacity 0.3s ease-in-out;
}

.navbar.fix-nav.not-scrolled:hover,
.navbar.fix-nav.not-scrolled:focus-within,
.navbar.fix-nav.not-scrolled.navbar--touch,
.navbar.fix-nav.not-scrolled:has(.navbar-collapse.show),
.navbar.fix-nav.not-scrolled:has(.zeryon-navbar-collapse.show) {
	opacity: 1 !important;
}

.navbar.fix-nav.not-scrolled:hover::before,
.navbar.fix-nav.not-scrolled:focus-within::before,
.navbar.fix-nav.not-scrolled.navbar--touch::before,
.navbar.fix-nav.not-scrolled:has(.navbar-collapse.show)::before,
.navbar.fix-nav.not-scrolled:has(.zeryon-navbar-collapse.show)::before,
.navbar.fix-nav.not-scrolled:hover::after,
.navbar.fix-nav.not-scrolled:focus-within::after,
.navbar.fix-nav.not-scrolled.navbar--touch::after,
.navbar.fix-nav.not-scrolled:has(.navbar-collapse.show)::after,
.navbar.fix-nav.not-scrolled:has(.zeryon-navbar-collapse.show)::after {
	opacity: 1 !important;
}

.navbar.fix-nav.not-scrolled:hover .nav-logo img,
.navbar.fix-nav.not-scrolled:focus-within .nav-logo img,
.navbar.fix-nav.not-scrolled.navbar--touch .nav-logo img,
.navbar.fix-nav.not-scrolled:has(.navbar-collapse.show) .nav-logo img,
.navbar.fix-nav.not-scrolled:has(.zeryon-navbar-collapse.show) .nav-logo img {
	opacity: 1 !important;
}

/* Navbar links — restore template colors over Bootstrap .nav-link */
.navbar .nav-links .nav-link {
	text-decoration: none;
	color: #dac0a3 !important;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	font-size: 14px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.navbar .nav-links .nav-link:hover,
.navbar .nav-links .nav-link:focus,
.navbar .nav-links .nav-item.active .nav-link {
	color: #ffdeb9 !important;
	text-shadow: 0 0 10px #502015;
}

/* Override legacy main.css margins/positioning on language control */
.navbar .language-dropdown {
	position: relative;
	top: auto !important;
	left: auto !important;
	display: block;
	flex-shrink: 0;
}

.navbar .language-select {
	margin: 0 !important;
	width: auto;
	min-width: 73px;
	height: 30px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	line-height: 1;
	vertical-align: middle;
}

.navbar .language-select .flags {
	float: none !important;
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin: 0 !important;
}

.navbar .languages {
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	left: auto !important;
	margin: 0 !important;
	width: 73px;
	z-index: 1100;
}

.navbar .language-dropdown.is-open .languages {
	display: block;
}

.zeryon-navbar-mobile {
	position: relative;
}

.zeryon-navbar-mobile__header {
	min-height: 42px;
}

.navbar-toolbar {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
}

/* User panel title — logout uses same btn-ucp look as panel links */
.side-wrapper .title span form {
	display: inline-block;
	vertical-align: middle;
}

.side-wrapper .title span .btn-ucp--title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 100px;
	height: 32px;
	padding: 0 12px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	font-family: inherit;
}

.side-wrapper .title span .btn-ucp--title:hover,
.side-wrapper .title span .btn-ucp--title:focus-visible {
	filter: brightness(130%);
	color: #dac0a3;
}

@media (min-width: 992px) {
	.main-page .side-wrapper {
		margin-right: 0;
		width: 100%;
		max-width: 100%;
	}

	.main-page .side-light,
	.main-page .side-dark {
		width: 100%;
		max-width: 100%;
	}

	.zeryon-navbar-desktop .nav-links {
		flex-direction: row;
		flex-wrap: nowrap;
	}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
	.navbar .nav-links .nav-link {
		padding-left: 0.45rem !important;
		padding-right: 0.45rem !important;
		font-size: 13px;
	}

	.navbar .language-select {
		min-width: 68px;
		font-size: 13px;
	}
}

/* ------------------------------------------------------------------ */
/* Navbar + footer (< lg) — align with sidebar offcanvas breakpoint      */
/* ------------------------------------------------------------------ */

@media (max-width: 991.98px) {
	.zeryon-navbar-mobile .nav-menu.navbar-collapse,
	.zeryon-navbar-mobile .zeryon-navbar-collapse {
		position: absolute !important;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		margin-top: 0.5rem;
		z-index: 1001;
		background-color: #342a1d;
		border-radius: 10px;
		padding: 10px 8px;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
	}

	.navbar .nav-menu.navbar-collapse.collapse.show,
	.zeryon-navbar-mobile .zeryon-navbar-collapse.collapse.show {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}

	.navbar .nav-menu.navbar-collapse,
	.zeryon-navbar-mobile .zeryon-navbar-collapse {
		flex-direction: column;
		align-items: stretch;
	}

	.navbar .nav-menu.navbar-collapse.collapse:not(.show),
	.zeryon-navbar-mobile .zeryon-navbar-collapse.collapse:not(.show) {
		display: none !important;
		visibility: hidden !important;
	}

	.navbar .nav-links {
		flex-direction: column;
		width: 100%;
		align-items: center;
		margin-top: 0 !important;
		padding: 0;
		gap: 0.4rem;
	}

	/* main.css applies margin:2.5rem on .nav-item below ~868px — override for compact mobile menu */
	.navbar .nav-links .nav-item,
	.navbar .nav-links > li {
		width: 100%;
		text-align: center;
		margin: 0 !important;
		padding: 0 !important;
	}

	.navbar .nav-links .nav-link {
		display: block;
		width: 100%;
		padding: 0.65rem 0.75rem !important;
		line-height: 1.3;
	}

	.navbar .nav-links .nav-item.active::after,
	.navbar .nav-links > li.active::after {
		top: auto;
		bottom: 0.15rem;
		width: 2.75rem;
		height: 2px;
		background: #a5402d !important;
		border-bottom: none;
	}

	.navbar .nav-logo img,
	.navbar-brand.nav-logo img {
		margin-right: 0 !important;
		margin-top: 0;
	}

	.navbar::after {
		background: transparent !important;
	}

	.navbar-toolbar {
		align-items: center;
		gap: 0.5rem;
	}

	.navbar .language-dropdown {
		display: flex;
		align-items: center;
		align-self: center;
	}

	.navbar .language-select {
		height: 42px;
		min-height: 42px;
		min-width: 82px;
		padding: 0 12px;
		gap: 6px;
		font-size: 15px;
		align-self: center;
	}

	.navbar .language-select .flags {
		width: 22px;
		height: 22px;
	}

	.navbar .languages {
		min-width: 82px;
		width: auto;
	}

	.zeryon-nav-toggler {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 42px;
		height: 42px;
		padding: 0;
	}

	.zeryon-nav-toggler .bar {
		display: block;
		width: 25px;
		height: 3px;
		margin: 3px auto;
		border-radius: 5px;
		background-color: #fbe8d4;
		transition: all 0.3s ease-in-out;
	}

	.zeryon-nav-toggler[aria-expanded="true"] .bar:nth-child(2) {
		opacity: 0;
	}

	.zeryon-nav-toggler[aria-expanded="true"] .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.zeryon-nav-toggler[aria-expanded="true"] .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.site-footer .footer-container {
		width: 100%;
		max-width: 100%;
		padding-left: 12px;
		padding-right: 12px;
	}

	.site-footer__main {
		border-bottom: 1px solid #5c4636;
	}

	.site-footer .footer-main:after {
		display: none;
	}

	.site-footer .footer-links {
		width: 100%;
		justify-content: center !important;
		gap: 12px 20px !important;
	}

	.site-footer .footer-links a {
		margin: 0 !important;
	}

	.site-footer .footer-socials {
		width: 100%;
		justify-content: center !important;
	}
}

.site-footer__main {
	border-bottom: 1px solid #5c4636;
}

.site-footer .footer-main:after {
	display: none;
}

/* Footer link hover bar — keep underline under each link, not at section divider */
.site-footer .footer-links a {
	display: inline-block;
	padding-bottom: 3px;
	line-height: 1.35;
	vertical-align: top;
}

.site-footer .footer-links a::after {
	bottom: 0;
	height: 2px;
	transform-origin: center bottom;
}

.site-footer__network {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 1.25rem 0 1rem;
	text-align: center;
}

.site-footer__network-title {
	color: #926e5c;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer__network-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 16px 24px;
}

.site-footer__network-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__network-links a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.site-footer__network-links img {
	display: block;
	width: auto;
	height: 32px;
	max-width: min(160px, 100%);
	object-fit: contain;
}

.site-footer__divider {
	border: 0;
	border-top: 1px solid #5c4636;
	margin: 0;
	opacity: 1;
}

.site-footer .footer-bottom {
	padding-top: 1rem;
	margin-top: 0;
}

.scroll-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1040;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.scroll-to-top--visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:focus-visible {
	outline: 2px solid #f7954c;
	outline-offset: 3px;
	border-radius: 4px;
}

.scroll-to-top:hover {
	filter: brightness(1.15);
}

.scroll-to-top img {
	display: block;
	width: 38px;
	height: 38px;
}

@media (max-width: 991.98px) {
	.scroll-to-top {
		right: 14px;
		bottom: 14px;
	}
}

/* ------------------------------------------------------------------ */

.zeryon-sidebar-toggle {
	display: none;
}

@media (max-width: 991.98px) {
	.zeryon-sidebar-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		left: 0;
		top: 25vh;
		z-index: 950;
		pointer-events: auto;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid #722c1e;
		border-left: 0;
		border-radius: 0 8px 8px 0;
		background: linear-gradient(90deg, rgba(86, 34, 23, 1) 0%, rgba(102, 39, 27, 1) 100%);
		color: #dac0a3;
		cursor: pointer;
		box-shadow: 2px 0 12px rgba(0, 0, 0, 0.35);
		transition: filter 0.2s ease;
	}

	.zeryon-sidebar-toggle:hover,
	.zeryon-sidebar-toggle:focus {
		filter: brightness(115%);
		outline: none;
	}

	.zeryon-sidebar-toggle .kr.login {
		width: 24px;
		height: 24px;
		display: block;
		background-size: contain;
		filter: brightness(0) invert(96%) sepia(10%) saturate(350%) hue-rotate(350deg);
		opacity: 0.95;
		transition: filter 0.2s ease, opacity 0.2s ease;
	}

	.zeryon-sidebar-toggle:hover .kr.login,
	.zeryon-sidebar-toggle:focus .kr.login {
		filter: brightness(0) invert(100%);
		opacity: 1;
	}
}

@media (min-width: 992px) {
	.zeryon-sidebar-toggle {
		display: none !important;
	}
}

.zeryon-sidebar-offcanvas.offcanvas {
	--bs-offcanvas-width: min(320px, 92vw);
	background-color: #3f2b1e;
	border-right: 1px solid #722c1e;
	color: #dac0a3;
	z-index: 1050;
}

/* BS 5.3 JS + BS 5.0 CSS: offcanvas stays invisible without these rules */
.offcanvas-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1040;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s linear;
}

.offcanvas-backdrop.show {
	opacity: 0.5;
	pointer-events: auto;
}

.zeryon-sidebar-offcanvas.offcanvas.showing,
.zeryon-sidebar-offcanvas.offcanvas.show:not(.hiding),
.zeryon-sidebar-offcanvas.offcanvas.show {
	visibility: visible !important;
	transform: none !important;
}

body.modal-open,
body.offcanvas-open {
	overflow: hidden;
	padding-right: 0;
}

.zeryon-sidebar-offcanvas .offcanvas-header {
	background: linear-gradient(90deg, rgba(86, 34, 23, 1) 0%, rgba(102, 39, 27, 1) 100%);
	border-bottom: 1px solid #722c1e;
	padding: 12px 16px;
}

.zeryon-sidebar-offcanvas .offcanvas-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: #ffdeb9;
	margin: 0;
}

.zeryon-sidebar-offcanvas .offcanvas-title .kr.login {
	flex-shrink: 0;
}

.zeryon-sidebar-offcanvas .btn-close {
	filter: invert(85%) sepia(12%) saturate(400%) hue-rotate(350deg);
	opacity: 0.85;
}

.zeryon-sidebar-offcanvas .offcanvas-body {
	padding: 12px;
	background-color: #2a1c14;
}

.zeryon-sidebar-offcanvas .side-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-right: 0;
	width: 100%;
}

.zeryon-sidebar-offcanvas .side-light {
	display: block !important;
	width: 100%;
	background-color: #766450;
}

.zeryon-sidebar-offcanvas .side-light--ranking.hide-m {
	display: block !important;
}

/* Sidebar section headers — decorative separator image (same as content pages) */
.side-wrapper .side-light > .title,
.zeryon-sidebar-offcanvas .side-light > .title {
	border-bottom: none;
}

.side-wrapper .side-light > .content-separator,
.zeryon-sidebar-offcanvas .side-light > .content-separator {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0;
	overflow: visible;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 100% 1px;
}

.zeryon-sidebar-offcanvas .top3-cards {
	justify-content: center;
}

/* Top 3 ranking — fluid cards when sidebar column is narrower than fixed 366px row */
.content.top3 {
	container-type: inline-size;
	container-name: top3-panel;
	overflow: hidden;
}

.content.top3 .top3-cards {
	gap: clamp(4px, 3cqi, 18px);
	max-width: 100%;
	box-sizing: border-box;
}

.content.top3 .top3-card {
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	max-width: 110px;
}

@container top3-panel (max-width: 260px) {
	.content.top3 .top3-card {
		max-width: none;
		padding: 34px 3px 4px;
		min-height: 112px;
		border-radius: 14px;
	}

	.content.top3 .top3-card.top1 {
		margin-bottom: 16px;
	}

	.content.top3 .top3-rank-badge-img {
		width: 34px;
		height: 46px;
	}

	.content.top3 .top3-rank-badge-img span {
		font-size: 16px;
		line-height: 46px;
	}

	.content.top3 .top3-class-img,
	.content.top3 .top3-class-img.class {
		width: 44px;
		height: 44px;
		border-radius: 12px;
		margin-bottom: 8px;
	}

	.content.top3 .top3-card i {
		top: 72px;
	}

	.content.top3 .top3-card-name {
		font-size: 10px;
	}

	.content.top3 .empire-flag {
		width: 24px;
		height: 13px;
		background-size: 100% 100%;
	}
}

@container top3-panel (max-width: 220px) {
	.content.top3 .top3-cards {
		gap: clamp(3px, 2cqi, 8px);
	}

	.content.top3 .top3-card {
		padding: 28px 2px 3px;
		min-height: 96px;
		border-radius: 12px;
	}

	.content.top3 .top3-card.top1 {
		margin-bottom: 12px;
	}

	.content.top3 .top3-rank-badge-img {
		width: 28px;
		height: 38px;
	}

	.content.top3 .top3-rank-badge-img span {
		font-size: 13px;
		line-height: 38px;
	}

	.content.top3 .top3-class-img,
	.content.top3 .top3-class-img.class {
		width: 36px;
		height: 36px;
		border-radius: 10px;
		margin-bottom: 6px;
	}

	.content.top3 .top3-card i {
		top: 60px;
	}

	.content.top3 .top3-card-name {
		font-size: 9px;
		margin-top: 3px;
	}

	.content.top3 .empire-flag {
		width: 20px;
		height: 11px;
	}
}

/* Admin panel — section title + link, description below */
.admin-panel .basic {
	padding-bottom: 4px;
}

.admin-section-title {
	margin-top: 8px;
	margin-bottom: 14px;
	justify-content: flex-start;
}

.admin-section-title span {
	margin-left: 0 !important;
	color: #ffdeb9;
	font-weight: 700;
	text-transform: uppercase;
}

.admin-entry {
	margin-bottom: 18px;
}

.admin-entry__link {
	display: block;
	color: #dac0a3;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}

.admin-entry__link:hover,
.admin-entry__link:focus {
	color: #ffdeb9;
}

.admin-entry__link .bi {
	margin-right: 8px;
	color: #927152;
	font-size: 1em;
	vertical-align: -0.1em;
}

.admin-entry__desc {
	margin-top: 2px;
	padding: 0;
}

.admin-entry__desc p {
	margin: 0;
	color: #c5ac90;
	font-size: 14px;
	line-height: 1.45;
}

.admin-panel .content-separator {
	margin: 20px 0 8px;
}

/* Admin routes — hide homepage strip only (stats + social boxes + slider); sidebar stays */
body.layout-admin .mid-content-strip--admin .main-page {
	margin-top: 270px;
}

@media (max-width: 767.98px) {
	body.layout-admin .mid-content-strip--admin .main-page {
		margin-top: 250px;
	}
}

@media (max-width: 635px) {
	body.layout-admin .mid-content-strip--admin .main-page {
		margin-top: 210px;
	}
}

@media (max-width: 575.98px) {
	body.layout-admin .mid-content-strip--admin .main-page {
		margin-top: 200px;
	}
}

/* Admin pages — forms, input addons, responsive tables (hidden scrollbar) */
.mid-dark.admin-page {
	max-width: 100%;
	min-width: 0;
	overflow-x: hidden;
}

.mid-dark.admin-page .admin-page-body {
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.mid-dark.admin-page .admin-page-body::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.mid-dark.admin-page .form-control,
.mid-dark.admin-page select.form-control,
.mid-dark.admin-page textarea.form-control {
	background-color: #281c14;
	border: 1px solid #69533d;
	color: #b4946e;
	border-radius: 10px;
}

.mid-dark.admin-page .form-control::placeholder {
	color: #927152;
	opacity: 1;
}

.mid-dark.admin-page .form-control:focus,
.mid-dark.admin-page select.form-control:focus,
.mid-dark.admin-page textarea.form-control:focus {
	background-color: #281c14;
	border-color: #927152;
	color: #dac0a3;
	box-shadow: none;
}

.mid-dark.admin-page select.form-control option {
	background-color: #281c14;
	color: #b4946e;
}

.mid-dark.admin-page .col-form-label,
.mid-dark.admin-page .control-label,
.mid-dark.admin-page label {
	color: #dac0a3;
}

.mid-dark.admin-page .input-group {
	flex-wrap: nowrap;
	width: 100%;
	max-width: 100%;
}

.mid-dark.admin-page .input-group > .form-control {
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
}

.mid-dark.admin-page .input-group > .form-control:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: 0;
}

.mid-dark.admin-page .input-group > .form-control:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 0;
}

.mid-dark.admin-page .input-group-text,
.mid-dark.admin-page .input-group > .btn,
.mid-dark.admin-page .input-group > .btn-default {
	background-color: #281c14;
	border: 1px solid #69533d;
	color: #b4946e;
	white-space: nowrap;
	padding: 0.375rem 0.75rem;
}

.mid-dark.admin-page .input-group-text:last-child,
.mid-dark.admin-page .input-group > .btn:last-child,
.mid-dark.admin-page .input-group > .btn-default:last-child {
	border-left: 0;
	border-radius: 0 10px 10px 0;
}

.mid-dark.admin-page .input-group-text:first-child {
	border-right: 0;
	border-radius: 10px 0 0 10px;
}

.mid-dark.admin-page .input-group > .btn:hover,
.mid-dark.admin-page .input-group > .btn-default:hover {
	background-color: #352418;
	color: #ffdeb9;
}

.mid-dark.admin-page table {
	width: 100%;
	margin-bottom: 1rem;
}

.mid-dark.admin-page table.table {
	--bs-table-bg: transparent;
}

.mid-dark.admin-page .jumbotron {
	background: transparent;
	padding: 0.5rem 0 !important;
	margin-bottom: 0.75rem;
}

.mid-dark.admin-page .card {
	background-color: #352418;
	border-color: #69533d;
}

.mid-dark.admin-page .card-header {
	background-color: rgba(0, 0, 0, 0.2);
	border-color: #69533d;
}

.mid-dark.admin-page .card-header a {
	color: #ffdeb9;
}

.mid-dark.admin-page .card-block {
	padding: 0.75rem;
}

.mid-dark.admin-page .nav-tabs {
	border-bottom-color: #69533d;
}

.mid-dark.admin-page .nav-tabs .nav-link {
	color: #b4946e;
	border-color: transparent;
}

.mid-dark.admin-page .nav-tabs .nav-link.active {
	background-color: #281c14;
	border-color: #69533d #69533d #281c14;
	color: #ffdeb9;
}

.mid-dark.admin-page .bootstrap-select > .dropdown-toggle {
	background-color: #281c14 !important;
	border-color: #69533d !important;
	color: #b4946e !important;
}

.mid-dark.admin-page .bootstrap-select .dropdown-menu {
	background-color: #281c14;
	border-color: #69533d;
}

.mid-dark.admin-page .bootstrap-select .dropdown-menu .dropdown-item {
	color: #b4946e;
}

.mid-dark.admin-page .bootstrap-select .dropdown-menu .dropdown-item:hover,
.mid-dark.admin-page .bootstrap-select .dropdown-menu .dropdown-item:focus {
	background-color: #352418;
	color: #ffdeb9;
}

.mid-dark.admin-page .admin-form .row.g-2 {
	--bs-gutter-x: 0.5rem;
	--bs-gutter-y: 0.5rem;
}

/* Keep mid-dark public pages styled too */
.mid-dark:not(.admin-page) .form-control,
.mid-dark:not(.admin-page) select.form-control {
	background-color: #281c14;
	border: 1px solid #69533d;
	color: #b4946e;
	border-radius: 10px;
}

.mid-dark:not(.admin-page) .form-control:focus,
.mid-dark:not(.admin-page) select.form-control:focus {
	background-color: #281c14;
	border-color: #927152;
	color: #dac0a3;
	box-shadow: none;
}

/* Admin responsive audit — layout, tables, alerts, mobile forms */
.mid-dark.admin-page .basic {
	padding-left: clamp(6px, 2.5vw, 19px);
	padding-right: clamp(6px, 2.5vw, 19px);
	box-sizing: border-box;
}

.mid-dark.admin-page .admin-page-body .admin-panel {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.mid-dark.admin-page .admin-page-body .admin-panel .basic {
	padding-left: 0;
	padding-right: 0;
}

.mid-dark.admin-page .admin-form .row,
.mid-dark.admin-page .admin-page-body form .row,
.mid-dark.admin-page .form-group.row {
	--bs-gutter-x: 0.75rem;
	--bs-gutter-y: 0.5rem;
	margin-left: calc(var(--bs-gutter-x) * -0.5);
	margin-right: calc(var(--bs-gutter-x) * -0.5);
}

.mid-dark.admin-page .admin-form .row > [class*='col-'],
.mid-dark.admin-page .form-group.row > [class*='col-'] {
	min-width: 0;
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	padding-right: calc(var(--bs-gutter-x) * 0.5);
}

@media (max-width: 767.98px) {
	.mid-dark.admin-page .offset-md-3,
	.mid-dark.admin-page .offset-md-7,
	.mid-dark.admin-page .offset-sm-2,
	.mid-dark.admin-page .offset-sm-8 {
		margin-left: 0 !important;
	}

	.mid-dark.admin-page .form-group.row .col-form-label {
		padding-bottom: 0.25rem;
	}
}

.mid-dark.admin-page table.admin-data-table,
.mid-dark.admin-page .admin-page-body > table.table,
.mid-dark.admin-page .admin-page-body table.table {
	width: max-content;
	min-width: 100%;
	max-width: none;
}

.mid-dark.admin-page .table td,
.mid-dark.admin-page .table th {
	vertical-align: middle;
}

.mid-dark.admin-page .table td:not(.text-wrap-cell),
.mid-dark.admin-page .table th {
	white-space: nowrap;
}

.mid-dark.admin-page .table .text-wrap-cell {
	white-space: normal;
	word-break: break-word;
	max-width: min(280px, 45vw);
}

.mid-dark.admin-page .alert {
	background-color: #352418;
	border-color: #69533d;
	color: #dac0a3;
}

.mid-dark.admin-page .alert-info {
	background-color: rgba(40, 55, 68, 0.9);
	border-color: #4a6278;
	color: #c5d4e0;
}

.mid-dark.admin-page .alert-danger {
	background-color: rgba(72, 28, 28, 0.92);
	border-color: #8b3a3a;
	color: #f0c0c0;
}

.mid-dark.admin-page .alert-success {
	background-color: rgba(28, 55, 35, 0.92);
	border-color: #3d6b48;
	color: #c5e8cc;
}

.mid-dark.admin-page .btn-close {
	filter: invert(85%) sepia(12%) saturate(400%) hue-rotate(350deg);
}

.mid-dark.admin-page .pagination-area-wrapper {
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	max-width: 100%;
	margin-top: 0.75rem;
}

.mid-dark.admin-page .pagination-area-wrapper::-webkit-scrollbar {
	display: none;
}

.mid-dark.admin-page .pagination {
	flex-wrap: nowrap;
	margin-bottom: 0;
}

.mid-dark.admin-page #accordion .form-group.row > [class*='col-'] {
	margin-bottom: 0.35rem;
}

.mid-dark.admin-page .nav-tabs {
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.mid-dark.admin-page .nav-tabs::-webkit-scrollbar {
	display: none;
}

.mid-dark.admin-page .nav-tabs .nav-link {
	white-space: nowrap;
}

.mid-dark.admin-page .tab-content {
	padding-top: 0.5rem;
}

.mid-dark.admin-page hr {
	border-color: #69533d;
	opacity: 0.6;
}

.mid-dark.admin-page .createitems-form .row > [class*='col-md-'] {
	margin-bottom: 0.35rem;
}

/* Semantic headings: keep legacy .title visuals */
.mid-dark h1.title,
.mid-dark h2.title,
.mid-dark .title {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
}

.mid-dark.news h1.page-news-heading {
	margin-bottom: 0.5rem;
}

/* News page — scrollable category tabs + add button on same row */
.news-toolbar {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: 100%;
	margin: 0.5rem 0 0.75rem;
}

.news-tabs-scroll.content-tabs-container {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	max-width: none;
	margin: 0;
	justify-content: flex-start;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.news-tabs-scroll.content-tabs-container::-webkit-scrollbar {
	display: none;
}

.news-tabs-scroll .cat {
	flex: 0 0 auto;
	white-space: nowrap;
	text-decoration: none;
}

.news-add-toggle {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
	padding: 0.45rem 0.75rem;
	font-size: 13px;
	line-height: 1.2;
}

.news-add-toggle__label {
	display: inline;
}

.news-add-form {
	margin-bottom: 0.5rem;
}

.news-add-form__panel {
	padding: 0.75rem;
}

.news-add-form__meta-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) min(11rem, 38%);
	gap: 0.75rem;
	align-items: end;
	margin-bottom: 0.75rem;
}

.news-add-form__field .form-label {
	color: #c9a88a;
}

.news-add-form__actions {
	margin-top: 0.5rem;
}

.news-empty {
	padding: 10px;
	color: #dac0a3;
	margin: 0;
}

.mid-dark.news h2.title .news-admin-edit,
.mid-dark.news .news-item__title .news-admin-edit {
	display: inline-flex;
	align-items: center;
	margin-right: 0.25rem;
}

.mid-dark.news .news-admin-edit__icon {
	color: #927152;
}

.mid-dark.news .news-list {
	display: flex;
	flex-direction: column;
}

.mid-dark.news .news-item__title {
	display: block;
}

.mid-dark.news .news-item__time {
	display: inline-block;
	margin-left: 0.35rem;
}

.mid-dark.news .news-pagination {
	padding: 15px 0 0;
}

.mid-dark.news h2.title .news-admin-delete-form {
	display: inline-flex;
	margin: 0 0.35rem 0 0;
	vertical-align: middle;
}

.mid-dark.news h2.title .news-admin-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent !important;
	color: #c94a4a;
	cursor: pointer;
	line-height: 1;
	vertical-align: middle;
}

.mid-dark.news h2.title .news-admin-delete i {
	font-size: 14px;
	pointer-events: none;
}

.mid-dark.news h2.title .news-admin-delete:hover,
.mid-dark.news h2.title .news-admin-delete:focus-visible {
	color: #ff7070;
	outline: none;
	filter: brightness(1.15);
}

@media (max-width: 575.98px) {
	.news-add-toggle {
		padding: 0.45rem 0.55rem;
	}

	.news-add-toggle__label {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.news-add-form__meta-row {
		grid-template-columns: 1fr;
	}
}

.mid-dark h2.title a {
	color: inherit;
}

.mid-dark h2.section-heading,
.jumbotron h2.section-heading,
h2.admin-section-title,
h2.title.admin-section-title {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
	line-height: 1.3;
	justify-content: flex-start;
}

h2.admin-section-title span,
h2.title.admin-section-title span {
	margin-left: 0 !important;
}

.site-breadcrumb {
	margin: 0 0 0.65rem;
	padding: 0;
}

.site-breadcrumb-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	min-height: 2.375rem;
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 0;
}

.site-breadcrumb-divider {
	border: 0;
	border-top: 1px solid rgba(180, 148, 110, 0.28);
	margin: 0.5rem 0 1rem;
	opacity: 1;
}

.site-back-btn {
	align-self: center;
	flex-shrink: 0;
	line-height: 1.25;
}

.site-back-btn .fa-arrow-left {
	font-size: 0.85em;
}

.site-breadcrumb-bar .site-breadcrumb {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	min-height: 0;
}

.site-breadcrumb-bar > .min-width-0 {
	display: flex;
	align-items: center;
	min-height: 0;
}

.site-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.82rem;
	line-height: 1.35;
	color: #c9b8a0;
}

.site-breadcrumb-item {
	display: inline-flex;
	align-items: center;
}

.site-breadcrumb-item + .site-breadcrumb-item::before {
	content: "/";
	margin-right: 0.35rem;
	color: #8a7358;
}

.site-breadcrumb a {
	color: #f7954c;
	text-decoration: none;
}

.site-breadcrumb a:hover {
	text-decoration: underline;
}

.site-breadcrumb [aria-current="page"] {
	color: #e8dcc8;
}

@media (max-width: 767.98px) {
	.site-breadcrumb-bar {
		min-height: 2.5rem;
		padding-top: 0.5rem;
		padding-bottom: 0.4375rem;
	}
}

.mid-dark.news .site-breadcrumb {
	padding: 0.5rem 0.75rem 0;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
	color: #fff;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

.article-body h2 { font-size: 1.35rem; }
.article-body h3 { font-size: 1.15rem; }
.article-body h4 { font-size: 1rem; }

.policy-body h1 {
	color: #fff;
	font-size: 1.5rem;
	margin: 0 0 1rem;
}

.policy-body h2 {
	color: #fff;
	font-size: 1.2rem;
	margin: 1.25rem 0 0.5rem;
}

.policy-body h3 {
	color: #fff;
	font-size: 1.1rem;
	margin: 1rem 0 0.5rem;
}

.news-admin-delete-form {
	display: inline-flex;
	margin: 0;
}

.news-admin-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.support-report-actions .btn,
.admin-table-actions .btn {
	width: 2rem;
	height: 2rem;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.support-report-actions form,
.admin-table-actions form {
	display: inline-flex;
	margin: 0;
}

.support-report-actions .btn .bi,
.admin-table-actions .btn .bi {
	font-size: 1rem;
	line-height: 1;
}

/* Admin — players management */
.admin-players-toolbar .form-label {
	color: #c9b8a0;
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.admin-players-search__hint {
	color: #8f7354;
	font-size: 0.78rem;
}

.admin-players-table__header {
	background: rgba(180, 148, 110, 0.08);
	border-bottom: 1px solid rgba(180, 148, 110, 0.2);
	color: #dac0a3;
	font-size: 0.88rem;
}

.admin-players-table__filter {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
}

.admin-players-table__filter strong {
	color: #ffdeb9;
	word-break: break-word;
}

.admin-players-table__name {
	color: #ffdeb9;
	font-weight: 600;
}

.admin-players-table__level {
	background: rgba(247, 149, 76, 0.16);
	color: #ffdeb9;
	border: 1px solid rgba(247, 149, 76, 0.28);
	font-size: 0.72rem;
	font-weight: 700;
}

.admin-players-table .badge.text-bg-warning {
	color: #2a1c14;
}

.admin-players-modal .modal-content {
	background: #2a1c14;
	border: 1px solid rgba(180, 148, 110, 0.28);
	color: #dac0a3;
}

.admin-players-modal .modal-header {
	border-bottom: 1px solid rgba(180, 148, 110, 0.2);
}

.admin-players-modal .modal-title {
	color: #ffdeb9;
	font-size: 1.05rem;
	font-weight: 700;
}

.admin-players-modal__confirm {
	color: #c9b8a0;
}

.admin-players-modal__tabs .nav-link {
	color: #b4946e;
	border-color: transparent;
}

.admin-players-modal__tabs .nav-link.active {
	background: rgba(180, 148, 110, 0.12);
	border-color: rgba(180, 148, 110, 0.28);
	color: #ffdeb9;
}

@media (max-width: 575.98px) {
	.admin-players-search .btn {
		flex: 1 1 auto;
	}

	.admin-players-search .d-flex.flex-wrap.gap-2 {
		width: 100%;
	}
}

/* Admin — game log viewer */
.admin-log-profile__heading {
	color: #ffdeb9;
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
}

.admin-log-profile__hint,
.admin-log-view__subtitle {
	color: #8f7354;
	font-size: 0.84rem;
	line-height: 1.45;
}

.admin-log-nav__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 100%;
	padding: 0.85rem 0.95rem;
	border-radius: 0.65rem;
	border: 1px solid rgba(180, 148, 110, 0.22);
	background: rgba(0, 0, 0, 0.18);
	color: #dac0a3;
	text-decoration: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.admin-log-nav__item:hover,
.admin-log-nav__item:focus-visible {
	border-color: rgba(247, 149, 76, 0.45);
	background: rgba(247, 149, 76, 0.08);
	color: #ffdeb9;
}

.admin-log-nav__item--active {
	border-color: rgba(247, 149, 76, 0.55);
	background: rgba(247, 149, 76, 0.14);
	box-shadow: inset 0 0 0 1px rgba(247, 149, 76, 0.12);
}

.admin-log-nav__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.55rem;
	background: rgba(247, 149, 76, 0.14);
	color: #f7954c;
	flex-shrink: 0;
	font-size: 1.15rem;
}

.admin-log-nav__item--active .admin-log-nav__icon {
	background: rgba(247, 149, 76, 0.24);
	color: #ffdeb9;
}

.admin-log-nav__body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.admin-log-nav__title {
	color: #ffdeb9;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.25;
}

.admin-log-nav__meta {
	color: #8f7354;
	font-size: 0.72rem;
	line-height: 1.2;
	word-break: break-all;
}

.admin-log-nav__active-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	margin-left: auto;
	border-radius: 999px;
	background: rgba(89, 187, 125, 0.18);
	color: #7bc67e;
	flex-shrink: 0;
}

.admin-log-view__hero {
	padding: 1rem 1.15rem;
}

.admin-log-view__header {
	align-items: center;
}

.admin-log-view__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.65rem;
	background: rgba(247, 149, 76, 0.14);
	color: #f7954c;
	font-size: 1.35rem;
}

.admin-log-view__title {
	color: #ffdeb9;
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

.admin-log-empty__icon {
	font-size: 2rem;
	color: #8f7354;
	opacity: 0.85;
}

.admin-log-table-wrap {
	max-height: min(70vh, 920px);
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: rgba(180, 148, 110, 0.45) transparent;
}

.admin-log-table-wrap::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.admin-log-table-wrap::-webkit-scrollbar-thumb {
	background: rgba(180, 148, 110, 0.45);
	border-radius: 999px;
}

.admin-log-table thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	background: #492f1f;
	box-shadow: 0 1px 0 rgba(180, 148, 110, 0.2);
}

.admin-log-table__cell {
	vertical-align: top;
	max-width: 18rem;
}

@media (max-width: 575.98px) {
	.admin-log-nav__item {
		padding: 0.75rem 0.8rem;
	}
}

/* Admin — create items */
.admin-createitems__hero-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.65rem;
	background: rgba(247, 149, 76, 0.14);
	color: #f7954c;
	font-size: 1.35rem;
}

.admin-createitems__hero-title {
	color: #ffdeb9;
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0;
}

.admin-createitems__hero-hint,
.admin-createitems__section-hint {
	color: #a89272;
	font-size: 0.88rem;
	line-height: 1.5;
}

.admin-createitems__label {
	color: #c9b8a0;
	font-size: 0.82rem;
	font-weight: 600;
}

.admin-createitems__section-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.15rem;
}

.admin-createitems__section-head .bi {
	color: #f7954c;
}

.admin-createitems-accordion {
	--bs-accordion-bg: transparent;
	--bs-accordion-border-color: transparent;
}

.admin-createitems-accordion__item {
	background: rgba(12, 10, 8, 0.55);
	border: 1px solid rgba(180, 148, 110, 0.24);
	border-radius: 0.65rem;
	overflow: hidden;
}

.admin-createitems-accordion__item + .admin-createitems-accordion__item {
	margin-top: 0.65rem;
}

.admin-createitems-accordion__btn {
	background: rgba(180, 148, 110, 0.08);
	color: #e8dcc8;
	font-weight: 600;
	box-shadow: none;
}

.admin-createitems-accordion__btn:not(.collapsed) {
	background: rgba(180, 148, 110, 0.14);
	color: #ffdeb9;
	box-shadow: inset 0 -1px 0 rgba(180, 148, 110, 0.2);
}

.admin-createitems-accordion__btn::after {
	filter: brightness(1.35);
}

.admin-createitems-accordion__btn:focus {
	box-shadow: 0 0 0 0.2rem rgba(247, 149, 76, 0.18);
}

.admin-createitems-accordion .accordion-body {
	padding: 1rem 1.15rem;
}

.admin-createitems-bonus-row:last-child {
	margin-bottom: 0 !important;
}

@media (max-width: 575.98px) {
	.admin-createitems .d-flex.flex-wrap.gap-2.justify-content-end .btn {
		width: 100%;
		justify-content: center;
	}
}

.support-report-profile__id {
	background-color: rgba(0, 0, 0, 0.25);
	color: #ffdeb9;
	border: 1px solid #69533d;
	font-weight: 600;
}

.support-report-profile .card.support-report-profile__hero,
.support-report-profile .card.support-report-profile__message {
	background-color: #352418;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.support-report-profile .card.support-report-profile__message {
	border-top: 1px solid #69533d;
}

.support-report-profile .card.support-report-profile__hero > .card-body,
.support-report-profile .card.support-report-profile__message > .card-body {
	padding: 0;
	color: #b4946e;
}

.support-report-profile .card.support-report-profile__message > .card-header {
	padding: 0.75rem 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	color: #ffdeb9;
	font-weight: 600;
}

.support-report-profile__divider {
	border-color: #69533d;
	opacity: 1;
}

.support-report-profile__header {
	flex-wrap: nowrap;
}

.support-report-profile__identity {
	min-width: 0;
}

.support-report-profile__actions {
	align-self: center;
}

.support-report-profile__avatar {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #4a3828 0%, #281c14 100%);
	border: 2px solid #69533d;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	flex-shrink: 0;
}

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

.support-report-profile__name {
	color: #ffdeb9;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
	word-break: break-word;
}

.support-report-profile__account {
	color: #b4946e;
	font-size: 0.95rem;
}

.support-report-profile__status {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.35em 0.75em;
	border: 1px solid transparent;
}

.support-report-profile__status--new {
	background-color: rgba(255, 193, 7, 0.15);
	color: #ffc107;
	border-color: rgba(255, 193, 7, 0.35);
}

.support-report-profile__status--read {
	background-color: rgba(13, 202, 240, 0.12);
	color: #6edff6;
	border-color: rgba(13, 202, 240, 0.3);
}

.support-report-profile__status--closed {
	background-color: rgba(220, 53, 69, 0.12);
	color: #ea868f;
	border-color: rgba(220, 53, 69, 0.3);
}

.support-report-profile__meta-item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.5rem;
	height: 100%;
	width: 100%;
	padding: 0.65rem 0.75rem;
	border-radius: 0.5rem;
	background-color: rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(105, 83, 61, 0.45);
}

.support-report-profile__meta-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	min-width: 0;
}

.support-report-profile__meta-body {
	width: 100%;
	min-width: 0;
}

.support-report-profile__meta-icon {
	width: 2rem;
	height: 2rem;
	border-radius: 0.45rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.2);
	color: #ffdeb9;
	flex-shrink: 0;
}

.support-report-profile__meta-label {
	color: #8f7354;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0;
	line-height: 1.2;
}

.support-report-profile__meta-value {
	color: #ffdeb9;
	font-weight: 600;
	line-height: 1.25;
}

.support-report-profile__meta-sub {
	color: #b4946e;
	font-size: 0.85rem;
	line-height: 1.2;
}

.support-report-profile__message-text {
	white-space: pre-wrap;
	word-wrap: break-word;
	color: #ffdeb9;
	line-height: 1.6;
}

@media (max-width: 767.98px) {
	.support-report-profile__avatar {
		width: 3.75rem;
		height: 3.75rem;
	}

	.support-report-profile__avatar img {
		width: 100%;
		height: 100%;
	}

	.support-report-profile__name {
		font-size: 1.15rem;
	}
}

/* ------------------------------------------------------------------ */
/* Ranking pages — players / guilds                                    */
/* ------------------------------------------------------------------ */

.ranking-page__search {
	margin-bottom: 1rem;
	max-width: 32rem;
}

.ranking-page__search-input {
	background-color: #281c14;
	border: 1px solid #69533d;
	color: #b4946e;
	border-radius: 10px;
	margin: 0 !important;
	padding: 0.5rem 0.75rem;
	line-height: 1.5;
}

.ranking-page__search-input:focus {
	background-color: #281c14;
	border-color: #927152;
	color: #dac0a3;
	box-shadow: none;
}

.ranking-page__search-input::placeholder {
	color: rgba(180, 148, 110, 0.75);
}

[data-ranking-footer].is-filtered .ranking-page__pagination {
	display: none !important;
}

.ranking-page__tabs {
	border-bottom-color: rgba(180, 148, 110, 0.25);
}

.ranking-page__tabs .nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #b4946e;
}

.ranking-page__tabs .nav-link.active {
	color: #ffdeb9;
}

.ranking-page__tabs .nav-link img {
	display: block;
}

.ranking-page__rank-cell {
	white-space: nowrap;
	font-weight: 700;
	color: #dac0a3;
}

.ranking-page__rank-cell .fa-trophy {
	margin-right: 0.25rem;
}

.ranking-page__rank-num {
	display: inline-block;
	min-width: 1.5rem;
}

.ranking-page__name-cell {
	font-weight: 600;
	color: #ffdeb9;
}

.ranking-page__col-level,
.ranking-page__col-exp {
	white-space: nowrap;
}

.ranking-page__empty {
	padding: 1.5rem !important;
	text-align: center;
	color: #b4946e;
}

.ranking-page__meta {
	color: #b4946e;
}

.ranking-page__footer {
	text-align: center;
}

.ranking-page__pagination {
	display: flex;
	justify-content: center;
	width: 100%;
}

.ranking-page__pagination .pagination {
	justify-content: center;
	flex-wrap: wrap;
}

.ranking-page__meta-item + .ranking-page__meta-item::before {
	content: none;
}

@media (min-width: 576px) {
	.ranking-page__meta-item + .ranking-page__meta-item::before {
		content: '·';
		margin-right: 0.5rem;
		margin-left: 0.25rem;
	}
}

.ranking-page__pagination .page-link {
	background: rgba(73, 47, 31, 0.55);
	border-color: rgba(180, 148, 110, 0.25);
	color: #dac0a3;
}

.ranking-page__pagination .page-item.active .page-link,
.ranking-page__pagination .page-link:hover,
.ranking-page__pagination .page-link:focus {
	background: rgba(180, 148, 110, 0.2);
	border-color: rgba(180, 148, 110, 0.35);
	color: #ffdeb9;
}

.ranking-page__pagination .page-item.disabled .page-link {
	background: transparent;
	border-color: transparent;
	color: #b4946e;
}

.ranking-page__ellipsis {
	pointer-events: none;
}

/* Download page — public */
.download-page__section + .download-page__section {
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(180, 148, 110, 0.22);
}

.download-page__lead {
	color: #c9b8a0;
	font-size: 0.92rem;
	line-height: 1.55;
	margin-bottom: 1rem;
}

.download-page__table-wrap {
	border: 1px solid rgba(180, 148, 110, 0.22);
	border-radius: 0.5rem;
	overflow: hidden;
}

.download-page__table {
	margin-bottom: 0;
}

.download-page__col-num {
	width: 3.5rem;
}

.download-page__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
}

.download-page__req-item {
	background: rgba(12, 10, 8, 0.45);
	border: 1px solid rgba(180, 148, 110, 0.22);
	border-radius: 0.5rem;
	padding: 0.85rem 0.95rem;
}

.download-page__req-head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.45rem;
}

.download-page__req-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 0.35rem;
	background: rgba(180, 148, 110, 0.15);
	color: #f7954c;
	flex-shrink: 0;
}

.download-page__req-label {
	color: #b4946e;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.download-page__req-value {
	color: #e8dcc8;
	font-size: 0.88rem;
	line-height: 1.45;
}

.download-page__steps,
.download-page__tips-list {
	margin: 0;
	padding-left: 1.25rem;
	color: #dac0a3;
	font-size: 0.92rem;
	line-height: 1.6;
}

.download-page__steps li + li,
.download-page__tips-list li + li {
	margin-top: 0.45rem;
}

@media (max-width: 575.98px) {
	.download-page__table thead th:last-child,
	.download-page__table tbody td:last-child {
		text-align: left !important;
	}

	.download-page__btn {
		width: 100%;
		justify-content: center;
	}
}

/* Download admin panel + generic admin page panel */
.download-admin-panel,
.admin-page-panel {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.download-admin-panel .card,
.admin-page-panel .card {
	background: rgba(12, 10, 8, 0.55);
	border: 1px solid rgba(180, 148, 110, 0.24);
	border-radius: 0.65rem;
}

.admin-page-panel__hero > .card-body,
.admin-page-panel__card > .card-body {
	padding: 1rem 1.15rem;
}

.admin-page-panel__card > .card-header {
	background: rgba(180, 148, 110, 0.08);
	border-bottom: 1px solid rgba(180, 148, 110, 0.2);
	color: #e8dcc8;
	font-weight: 600;
}

.admin-page-panel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.65rem;
	background: rgba(247, 149, 76, 0.14);
	color: #f7954c;
	font-size: 1.35rem;
}

.admin-page-panel__title {
	color: #ffdeb9;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
}

.admin-page-panel__desc {
	color: #c9b8a0;
	font-size: 0.88rem;
	line-height: 1.45;
}

.admin-page-panel__count {
	background: rgba(247, 149, 76, 0.18);
	color: #ffdeb9;
	border: 1px solid rgba(247, 149, 76, 0.28);
}

.admin-page-panel__header {
	align-items: flex-start;
}

@media (max-width: 767.98px) {
	.admin-page-panel__header {
		align-items: flex-start !important;
	}
}

.download-admin-panel__hero > .card-body,
.download-admin-panel__card > .card-body {
	padding: 1rem 1.15rem;
}

.download-admin-panel__card > .card-header {
	background: rgba(180, 148, 110, 0.08);
	border-bottom: 1px solid rgba(180, 148, 110, 0.2);
	color: #e8dcc8;
	font-weight: 600;
}

.download-admin-panel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.65rem;
	background: rgba(247, 149, 76, 0.14);
	color: #f7954c;
	font-size: 1.35rem;
}

.download-admin-panel__title {
	color: #ffdeb9;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
}

.download-admin-panel__desc {
	color: #c9b8a0;
	font-size: 0.88rem;
	line-height: 1.45;
}

.download-admin-panel__count {
	background: rgba(247, 149, 76, 0.18);
	color: #ffdeb9;
	border: 1px solid rgba(247, 149, 76, 0.28);
}

.download-admin-panel__divider {
	border-color: rgba(180, 148, 110, 0.22);
	opacity: 1;
}

.download-admin-panel__meta-item {
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(180, 148, 110, 0.18);
	border-radius: 0.5rem;
	padding: 0.75rem 0.85rem;
}

.download-admin-panel__meta-head {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.35rem;
}

.download-admin-panel__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 0.35rem;
	background: rgba(180, 148, 110, 0.12);
	color: #f7954c;
	flex-shrink: 0;
}

.download-admin-panel__meta-label {
	color: #b4946e;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.download-admin-panel__meta-value {
	color: #e8dcc8;
	font-size: 0.9rem;
	line-height: 1.4;
	word-break: break-word;
}

.download-admin-panel__public-link {
	color: #f7954c;
	text-decoration: none;
	font-size: 0.82rem;
}

.download-admin-panel__public-link:hover {
	text-decoration: underline;
}

.download-admin-panel__table-link {
	color: #f7954c;
	text-decoration: none;
	word-break: break-all;
}

.download-admin-panel__table-link:hover {
	text-decoration: underline;
}

.download-page__type-badge {
	background: rgba(247, 149, 76, 0.16);
	color: #ffdeb9;
	border: 1px solid rgba(247, 149, 76, 0.28);
	font-size: 0.72rem;
	font-weight: 600;
}

.download-admin-panel__type {
	background: rgba(180, 148, 110, 0.16);
	color: #e8dcc8;
	border: 1px solid rgba(180, 148, 110, 0.24);
	font-size: 0.72rem;
}

@media (max-width: 767.98px) {
	.download-admin-panel__header {
		align-items: flex-start !important;
	}
}

