.open-work-preview-section {
	padding: 120px 20px;
	background: #ffffff;
}

.open-work-preview-container {
	max-width: 1200px;
	margin: 0 auto;
}

.open-work-preview-heading {
	max-width: 760px;
	margin: 0 auto 60px;
	text-align: center;
}

.open-work-preview-kicker {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff4f93;
}

.open-work-preview-heading h2 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
	font-weight: 800;
	color: #07143b;
}

.open-work-preview-heading p {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.7;
	color: #4c556a;
}

.open-work-preview-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.open-work-preview-card {
	padding: 30px 24px;
	border-radius: 24px;
	background: #f5f5f3;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.open-work-preview-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(7,20,59,0.08);
}

.open-work-preview-card h3 {
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 12px;
	color: #07143b;
}

.open-work-preview-card p {
	font-size: 0.98rem;
	line-height: 1.7;
	color: #4c556a;
	margin-bottom: 16px;
}

.open-work-preview-link {
	font-weight: 700;
	color: #ff4f93;
	text-decoration: none;
}

.open-work-preview-footer {
	margin-top: 40px;
	text-align: center;
}

.open-work-preview-button {
	display: inline-block;
	padding: 14px 28px;
	background: #ff4f93;
	color: white;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.open-work-preview-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.open-work-preview-section {
		padding: 80px 16px;
	}

	.open-work-preview-grid {
		grid-template-columns: 1fr;
	}
}