/* ISN Footer bar
 * Full-width bar with centered content. Title + subtext on the left,
 * call-to-action button aligned to the right. Stacks on smaller screens.
 * Colours match the promotional component / hulpkaart widget.
 */

.isn-footer-bar {
	background-color: rgba(32, 7, 152, .1);
	display: flex;
	justify-content: center;
	margin-top: 40px;
	width: 100%;
}

/* Placed before the theme footer: cancel the footer's 40px top margin
 * so the bar sits seamlessly against it. */
.isn-footer-bar--before {
	margin-bottom: -40px;
}

/* Placed after the theme footer: no spacing. */
.isn-footer-bar--after {
	margin-top: 0;
}

.isn-footer-bar__container {
	align-items: center;
	box-sizing: border-box;
	column-gap: 40px;
	display: flex;
	justify-content: space-between;
	max-width: 1180px;
	padding: 40px 20px;
	width: 100%;
}

.isn-footer-bar__content {
	display: flex;
	flex-direction: column;
	row-gap: 12px;
}

.isn-footer-bar__title {
	color: #200798;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .15px;
	line-height: 32px;
	margin: 0;
}

.isn-footer-bar__text {
	color: #2d3648;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: .15px;
	line-height: 25px;
	margin: 0;
}

.isn-footer-bar__action {
	flex-shrink: 0;
}

.isn-footer-bar__button {
	align-items: center;
	background-color: #200798;
	border-radius: 10px;
	color: #fff !important;
	column-gap: 8px;
	display: inline-flex;
	font-feature-settings: "calt" off;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	justify-content: center;
	letter-spacing: -.16px;
	line-height: 24px;
	padding: 14px 19px;
	text-align: center;
	text-decoration: none !important;
	transition: all .3s ease-in-out;
	white-space: nowrap;
}

.isn-footer-bar__button:hover,
.isn-footer-bar__button:focus {
	background-color: #ee792f;
	color: #200798 !important;
}

.isn-footer-bar__button .dashicons {
	font-size: 18px;
	height: 18px;
	line-height: 18px;
	width: 18px;
}

@media (max-width: 768px) {
	.isn-footer-bar__container {
		align-items: flex-start;
		flex-direction: column;
		row-gap: 24px;
	}

	.isn-footer-bar__action {
		width: 100%;
	}

	.isn-footer-bar__button {
		width: 100%;
	}
}
