/* BV Notice */

.bv-notice {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) 28px;
	align-items: center;
	gap: 16px;
	margin: 32px auto;
	padding: 22px 24px;
	border: 1px solid #e4e7ec;
	border-left: 4px solid #06172d;
	border-radius: 16px;
	background: #fff;
	color: #06172d;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(6, 23, 45, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	width: min(100%, 680px);
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.bv-notice:hover {
	transform: translateY(-2px);
	border-color: #d7dce5;
	box-shadow: 0 16px 40px rgba(6, 23, 45, 0.08);
	text-decoration: none;
}

.bv-notice:focus-visible {
	outline: 3px solid rgba(6, 23, 45, 0.25);
	outline-offset: 3px;
}

.bv-notice__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border: 1px solid #e4e7ec;
	border-radius: 999px;
	background: #fff;
	color: #06172d;
	flex: 0 0 auto;
}

.bv-notice__icon svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.bv-notice__body {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.bv-notice__label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #667085;
}

.bv-notice__title {
	display: block;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.35;
	font-weight: 700;
	color: #06172d;
}

.bv-notice__desc {
	display: block;
	font-size: 15px;
	line-height: 1.65;
	color: #475467;
}

.bv-notice__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #06172d;
	opacity: 0.75;
}

.bv-notice__arrow svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

.bv-notice__title,
.bv-notice__desc,
.bv-notice__label {
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* BV - Listing Notice */
.bv-notice-listing {
	margin: 24px 0;
	padding: 18px 20px;
	border: 1px solid var(--wp--preset--color--accent-10);
	border-radius: 16px;
	background: var(--wp--preset--color--accent-7);
	font-size: inherit;
	line-height: 1.6;
	color: #444;
}

.bv-notice-listing__title {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	color: #111;
}

.bv-notice-listing p {
	margin: 0;
}

@media (max-width: 640px) {
	.bv-notice {
		grid-template-columns: auto minmax(0, 1fr);
		padding: 22px;
		gap: 16px;
	}

	.bv-notice__arrow {
		display: none;
	}

	.bv-notice__icon {
		width: 46px;
		height: 46px;
	}

	.bv-notice__icon svg {
		width: 22px;
		height: 22px;
	}
}