.bookings__small-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.bookings__chip-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}

/* @supports (display: grid) {
	.bookings__chip-list {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		justify-content: space-between;
	}
	.bookings__chip-list--large {
		grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
	}
	.bookings__chip-list > div:empty {
		display: none;
	}
} */

.bookings__chip-list>* {
	flex: 1 1 250px;
}

.bookings__chip-list--large>* {
	flex: 1 1 500px; /* Avoid mixing large and small chips */
}
/*
.bookings__chip-list--large {
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 10px;
}
.bookings__chip-list--large>* {
	flex: 1 1 100%;
} */

.bookings__chip, .bookings__chip:hover {
	background-color: inherit;
	border-radius: var(--border-radius);
	border: 1px solid var(--border-color);
	color: var(--text-color);
	cursor: default;
	padding: 15px 25px 15px 15px;
	transition: all 0.2s ease;
	position: relative;
	text-decoration: none;
}

.bookings__chip--large, .bookings__chip--large:hover {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-right: 30px;
	font-size: 1.3em;
}

:is(a, button).bookings__chip:is(:hover, :focus) {
	cursor: pointer;
	box-shadow: var(--shadow-md), 0 0 0 1px var(--border-color);
	z-index: 1;
}

.bookings__right-chevron {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	top: 0;
	right: 5px;
}
