.dfp-search {
	width: 100%;
	max-width: 720px;
}

.dfp-search__label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.dfp-search__input {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #c8d0d8;
	border-radius: 6px;
	font: inherit;
	color: #1f2933;
	background: #fff;
}

.dfp-search__input:focus {
	border-color: #2b6cb0;
	box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.16);
	outline: none;
}

.dfp-search__results {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.dfp-search__results--message {
	display: block;
	color: #52606d;
}

.dfp-result {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	padding: 12px;
	border: 1px solid #dde3ea;
	border-radius: 6px;
	color: inherit;
	text-decoration: none;
	background: #fff;
}

.dfp-result:hover,
.dfp-result:focus {
	border-color: #9fb3c8;
	text-decoration: none;
}

.dfp-result__image {
	width: 72px;
	height: 72px;
	border-radius: 4px;
	object-fit: cover;
	background: #f3f5f7;
}

.dfp-result__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.dfp-result__title {
	font-weight: 700;
	color: #102a43;
}

.dfp-result__excerpt {
	color: #52606d;
	font-size: 14px;
	line-height: 1.4;
}

.dfp-result__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: #627d98;
	font-size: 13px;
}

.dfp-result__price {
	font-weight: 700;
	color: #1f7a4d;
}

@media (max-width: 480px) {
	.dfp-result {
		grid-template-columns: 56px minmax(0, 1fr);
	}

	.dfp-result__image {
		width: 56px;
		height: 56px;
	}
}
