.open-work-archive-section {
	padding: 90px 20px 110px;
	background: #ffffff;
}

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

.open-work-archive-filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 34px;
	flex-wrap: wrap;
}

.open-work-archive-filter-label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff4f93;
}

.open-work-archive-filter-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.open-work-archive-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 999px;
	background: #f5f5f3;
	color: #4c556a;
	font-size: 0.92rem;
	font-weight: 700;
}

.open-work-archive-pill.active {
	background: #07143b;
	color: #ffffff;
}

.open-work-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

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

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

.open-work-archive-meta {
	margin-bottom: 18px;
}

.open-work-archive-type {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(7, 20, 59, 0.08);
	color: #07143b;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.open-work-archive-type.creative {
	background: rgba(255, 79, 147, 0.12);
	color: #ff4f93;
}

.open-work-archive-card h3 {
	margin: 0 0 12px;
	font-size: 1.28rem;
	line-height: 1.2;
	font-weight: 800;
	color: #07143b;
	letter-spacing: -0.02em;
}

.open-work-archive-card p {
	margin: 0 0 18px;
	font-size: 0.98rem;
	line-height: 1.75;
	color: #4c556a;
}

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

.open-work-archive-link:hover {
	text-decoration: underline;
}

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

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

	.open-work-archive-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.open-work-archive-card {
		padding: 24px 20px;
		border-radius: 20px;
	}
}