.wp-block-vscb-vs-box.vscb-wrapper {
	background: #fff;
	border: 1px solid #111;
	padding: 2rem 1.5rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	gap: 1.5rem;
	align-items: stretch;
	clear: both;
	width: 100%;
	max-width: 100%;
	margin: 1.4rem 0;
}

.wp-block-vscb-vs-box.vscb-wrapper + * {
	margin-top: 1rem;
}

.wp-block-vscb-vs-box.vscb-wrapper * {
	box-sizing: border-box;
}

.wp-block-vscb-vs-box .vscb-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.wp-block-vscb-vs-box .vscb-title {
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: min(100%, 380px);
	padding: 0.34rem 0.9rem;
	border-radius: 10px;
	border: 1px solid #f2d295;
	background: #fff4da;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.3;
	overflow-wrap: anywhere;
	color: #c31616;
}

.wp-block-vscb-vs-box .vscb-title-text {
	color: #c31616;
}

.wp-block-vscb-vs-box .vscb-title-link,
.wp-block-vscb-vs-box .vscb-title-link:visited {
	color: inherit;
	text-decoration-line: underline;
	text-decoration-thickness: 1.2px;
	text-underline-offset: 0.14em;
	text-decoration-color: rgba(143, 15, 15, 0.55);
	transition: color 0.18s ease, text-decoration-thickness 0.18s ease;
}

.wp-block-vscb-vs-box .vscb-title-link:hover,
.wp-block-vscb-vs-box .vscb-title-link:focus {
	color: #8f0f0f;
	text-decoration-thickness: 2.4px;
	text-decoration-color: currentColor;
}

.wp-block-vscb-vs-box .vscb-image-wrap {
	width: 100%;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wp-block-vscb-vs-box .vscb-image-link {
	display: inline-block;
	max-width: 100%;
}

.wp-block-vscb-vs-box .vscb-image {
	display: block;
	max-width: min(100%, 320px);
	height: auto;
}

.wp-block-vscb-vs-box .vscb-divider {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-width: clamp(90px, 14vw, 168px);
	width: clamp(90px, 14vw, 168px);
	align-self: stretch;
}

.wp-block-vscb-vs-box .vscb-line {
	flex: 1 1 auto;
	width: 3px;
	min-height: 56px;
	background: #111;
}

.wp-block-vscb-vs-box .vscb-center-text,
.wp-block-vscb-vs-box .vscb-center-input {
	display: block;
	max-width: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	overflow-wrap: anywhere;
	word-break: break-word;
	color: #111;
	font-size: clamp(1.9rem, 4.5vw, 3.9rem);
	line-height: 1;
	font-weight: 900;
	font-style: italic;
}

.wp-block-vscb-vs-box .vscb-center-input {
	border: 0;
	background: transparent;
	outline: none;
}

.wp-block-vscb-vs-box .vscb-vs {
	display: block;
	max-width: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	overflow-wrap: anywhere;
	word-break: break-word;
	color: #111;
	font-size: clamp(1.9rem, 4.5vw, 3.9rem);
	line-height: 1;
	font-weight: 900;
	font-style: italic;
}

.wp-block-vscb-vs-box .vscb-btn {
	display: inline-block;
	padding: 0.65rem 1.8rem;
	border: 4px solid #111;
	border-radius: 999px;
	background: #ffac1c;
	box-shadow: 0 3px 0 #4b4b4b;
	color: #111;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.2;
	text-align: center;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.wp-block-vscb-vs-box .vscb-btn:visited {
	color: #111;
}

.wp-block-vscb-vs-box .vscb-btn:hover,
.wp-block-vscb-vs-box .vscb-btn:focus {
	background: #f39b06;
	color: #000;
}

@media (max-width: 1024px) {
	.wp-block-vscb-vs-box .vscb-line {
		min-height: 44px;
	}
}

@media (max-width: 782px) {
	.wp-block-vscb-vs-box.vscb-wrapper {
		grid-template-columns: 1fr;
		gap: 1.2rem;
		padding: 1.2rem 1rem;
	}

	.wp-block-vscb-vs-box .vscb-divider {
		flex-direction: row;
		align-self: auto;
		width: 100%;
		min-width: 0;
		gap: 0.6rem;
	}

	.wp-block-vscb-vs-box .vscb-line {
		flex: 1 1 48px;
		width: auto;
		min-width: 26px;
		min-height: 0;
		height: 3px;
	}

	.wp-block-vscb-vs-box .vscb-center-text,
	.wp-block-vscb-vs-box .vscb-center-input,
	.wp-block-vscb-vs-box .vscb-vs {
		max-width: min(42vw, 220px);
		font-size: clamp(1.3rem, 5.2vw, 2rem);
	}

	.wp-block-vscb-vs-box .vscb-image-wrap {
		min-height: 140px;
	}
}
