/* Trip Builder — Explorer group-stays banner */

.hrck-tb-banner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.25rem;
	margin: 0 0 1.25rem;
	padding: 1rem 2.75rem 1rem 1.25rem;
	border: 1px solid #e5e7eb;
	border-left: 4px solid #111827;
	border-radius: 10px;
	background: #f9fafb;
}

.hrck-tb-banner__text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.hrck-tb-banner__heading {
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
}

.hrck-tb-banner__body {
	font-size: 0.9rem;
	color: #4b5563;
}

.hrck-tb-banner__cta {
	display: inline-block;
	padding: 0.55rem 1.1rem;
	border-radius: 8px;
	background: #111827;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease;
}

.hrck-tb-banner__cta:hover,
.hrck-tb-banner__cta:focus {
	background: #374151;
	color: #fff;
}

.hrck-tb-banner__dismiss {
	position: absolute;
	top: 0.4rem;
	right: 0.5rem;
	border: 0;
	background: transparent;
	font-size: 1.25rem;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
}

.hrck-tb-banner__dismiss:hover,
.hrck-tb-banner__dismiss:focus {
	color: #111827;
}

@media (max-width: 600px) {
	.hrck-tb-banner {
		flex-direction: column;
		align-items: stretch;
	}

	.hrck-tb-banner__cta {
		text-align: center;
	}
}

/* Contextual entry-point note (#236) — injected into guest pickers and the
   booking widget; standalone styles, no dependence on host-widget CSS. */
.hrck-tb-entry-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	margin: 10px 0 2px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #eff6ff;
	border: 1px solid #dbeafe;
	font-size: 0.85em;
	line-height: 1.45;
	color: #1e3a5f;
}

.hrck-tb-entry-note[hidden] {
	display: none;
}

.hrck-tb-entry-note__cta {
	font-weight: 600;
	color: #2563eb;
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
}

.hrck-tb-entry-note__cta:hover,
.hrck-tb-entry-note__cta:focus-visible {
	color: #1d4ed8;
}
