body.heuriger-list,
body.producer-list {

	main {
		h2 {
			text-align: center;
		}

		> ul {
			margin-inline: auto;
			padding: 0;
			list-style-type: none;
			max-width: 52rem;

			li {
				article {
					display: flex;
					flex-direction: row;
					align-items: center;
					background: var(--box-background);
					gap: 1rem;
					border-radius: var(--border-radius);
					padding: 1rem;
					margin-bottom: 1rem;
					box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
					transition: var(--transition);

					&:hover {
						box-shadow: var(--shadow);
						transform: translateY(-2px);
					}

					figure {
						margin:0;
						width: auto;

						figcaption {
							display: none;
						}
						> img {
							border-radius: var(--border-radius);
						}
					}
					p {
						color: var(--muted);
					}

					.status-indicator {
						font-size: 1.2em;

						&[data-status="open"] {
							color: #22c55e; /* green */
						}

						&[data-status="closed"] {
							color: #ef4444; /* red */
						}

						&[data-status="unknown"] {
							color: #6b7280; /* gray */
						}
					}

				}
			}
		}
	}
}
