/* Zarovnání textů za ikonami v modré části footeru */
.footer-list a {
	display: flex;
	align-items: center;
	gap: 7px;
	transition: color 0.3s ease;
}
.footer-list a:hover {
	color: var(--md-grey) !important;
}
.footer-list i {
	min-width: 20px;
	text-align: center;
}


/* Podélné čáry mezi sloupci v modré části footeru */
.footer-top-bar .row > div.footer-col {
	border-left: 2px solid #fff;
}

.footer-top-bar .row > div.footer-col:last-child {
	border-left: 1px solid rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
		.footer-top-bar .row > div.footer-col {
			border-left: none;
			border-bottom: 1px solid rgba(255,255,255,0.14);
			margin-bottom: 8px;
			padding-bottom: 8px;
		}
		.footer-top-bar .row > div.footer-col:last-child {
			border-bottom: none;
		}
}
/* Drop-shadow pro spodní bílou část footeru */
.footer-bottom-bar {
	background: var(--md-white);
	color: var(--md-blue-dark);
	font-size: 0.55rem;
	padding: 12px 0;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	box-shadow: 0 10px 24px rgba(0,0,0,0.7), 0 0 12px rgba(0,0,0,0.5);
	z-index: 3;
}

@media (max-width: 768px) {
		.footer-bottom-bar {
			font-size: 0.7rem;
			padding: 10px 0;
		}
		.footer-bottom-bar .row > div:first-child {
			justify-content: center !important;
			text-align: center;
		}
}
/* Horní lišta footeru s marginem po stranách */
.footer-top-bar {
		background: linear-gradient(-30deg,  var(--md-blue), var(--md-blue-dark));
		color: var(--md-white);
		padding: 24px 0 40px 0;
			margin-left: 50px;
			margin-right: 50px;
		border-radius: 12px;
		position: relative;
			z-index: 1;
		margin-bottom: -28px;
		font-weight: 500;
}

@media (max-width: 768px) {
					.footer-top-bar {
						margin-left: 12px;
						margin-right: 12px;
						border-radius: 8px;
						padding-bottom: 32px;
						margin-bottom: -18px;
					}
/* Tloušťka písma pro text v modré části */
.footer-list a {
	font-weight: 500;
}
}

/* Sticky footer - vždy dole na stránce */
.footer-sticky {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100vw;
	z-index: 100;
	box-shadow: 0 -2px 16px rgba(0,0,0,0.07);
}

@media (max-width: 768px) {
	.footer-sticky {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100vw;
		font-size: 0.8rem;
	}
}
