/* Footer layout and footer links */
.daily-footer {
	background: var(--daily-logo-blue-dark);
	color: #dbe8ef;
	margin-top: 28px;
}

.daily-footer__inner {
	display: grid;
	gap: 28px;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	margin: 0 auto;
	max-width: 1320px;
	padding: 34px 24px;
}

.daily-footer h2 {
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	margin: 0 0 14px;
}

.daily-footer__brand h2 {
	color: #fff;
	font-size: 28px;
	line-height: 1.1;
}

.daily-footer__brand h2::after {
	background: var(--daily-logo-red);
	content: "";
	display: block;
	height: 4px;
	margin-top: 10px;
	width: 76px;
}

.daily-footer p {
	line-height: 1.7;
	margin: 0;
}

.daily-footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.daily-footer-social__link {
	align-items: center;
	background: transparent;
	border-radius: 50%;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	text-decoration: none;
	transition: transform 160ms ease, filter 160ms ease;
	width: 42px;
}

.daily-footer-social__link svg {
	display: block;
	fill: currentColor;
	height: 22px;
	width: 22px;
}

.daily-footer-social__link:hover,
.daily-footer-social__link:focus {
	filter: brightness(1.12);
	transform: translateY(-2px);
}

.daily-footer .daily-footer-social__link--facebook {
	color: #1877f2;
}

.daily-footer-social__link--facebook:hover,
.daily-footer-social__link--facebook:focus {
	color: #1877f2;
}

.daily-footer .daily-footer-social__link--instagram {
	color: #e4405f;
}

.daily-footer-social__link--instagram:hover,
.daily-footer-social__link--instagram:focus {
	color: #e4405f;
}

.daily-footer .daily-footer-social__link--youtube {
	color: #ff0000;
}

.daily-footer-social__link--youtube:hover,
.daily-footer-social__link--youtube:focus {
	color: #ff0000;
}

.daily-footer .daily-footer-social__link--x {
	color: #fff;
}

.daily-footer-social__link--x:hover,
.daily-footer-social__link--x:focus {
	color: #fff;
}

.daily-footer .daily-footer-social__link--whatsapp {
	color: #25d366;
}

.daily-footer-social__link--whatsapp:hover,
.daily-footer-social__link--whatsapp:focus {
	color: #25d366;
}

.daily-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.daily-footer li + li {
	margin-top: 8px;
}

.daily-footer a {
	color: #dbe8ef;
	text-decoration: none;
}

.daily-footer a:hover,
.daily-footer a:focus {
	color: #fff;
	outline: none;
}

.daily-footer__bottom {
	background: #061f40;
	color: #c7d6df;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	padding: 14px 24px;
}

