.oe-visit {
	display: grid;
	gap: 0;
	width: 100%;
	max-width: 440px;
	box-sizing: border-box;
	padding: 8px 24px;
	border-radius: 18px;
	background: #fffaf3;
	box-shadow: 0 24px 60px rgba(28, 17, 10, 0.28);
	color: #1c110a;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oe-visit__block {
	padding: 20px 0;
}

.oe-visit__block + .oe-visit__block {
	border-top: 1px solid #ead8c5;
}

.oe-visit__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 8px;
}

.oe-visit__block--availability {
	display: grid;
	gap: 16px;
}

.oe-visit__body .oe-visit__title {
	margin-bottom: 6px;
}

.oe-visit__title {
	margin: 0;
	color: #1c110a;
	font-family: Fraunces, Georgia, serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}

.oe-visit__text {
	margin: 0;
	color: #6b4f3a;
	font-size: 15px;
	line-height: 1.5;
}

.oe-visit__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-shrink: 0;
	padding: 5px 12px;
	border: 1px solid #ead8c5;
	border-radius: 999px;
	background: #faf5ef;
	color: #6b4f3a;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.oe-visit__pill::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}

.oe-visit__pill.is-open {
	border-color: #86efac;
	background: #dcfce7;
	color: #166534;
}

.oe-visit__pill.is-closing-soon {
	border-color: #fdba74;
	background: #ffedd5;
	color: #9a3412;
}

.oe-visit__pill.is-closed {
	border-color: #fca5a5;
	background: #fee2e2;
	color: #991b1b;
}

.oe-visit__pill.is-unavailable {
	border-color: #fca5a5;
	background: #fee2e2;
	color: #991b1b;
}

.oe-visit__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: #c2410c;
	color: #ffffff;
	font: inherit;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.oe-visit__button:hover {
	background: #9a3412;
}

.oe-visit__button:disabled {
	cursor: wait;
	opacity: 0.7;
}

.oe-visit__button:focus-visible {
	outline: 3px solid #fdba74;
	outline-offset: 3px;
}

@media (max-width: 480px) {
	.oe-visit {
		padding: 4px 18px;
	}

	.oe-visit__title {
		font-size: 20px;
	}
}
