.osb-section {
	background: #f5f5f7;
	padding: 64px 24px;
	box-sizing: border-box;
}

.osb-inner {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}

.osb-heading {
	font-size: 44px;
	font-weight: 800;
	color: #17181a;
	margin: 0 0 32px;
	line-height: 1.2;
}

.osb-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.osb-card {
	background: #ffffff;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.osb-image-wrap {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 638 / 532;
	overflow: hidden;
	background: #e5e5e5;
}

.osb-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.osb-card:hover .osb-image-wrap img {
	transform: scale(1.04);
}

.osb-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #a9d3f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.osb-body {
	padding: 24px 28px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.osb-category {
	font-size: 15px;
	color: #9a9a9e;
	margin-bottom: 8px;
}

.osb-title {
	font-size: 24px;
	font-weight: 800;
	color: #17181a;
	margin: 0 0 12px;
}

.osb-desc {
	font-size: 15px;
	line-height: 1.5;
	color: #6c6c70;
	margin: 0 0 24px;
	flex: 1;
}

.osb-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: #4f9bdc;
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	padding: 14px 22px;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.osb-button:hover {
	background: #3d86c6;
	color: #ffffff;
}

.osb-button svg {
	flex-shrink: 0;
}

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

@media (max-width: 700px) {
	.osb-inner {
		padding: 0 16px;
	}
	.osb-grid {
		grid-template-columns: 1fr;
	}
	.osb-heading {
		font-size: 32px;
	}
}
