.sgib-section {
	background: linear-gradient(145deg, #173746, #234e62 58%, #2c6177);
	color: #fff;
	padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.sgib-inner {
	width: min(1180px, calc(100% - 2rem));
	margin-inline: auto;
}

.sgib-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.sgib-heading h2 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3rem);
	margin: .2rem 0 .5rem;
}

.sgib-heading p {
	max-width: 760px;
	margin: 0;
}

.sgib-eyebrow {
	color: #f6c35b;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sgib-all,
.sgib-card__button {
	font-weight: 800;
	text-decoration: none;
}

.sgib-all {
	border: 1px solid rgba(255,255,255,.55);
	border-radius: 999px;
	color: #fff;
	padding: .7rem 1rem;
	white-space: nowrap;
}

.sgib-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.sgib-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 15px 38px rgba(0,0,0,.2);
	overflow: hidden;
}

.sgib-card__image {
	display: block;
	position: relative;
	aspect-ratio: 16 / 9;
	background: #dbe5ea;
	overflow: hidden;
}

.sgib-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
}

.sgib-card:hover .sgib-card__image img {
	transform: scale(1.035);
}

.sgib-card__count {
	position: absolute;
	right: .75rem;
	bottom: .75rem;
	background: rgba(17,44,57,.9);
	border-radius: 999px;
	color: #fff;
	font-size: .82rem;
	font-weight: 800;
	padding: .4rem .7rem;
}

.sgib-card__body {
	padding: 1.15rem 1.2rem 1.3rem;
}

.sgib-card__body h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	margin: 0 0 .9rem;
}

.sgib-card__body h3 a {
	color: #173746;
	text-decoration: none;
}

.sgib-card__button {
	color: #23607b;
}

@media (max-width: 780px) {
	.sgib-heading {
		align-items: start;
		flex-direction: column;
		gap: 1rem;
	}

	.sgib-grid {
		grid-template-columns: 1fr;
	}
}

