.our-wines-content {
	.wine-row {
		display: flex;
		flex-wrap: wrap;

		&#luigi-bosca-animations {
			/*display: none;*/
		}

		.text-col {
			.wine-title {
				text-align: center;
				margin: 0.5em 0;
			}
			p {
				text-wrap: pretty;
			}
		}

		@media (width >= 48rem) {
			.text-col {
				margin-top: 15%;

				.wine-title {
					margin-top: 0;
				}

				&.text-col-left {
					text-align: end;

					.wine-title {
						position: relative;
						text-align: right;
						z-index: 1;
					}
				}

				&.text-col-right {
					.wine-title {
						text-align: left;
					}
				}
			}
		}
	}
}

.nav-wines {
	width: fit-content;
	position: sticky;
	top: 25%;
	margin-bottom: 3rem;
	ul {
		li {
			a {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				font-weight: 600;
				padding: .5rem 0;
				padding-left: 1rem;
				border-left: 2px solid transparent;
				color: color-mix(in srgb, var(--color-black) 50%, var(--color-white));
				&:hover {
					color: var(--color-orange);
				}
				&.active {
					border-color: 2px solid var(--color-black);
					color: var(--color-black);
				}
			}

		}
	}
}

.divider {
	position: relative;
	text-align: center;
	&:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		translate: 0 -50%;
		width: 100%;
		height: 2px;
		background-color: var(--color-antiqueruby);
	}
	.divider-text {
		position: relative;
		display: inline-flex;
		color: var(--color-antiqueruby);
		background-color: var(--color-white);
		padding-inline: 1em;
		z-index: 1;
	}
}