.cv-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: #1b1b18;
	color: #fdfdfc;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
}

.cv-cookie-banner[hidden] {
	display: none;
}

.cv-cookie-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.cv-cookie-banner__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	flex: 1 1 320px;
}

.cv-cookie-banner__text a {
	color: #e5c251;
	text-decoration: underline;
}

.cv-cookie-banner__actions {
	display: flex;
	gap: 0.75rem;
	flex: 0 0 auto;
}

.cv-cookie-banner__btn {
	padding: 0.55rem 1.25rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	transition: opacity 0.15s ease;
}

.cv-cookie-banner__btn:hover {
	opacity: 0.85;
}

.cv-cookie-banner__btn--reject {
	background: transparent;
	border-color: #fdfdfc;
	color: #fdfdfc;
}

.cv-cookie-banner__btn--accept {
	background: #e5c251;
	color: #1b1b18;
}

.cv-cookie-settings-link {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}

@media (max-width: 640px) {
	.cv-cookie-banner__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.cv-cookie-banner__actions {
		justify-content: stretch;
	}

	.cv-cookie-banner__btn {
		flex: 1 1 0;
	}
}
