.degustation {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	flex: 1;
}

.degustation__content {
	width: 100%;
	background-color: #F8F8F8;
	padding: 3rem var(--page-padding);
}

.degustation__image-container {
	width: 100%;
	background-color: #fff;
	padding: 3rem;
}

.degustation__image-container figure {
	width: 100%;
	height: 100%;
}

.degustation__image-container img {
	width: 100%;
    height: 100%;
    object-fit: contain;
}

.degustation__title {
	font-size: var(--font-size-xl);
    line-height: 1.2;
    margin-bottom: 4rem;
}

.degustation__text {
	margin-bottom: 4rem;
}

.degustation__list {
	display: flex;
	flex-wrap: wrap;
	margin-top: -4rem;
}

.degustation__list-item {
	margin-top: 4rem;
	padding-right: 1rem;
	width: 100%;
}

.degustation__list-title {
	font-size: var(--font-size-l);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.degustation__list-date {
	font-size: var(--font-size-m);
    line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: bold;
}

.degustation__form {
	margin-bottom: 1rem;
}

.degustation__apero {
	margin-top: 3em;
	margin-bottom: 3rem;
}

.degustation__pricing {
	margin-bottom: 2rem;
}

.degustation__button-refresh {
	margin-right: 1rem;
}

.degustation__number-input {
	display: inline-block;
    border: 1px solid #000;
    padding: 0.5rem 0.4rem;
    font-size: var(--font-size-m);
    margin-right: 0.7rem;
}

.degustation__person-label-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 1.3rem;
}

.degustation__person-label {
	display: inline-block;
}


@media screen and (min-width: 768px) {
	.degustation {
		flex-direction: row;
	}

	.degustation__content {
		width: 50%;
		padding: 3rem var(--page-padding);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.degustation__image-container {
		width: 50%;
		padding: 3rem;
		height: calc(100vh - var(--header-height) - 58px);
		position: sticky;
		top: var(--header-height);
	}
}

@media screen and (min-width: 1000px) {
	.degustation__list-item {
		width: 50%;
	}
}
