.sbc-single-section{
	background-image: url('./images/footer_colud_bg.png') ;
	background-position: bottom center;
    background-repeat: repeat-x;
    background-size: contain;
}
.sbc-wrap {
	max-width: 1140px;
	margin: 0 auto;
	padding: 40px 20px;
}

.sbc-archive-header {
	text-align: center;
	margin-bottom: 30px;
}

.sbc-archive-title {
	font-size: 28px;
	margin: 0;
}

/* Grid */
.sbc-grid {
	--sbc-columns: 4;
	display: grid;
	grid-template-columns: repeat(var(--sbc-columns), 1fr);
	gap: 24px 20px;
}

@media (max-width: 900px) {
	.sbc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.sbc-grid {
		grid-template-columns: 1fr;
	}
}

.sbc-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.sbc-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 4px solid var(--sbc-border, #e07a7a);
	background: #f2f2f2;
}

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

.sbc-card:hover .sbc-card__image img {
	transform: scale(1.05);
}

.sbc-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(45deg, #eee, #eee 10px, #f6f6f6 10px, #f6f6f6 20px);
}

.sbc-card__title {
	margin-top: 10px;
	font-weight: 700;
	color: #1a7db0;
	text-align: center;
	font-size: 15px;
}

.sbc-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #888;
}

/* Single */
.sbc-hero img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	display: block;
}

.sbc-single__title {
	font-size: 30px;
	margin-bottom: 6px;
}

.sbc-underline {
	display: block;
	width: 90px;
	height: 6px;
	border-radius: 3px;
	margin-bottom: 20px;
}

.sbc-underline--red { background: #e78888; }
.sbc-underline--green { background: #a3c95a; }
.sbc-underline--blue { background: #6f8fb0; }

.sbc-single__desc {
	margin-bottom: 30px;
	line-height: 1.6;
}

.sbc-single__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

@media (max-width: 780px) {
	.sbc-single__columns {
		grid-template-columns: 1fr;
	}
}

.sbc-contact-list {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.sbc-contact-list li {
	margin-bottom: 8px;
}

.sbc-back-btn {
	display: inline-block;
	background: #e35b5b;
	color: #fff !important;
	padding: 8px 18px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
}

.sbc-back-btn:hover {
	background: #cc4747;
	color: #fff;
}
