/**
 * Avisos de restricción de contenido (páginas EU legacy y similares).
 * Colores alineados con private-area.css (#2d4480, #f2c308).
 */

.euro-pc-restriction-notice,
.pc_warn_box.euro-pc-restriction-notice {
	box-sizing: border-box;
	max-width: 720px;
	margin: 24px auto 40px;
	padding: 28px 32px 26px;
	background: linear-gradient(135deg, #f7f8fc 0%, #fff 100%);
	border: 1px solid #d7dae3;
	border-left: 5px solid #2d4480;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(45, 68, 128, 0.08);
	text-align: left;
}

.euro-pc-restriction-notice__inner {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.euro-pc-restriction-notice__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #2d4480;
	color: #fff;
	font-size: 20px;
	line-height: 1;
}

.euro-pc-restriction-notice__body {
	flex: 1 1 auto;
	min-width: 0;
}

.euro-pc-restriction-notice__title {
	margin: 0 0 8px;
	color: #151515;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
}

.euro-pc-restriction-notice__message {
	margin: 0;
	color: #4a4f5c;
	font-size: 1rem;
	line-height: 1.55;
}

.euro-pc-restriction-notice__hint {
	margin: 16px 0 0;
	padding-top: 16px;
	border-top: 1px solid #e5e8f0;
	color: #5c6370;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.euro-pc-restriction-notice__actions {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.euro-pc-restriction-notice__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 8px;
	background: #2d4480;
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.15s ease, transform 0.15s ease;
}

.euro-pc-restriction-notice__btn:hover {
	background: #243a66;
	transform: translateY(-1px);
	color: #fff !important;
}

.euro-pc-restriction-notice__btn--secondary {
	background: #f2c308;
	color: #151515 !important;
}

.euro-pc-restriction-notice__btn--secondary:hover {
	background: #fdca2b;
	color: #151515 !important;
}

@media (max-width: 600px) {
	.euro-pc-restriction-notice,
	.pc_warn_box.euro-pc-restriction-notice {
		margin-left: 0;
		margin-right: 0;
		padding: 22px 20px;
	}

	.euro-pc-restriction-notice__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.euro-pc-restriction-notice__actions {
		justify-content: center;
	}
}
