html {
	min-height: 100%;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-top: 72px;
}
.wrapper {
	flex: 0 0 auto;
}
#footer {
	flex-shrink: 0;
	margin-top: auto;
}
#header-mount {
	display: contents;
}
#main-container {
	background: none;
	padding-bottom: 1.5rem;
}
#header-bottom-row {
	padding-bottom: 1.25rem;
}
.fwb-navbar {
	margin-bottom: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1050;
	width: 100%;
	color:#000;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.fwb-navbar .navbar-inner {
	min-height: 72px;
	padding: 0 20px;
	background: transparent;
	border: none;
	border-radius: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.fwb-navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.fwb-navbar .brand {
	float: none;
	margin: 0;
	padding: 10px 0;
	display: flex;
	align-items: center;
}
.fwb-navbar .brand img {
	height: 52px;
	width: auto;
	display: block;
	object-fit: contain;
}
.fwb-navbar .btn-navbar {
	display: none;
	margin: 0;
	padding: 8px 12px;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 4px;
}
.fwb-navbar .btn-navbar .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: #000;
	border-radius: 1px;
	margin: 4px 0;
}
@media (min-width: 768px) {
	.fwb-navbar .nav-collapse,
	.fwb-navbar .nav-collapse.collapse {
		overflow: visible;
		height: auto !important;
	}
}
.fwb-navbar .nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 0.2em;
	margin: 0;
	list-style: none;
	float: none;
}
.fwb-navbar .nav > li {
	float: none;
	margin: 0;
}
.fwb-navbar .nav > li > a {
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 0.6em 0.75em;
	text-decoration: none;
	font-family: 'Ubuntu', Arial, serif;
	font-size: 16px;
	display: block;
}
.fwb-navbar .nav > li > a:hover,
.fwb-navbar .nav > li.active > a {
	color: #e85a5c;
}
@media (max-width: 767px) {
	body {
		padding-top: 56px;
	}
	.fwb-navbar {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1050;
	}
	.fwb-navbar .navbar-inner {
		min-height: 56px;
		padding: 0 12px;
	}
	.fwb-navbar .container {
		align-items: center;
	}
	.fwb-navbar .brand {
		order: 1;
		margin-right: auto;
	}
	.fwb-navbar .btn-navbar {
		order: 2;
		display: block;
		margin-left: auto;
	}
	.fwb-navbar .brand img {
		height: 40px;
	}
	.fwb-navbar .nav-collapse {
		order: 3;
		width: 100%;
		clear: both;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.3s ease-out;
		border-top: none;
	}
	.fwb-navbar .nav-collapse.in {
		max-height: 400px;
		border-top: 1px solid rgba(255,255,255,0.2);
		padding: 12px 0;
	}
	.fwb-navbar .nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0;
	}
	.fwb-navbar .nav > li > a {
		padding: 12px 0;
		border-bottom: 1px solid rgba(255,255,255,0.15);
	}
}
#header-bottom-row .moduletable-wrapper {
	background-color: #fff;
	color: #333;
	padding-left: 15px;
	padding-right: 15px;
    border-radius: 5px;
}
#header-bottom-row .module_title,
#header-bottom-row h3 {
	color: #333;
	border-bottom: 4px solid #e85a5c;
	display: inline-block;
	padding-bottom: 6px;
	margin-bottom: 1em;
}
#header-bottom-row .item_fulltext,
#header-bottom-row .mod-custom,
#header-bottom-row .item_fulltext p {
	color: #9c9c9c;
}
#header-bottom-row .item_fulltext a {
	color: #9c9c9c;
}
#copyright-menu li a,
#copyright-menu a {
	color: #333;
}
#copyright-menu a:hover,
#copyright-menu li a:hover {
	color: #c00;
}
.contact-page .contact-miscinfo {
	margin-bottom: 1.5em;
}
.contact-page .contact-intro {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	margin: 0 0 0.75em 0;
	max-width: 56em;
}
.contact-page .contact-disclaimer {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #555;
	margin: 0;
	max-width: 56em;
}
.contact-page .contact_details {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em 2em;
	margin-bottom: 2em;
	padding: 1em 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}
