.dcvg-gate {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 24px 0;
	padding: 24px;
	border: 1px solid #eadfca;
	border-radius: 14px;
	background: #fffaf0;
	color: #2b2547;
	direction: rtl;
	text-align: right;
	box-sizing: border-box;
}

.dcvg-gate__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 50%;
	background: #f59406;
	font-size: 24px;
}

.dcvg-gate__content {
	flex: 1 1 auto;
}

.dcvg-gate__title {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.7;
	color: inherit;
}

.dcvg-gate__message {
	margin: 0 0 14px;
	line-height: 1.9;
}

.dcvg-gate__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dcvg-gate__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 7px 18px;
	border: 1px solid #f59406;
	border-radius: 8px;
	color: #9a5c00;
	background: #fff;
	font-weight: 700;
	text-decoration: none;
}

.dcvg-gate__button:hover,
.dcvg-gate__button:focus {
	color: #724400;
	background: #fff4dc;
}

.dcvg-gate__button--primary {
	color: #fff;
	background: #f59406;
}

.dcvg-gate__button--primary:hover,
.dcvg-gate__button--primary:focus {
	color: #fff;
	background: #d77d00;
}

@media (max-width: 600px) {
	.dcvg-gate {
		align-items: flex-start;
		padding: 18px;
	}

	.dcvg-gate__icon {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
		font-size: 20px;
	}
}

