.gb-banner {
	background-color: var(--gb-banner-bg, #22415e);
	border-radius: 12px;
	color: #fff;
	overflow: hidden;
	padding: 24px;
}

.gb-banner__row--logo {
	align-items: center;
	display: flex;
	margin-bottom: 12px;
}

.gb-banner__logo {
	display: block;
	height: auto;
	max-width: 220px;
	width: 30%;
}

.gb-banner__row--title {
	margin-bottom: 12px;
	min-width: 0;
	width: 100%;
}

.gb-banner__row--subtitle {
	margin-bottom: 16px;
	min-width: 0;
}

.gb-banner__row--action {
	display: flex;
}

.gb-banner__title {
	color: var(--gb-title-color, #fff);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.15;
	margin: 0;
	overflow-wrap: break-word;
	text-wrap: pretty;
}

.gb-banner__subtitle {
	color: var(--gb-subtitle-color, #fff);
	font-size: 0.95rem;
	margin: 0;
	opacity: 0.92;
}

.gb-banner__link {
	align-items: center;
	background: var(--gb-button-bg-color, #c26a1b);
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	color: var(--gb-link-text-color, #fff);
	display: inline-flex;
	font-weight: 600;
	gap: 8px;
	padding: 10px 14px;
	text-decoration: none;
	transition: filter 0.2s ease-in;
	white-space: nowrap;
}

.gb-banner__link:hover,
.gb-banner__link:focus-visible {
	filter: brightness(1.08);
}

.gb-banner__icon {
	display: inline-flex;
	line-height: 0;
}

.gb-banner__icon svg {
	height: 20px;
	width: 20px;
}

@media (max-width: 575.98px) {
	.gb-banner {
		padding: 14px;
	}

	.gb-banner__logo {
		max-width: 100%;
		width: 100%;
	}

	.gb-banner__title {
		font-size: 1.45rem;
	}

	.gb-banner__row--subtitle {
		margin-bottom: 12px;
	}

	.gb-banner__link {
		justify-content: center;
		width: 100%;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.gb-banner__logo {
		width: 45%;
	}

	.gb-banner__title {
		font-size: 1.7rem;
	}
}

@media (min-width: 768px) {
	.gb-banner {
		display: grid;
		grid-template-areas:
			"title logo"
			"subtitle action";
		grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
		column-gap: 24px;
		row-gap: 12px;
		align-items: center;
	}

	.gb-banner__row--logo {
		grid-area: logo;
		justify-content: center;
		margin-bottom: 0;
		width: 100%;
	}

	.gb-banner__row--title {
		grid-area: title;
		margin-bottom: 0;
	}

	.gb-banner__row--subtitle {
		grid-area: subtitle;
		margin-bottom: 0;
	}

	.gb-banner__row--action {
		grid-area: action;
		justify-content: center;
		width: 100%;
	}

	.gb-banner__logo {
		max-width: min(100%, 360px);
		width: 100%;
	}

	.gb-banner__link {
		justify-content: center;
		max-width: 100%;
	}

	.gb-banner__title {
		font-size: clamp(1.85rem, 2.4vw, 2.4rem);
	}

	.gb-banner__subtitle {
		font-size: clamp(0.95rem, 1.15vw, 1.05rem);
	}
}

@media (min-width: 768px) and (max-width: 1023.98px) {
	.gb-banner {
		grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
		column-gap: 20px;
	}

	.gb-banner__logo {
		max-width: min(100%, 280px);
	}

	.gb-banner__title {
		font-size: clamp(1.75rem, 2.2vw, 2rem);
	}
}

@media (min-width: 1024px) {
	.gb-banner {
		grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
	}

	.gb-banner__logo {
		max-width: min(100%, 360px);
	}

	.gb-banner__title {
		font-size: clamp(2rem, 2.2vw, 2.4rem);
	}
}