.contact-page .contact-detail {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
}
.contact-page .contact-detail-label {
	font-size: 0.8rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #555;
}
.contact-page .contact-detail-value {
	font-size: 1.05rem;
	color: #333;
	text-decoration: none;
}
.contact-page .contact-detail-value:hover {
	color: #e85a5c;
}
.contact-email-btn {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	text-decoration: underline;
}
.contact-email-btn:hover {
	color: #e85a5c;
}
.contact-form-wrapper .contact-form-hint {
	font-size: 0.9rem;
	color: #555;
	margin: 0 0 1em 0;
}
.contact-form-wrapper .contact-form-hint .star {
	color: #c00;
}
#contact-form-message {
	margin-bottom: 1em;
	font-size: 0.95rem;
	line-height: 1.4;
}
.contact-form-wrapper .contact-success,
.contact-form-wrapper .contact-error {
	margin: 0;
	padding: 0.5em 0;
}
.contact-form-wrapper .contact-form {
	max-width: 42em;
}
.contact-form-wrapper .contact-form fieldset {
	margin: 0;
	padding: 0;
	border: none;
	min-width: 0;
}
.contact-form-wrapper .contact-form-row {
	margin-bottom: 1.25em;
	margin-left: 0;
	margin-right: 0;
}
.contact-form-wrapper .contact-form-row-half {
	display: inline-block;
	width: calc(50% - 0.5em);
	vertical-align: top;
	box-sizing: border-box;
	margin-left: 0;
}
.contact-form-wrapper .contact-form-row-half:first-of-type {
	margin-right: 0.5em;
}
.contact-form-wrapper .contact-form-row-half + .contact-form-row-half {
	margin-right: 0;
	margin-left: 0.5em;
}
.contact-form-wrapper .contact-form-row-captcha .captcha-question {
	display: inline-block;
	margin-right: 0.5em;
}
.contact-form-wrapper .contact-form-row-captcha #captcha_answer {
	width: 4em;
	display: inline-block;
	vertical-align: middle;
}
@media (max-width: 480px) {
	.contact-form-wrapper .contact-form-row-half {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}
.contact-form-wrapper label {
	display: block;
	margin-bottom: 0.35em;
	font-size: 0.95rem;
	font-weight: bold;
	color: #333;
}
.contact-form-wrapper label .star {
	color: #c00;
}
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper textarea {
	width: 100%;
	padding: 0.5em 0.75em;
	font-size: 1rem;
	line-height: 1.4;
	font-family: inherit;
	color: #333;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 4px;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
	color: #888;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
	outline: none;
	border-color: #c9a227;
	box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.25);
}
.contact-form-wrapper textarea {
	min-height: 140px;
	resize: vertical;
}
.contact-form-wrapper .contact-form-submit {
	margin-top: 1.5em;
	margin-bottom: 0;
}
.contact-form-wrapper .contact-submit {
	display: inline-block;
	padding: 0.65em 1.5em;
	font-size: 1rem;
	font-weight: bold;
	text-transform: none;
	letter-spacing: 0.02em;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s;
}
.contact-form-wrapper .contact-submit:hover {
	background: #e85a5c;
}
@media (max-width: 767px) {
	#header-bottom-row .moduletable-wrapper {
		padding-left: 12px;
		padding-right: 12px;
		box-sizing: border-box;
		max-width: 100%;
		border-radius: 5px;
	}
	#header-bottom-row .mod-custom,
	#header-bottom-row .item_fulltext,
	#header-bottom-row .contact-page {
		max-width: 100%;
		overflow-x: hidden;
	}
	#header-bottom-row .item_fulltext table,
	#header-bottom-row .mod-custom table {
		max-width: 100%;
		display: block;
		overflow-x: auto;
	}
	#header-bottom-row .item_fulltext table td,
	#header-bottom-row .mod-custom table td {
		display: table-cell;
	}
	#header-bottom-row .item_fulltext img,
	#header-bottom-row .mod-custom img {
		max-width: 100%;
		height: auto;
	}
	.contact-page .contact-intro,
	.contact-page .contact-disclaimer {
		max-width: 100%;
	}
	.contact-form-wrapper .contact-form {
		max-width: 100%;
	}
}
@media (max-width: 480px) {
	#header-bottom-row .moduletable-wrapper {
		padding-left: 10px;
		padding-right: 10px;
		border-radius: 5px;
	}
}
.besonderes-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.besonderes-gallery-item {
	cursor: pointer;
	overflow: hidden;
	border-radius: 4px;
	background: #f0f0f0;
	display: flex;
	flex-direction: column;
}
.besonderes-gallery-title {
	display: block;
	padding: 6px 8px;
	font-size: 0.85rem;
	color: #333;
	text-align: center;
	line-height: 1.2;
}
.besonderes-gallery-item:hover .besonderes-thumb {
	opacity: 0.9;
	transform: scale(1.02);
}
.besonderes-thumb {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	transition: opacity 0.2s, transform 0.2s;
}
.besonderes-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}
.besonderes-modal.besonderes-modal-open {
	opacity: 1;
	visibility: visible;
}
.besonderes-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10002;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s;
}
.besonderes-modal-close:hover {
	background: rgba(255, 255, 255, 0.35);
}
.besonderes-modal-prev,
.besonderes-modal-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10002;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s;
}
.besonderes-modal-prev:hover,
.besonderes-modal-next:hover {
	background: rgba(255, 255, 255, 0.35);
}
.besonderes-modal-prev {
	left: 12px;
}
.besonderes-modal-next {
	right: 12px;
}
.besonderes-modal-inner {
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.besonderes-modal-inner .besonderes-modal-img {
	max-width: 100%;
	max-height: calc(90vh - 48px);
	width: auto;
	height: auto;
	object-fit: contain;
}
.besonderes-modal-title {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
}
@media (max-width: 767px) {
	.besonderes-gallery {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 8px;
	}
}
.presse-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.presse-gallery-item {
	cursor: pointer;
	overflow: hidden;
	border-radius: 4px;
	background: #f0f0f0;
	display: flex;
	flex-direction: column;
}
.presse-gallery-title {
	display: block;
	padding: 8px 10px;
	font-size: 0.9rem;
	color: #333;
	text-align: center;
	line-height: 1.2;
}
.presse-gallery-item:hover .presse-thumb {
	opacity: 0.92;
}
.presse-thumb {
	width: 100%;
	object-fit: contain;
	background: #f5f5f5;
	transition: opacity 0.2s;
}
.presse-thumb.presse-thumb-pdf {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	background: #e0e0e0;
	color: #666;
	font-size: 1rem;
	font-weight: 500;
}
.presse-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}
.presse-modal.presse-modal-open {
	opacity: 1;
	visibility: visible;
}
.presse-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10002;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s;
}
.presse-modal-close:hover {
	background: rgba(255, 255, 255, 0.35);
}
.presse-modal-prev,
.presse-modal-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10002;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s;
}
.presse-modal-prev:hover,
.presse-modal-next:hover {
	background: rgba(255, 255, 255, 0.35);
}
.presse-modal-prev {
	left: 12px;
}
.presse-modal-next {
	right: 12px;
}
.presse-modal-inner {
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.presse-modal-inner .presse-modal-img {
	max-width: 100%;
	max-height: calc(90vh - 100px);
	width: auto;
	height: auto;
	object-fit: contain;
}
.presse-modal-pdf-wrap {
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.presse-modal-pdf {
	width: min(85vw, 720px);
	height: min(80vh, 600px);
	border: none;
	background: #fff;
}
.presse-modal-pdf-link {
	color: #fff;
	text-decoration: underline;
}
.presse-modal-title {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
}
.presse-modal-external {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
	font-size: 0.9rem;
}
@media (max-width: 767px) {
	.presse-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}
@media (max-width: 480px) {
	.presse-gallery {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
.galerie-loading {
	padding: 2rem;
	text-align: center;
	color: #666;
}
.galerie-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	background: rgba(220, 220, 220, 0.6);
	padding: 24px;
	border-radius: 4px;
}
.galerie-grid-item {
	position: relative;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	padding: 0;
	border-radius: 0;
}
.galerie-grid-item::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url(../img/Bilder/franz-weber-berg-gallerie-background.jpg);
	background-size: cover;
	background-position: center;
}
.galerie-grid-item .galerie-spotlight,
.galerie-grid-item .galerie-item-num,
.galerie-grid-item .galerie-item-frame {
	position: relative;
	z-index: 1;
}
.galerie-spotlight {
	width: 100%;
	height: 18px;
	background: linear-gradient(180deg, rgba(180, 210, 230, 0.9) 0%, rgba(180, 210, 230, 0.3) 70%, transparent 100%);
	border-radius: 2px 2px 0 0;
	position: relative;
	box-shadow: 0 0 8px rgba(150, 190, 220, 0.5);
}
.galerie-spotlight::before,
.galerie-spotlight::after {
	content: '';
	position: absolute;
	top: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(200, 220, 240, 0.8);
	box-shadow: 0 0 6px rgba(150, 190, 220, 0.8);
}
.galerie-spotlight::before { left: 15%; }
.galerie-spotlight::after { right: 15%; }
.galerie-item-num {
	position: absolute;
	top: 22px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.95rem;
	font-weight: 600;
	color: #444;
	z-index: 2;
	background: rgba(255, 255, 255, 0.9);
	padding: 2px 8px;
	border-radius: 2px;
}
.galerie-item-frame {
	position: relative;
	width: 65%;
	background: transparent;
	border: transparent;
	border-radius: 2px;
	overflow: hidden;
	margin-top: 4px;
}
.galerie-item-desc {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	font-size: 0.8rem;
	line-height: 1.3;
	color: #fff;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 2;
}
.galerie-grid-item:hover .galerie-item-desc {
	opacity: 1;
}
.galerie-thumb {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
	user-select: none;
	-webkit-user-select: none;
	pointer-events: none;
}
.galerie-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.9);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}
.galerie-modal.galerie-modal-open {
	opacity: 1;
	visibility: visible;
}
.galerie-modal-topbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 48px;
	background: #2a2a2a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	z-index: 10002;
}
.galerie-modal-counter {
	color: #fff;
	font-size: 0.95rem;
}
.galerie-modal-close {
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
}
.galerie-modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
}
.galerie-modal-prev,
.galerie-modal-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10002;
	width: 52px;
	height: 52px;
	padding: 0;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s;
}
.galerie-modal-prev { left: 16px; }
.galerie-modal-next { right: 136px; }
.galerie-modal-prev:hover,
.galerie-modal-next:hover {
	background: rgba(255, 255, 255, 0.3);
}
.galerie-modal-content {
	max-width: calc(100vw - 180px);
	max-height: calc(100vh - 140px);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 24px;
	margin-right: 140px;
}
.galerie-modal-img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: calc(100vh - 200px);
}
.galerie-modal-img {
	max-width: 100%;
	max-height: calc(100vh - 200px);
	width: auto;
	height: auto;
	object-fit: contain;
	user-select: none;
	-webkit-user-select: none;
	transition: opacity 0.35s ease;
}
.galerie-modal-bottombar {
	width: 100%;
	background: #2a2a2a;
	color: #fff;
	padding: 12px 16px;
	font-size: 0.9rem;
	text-align: center;
	margin-top: 0;
}
.galerie-modal-num {
	font-weight: 600;
	margin-right: 8px;
}
.galerie-modal-thumbs {
	position: absolute;
	top: 48px;
	right: 0;
	bottom: 0;
	width: 120px;
	background: #2a2a2a;
	overflow-y: auto;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 10001;
}
.galerie-thumb-btn {
	display: flex;
	flex-direction: column;
	padding: 0;
	border: 2px solid transparent;
	background: #1a1a1a;
	cursor: pointer;
	border-radius: 2px;
	overflow: hidden;
	flex-shrink: 0;
	width: 100%;
}
.galerie-thumb-btn .galerie-thumb-img-wrap {
	width: 100%;
	aspect-ratio: 3/2;
	min-height: 0;
	overflow: hidden;
}
.galerie-thumb-btn img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	user-select: none;
	vertical-align: top;
}
.galerie-thumb-btn .galerie-thumb-num {
	display: block;
	padding: 4px 6px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #fff;
	text-align: center;
	background: #2a2a2a;
}
.galerie-thumb-btn.active {
	border-color: #6ab0e8;
}
.galerie-thumb-btn.active .galerie-thumb-num {
	background: #3a5a7a;
}
@media (max-width: 767px) {
	.galerie-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
		padding: 12px;
	}
	.galerie-modal-thumbs {
		display: none;
	}
	.galerie-modal-content {
		margin: 0 50px;
		max-width: calc(100vw - 100px);
	}
	.galerie-modal-prev { left: 4px; }
	.galerie-modal-next { right: 4px; }
}

#back-top {
	display: block !important;
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
#back-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#back-top a {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	background: rgba(122, 58, 58, 0.5);
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(0,0,0,0.2);
	transition: background 0.2s ease, transform 0.2s ease;
}
#back-top a:hover {
	background: #e85a5c;
	transform: scale(1.05);
}
#back-top span {
	width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	background: none;
	border-radius: 0;
}
#back-top span::before {
	content: "\2191";
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
	#back-top {
		bottom: 1rem;
		right: 1rem;
	}
	#back-top a {
		width: 44px;
		height: 44px;
	}
	#back-top span::before {
		font-size: 18px;
	}
}
