.faq-card {
	margin-bottom: 12px;
	padding: 20px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 8px 20px rgba(28, 24, 18, 0.05);
}

.faq-card summary {
	cursor: pointer;
	font-weight: 800;
}

.faq-card__answer {
	overflow: hidden;
	transition: height 0.28s ease;
}

@media (min-width: 720px) {
	.service-grid,
	.reason-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.work-grid,
	.post-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1040px) {
	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.featured-works__title-row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 18px;
	row-gap: 10px;
	align-items: center;
	justify-content: space-between;
}

.featured-works__title-row h2 {
	margin: 0;
}

.featured-works__button {
	margin-left: auto;
	min-height: 42px;
	padding: 11px 18px;
}

.works-index-button {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid rgba(58, 124, 165, 0.34);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 58%),
		#102333;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	box-shadow:
		inset 1px 1px 0 rgba(255, 255, 255, 0.16),
		inset -1px -1px 0 rgba(0, 0, 0, 0.18),
		0 10px 22px rgba(16, 35, 51, 0.12);
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.works-index-button:hover,
.works-index-button:focus-visible {
	background: #1f4059;
	color: #fff;
	box-shadow:
		inset 1px 1px 0 rgba(255, 255, 255, 0.2),
		inset -1px -1px 0 rgba(0, 0, 0, 0.18),
		0 14px 28px rgba(16, 35, 51, 0.18);
	transform: translateY(-2px);
}
