/* Café Kremer — HLR Veilingen
   Zelfstandige “papier”-panelen: forceert donkere tekst zodat het
   leesbaar blijft op het donkere cafethema. */

:root {
	--hlr-ink: #1c1917;
	--hlr-ink-soft: #3f3a36;
	--hlr-paper: #f7f1e6;
	--hlr-paper-2: #fffdf8;
	--hlr-line: rgba(28, 25, 23, 0.12);
	--hlr-accent: #c41e1e;
	--hlr-accent-dark: #8a1a1a;
	--hlr-gold: #8a6d1d;
	--hlr-fb: #1877f2;
}

.hlr-veiling-list,
.hlr-veiling-detail,
.hlr-veiling-related,
.hlr-veiling-card,
.hlr-veiling-filters,
.hlr-veiling-bid-form {
	color: #1c1917 !important;
}

.hlr-veiling-list {
	width: 100%;
}

.hlr-veiling-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.35rem;
	margin: 1.5rem 0 0.5rem;
	justify-content: center;
}

/* Bij één of weinig items: nette kaarten, niet uitgerekt over volle breedte */
.hlr-veiling-grid > .hlr-veiling-card {
	max-width: 340px;
	width: 100%;
	justify-self: center;
}

@media (min-width: 900px) {
	.hlr-veiling-grid:has(> .hlr-veiling-card:nth-child(3)) > .hlr-veiling-card {
		max-width: none;
		justify-self: stretch;
	}
}

.hlr-veiling-card {
	border: 1px solid rgba(28, 25, 23, 0.12);
	border-radius: 14px;
	overflow: hidden;
	background: #fffdf8 !important;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	display: flex;
	flex-direction: column;
}

.hlr-veiling-card__media {
	display: block;
	background: #1a1614;
}

.hlr-veiling-card__media img,
.hlr-veiling-gallery img,
.hlr-veiling-detail__hero img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.hlr-veiling-card__placeholder {
	aspect-ratio: 4 / 3;
	background: linear-gradient(145deg, #3a322c, #1a1614);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(247, 241, 230, 0.55) !important;
	font-size: 0.9rem;
	font-weight: 600;
}

.hlr-veiling-card__body {
	padding: 1.05rem 1.15rem 1.25rem;
	background: #fffdf8 !important;
	color: #1c1917 !important;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.hlr-veiling-card__title,
.hlr-veiling-card__title a,
.hlr-veiling-card__body h3,
.hlr-veiling-card__body h3 a {
	margin: 0.15rem 0 0.25rem !important;
	font-size: 1.2rem !important;
	line-height: 1.3 !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	color: #1c1917 !important;
}

.hlr-veiling-card__price,
.hlr-veiling-card__end,
.hlr-veiling-card__body p:not(.hlr-veiling-badge) {
	color: #3f3a36 !important;
	margin: 0.15rem 0 !important;
	font-size: 0.98rem !important;
	font-weight: 600 !important;
	opacity: 1 !important;
}

.hlr-veiling-card__cta {
	margin-top: 0.65rem !important;
}

.hlr-veiling-badge {
	display: inline-block;
	margin: 0;
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	background: var(--hlr-accent);
	color: #fff !important;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.hlr-veiling-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.7rem 1.15rem;
	border-radius: 999px;
	background: var(--hlr-accent);
	color: #fff !important;
	text-decoration: none !important;
	border: none;
	font-weight: 700;
	cursor: pointer;
	line-height: 1.2;
}

.hlr-veiling-btn:hover {
	filter: brightness(1.06);
}

.hlr-veiling-btn--fb {
	background: var(--hlr-fb);
}

.hlr-veiling-btn--ghost {
	background: transparent;
	color: var(--hlr-ink) !important;
	border: 1.5px solid rgba(28, 25, 23, 0.35);
}

.hlr-veiling-detail {
	margin: 1.25rem 0 2rem;
	padding: 1.35rem 1.35rem 1.5rem;
	border-radius: 18px;
	background: var(--hlr-paper);
	border: 1px solid var(--hlr-line);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
	color: var(--hlr-ink);
}

.hlr-veiling-detail.is-ending-soon {
	border-color: rgba(196, 30, 30, 0.35);
}

.hlr-veiling-detail__header {
	margin-bottom: 1rem;
}

.hlr-veiling-detail__title {
	margin: 0.55rem 0 0;
	font-size: clamp(1.55rem, 2.4vw, 2.1rem);
	line-height: 1.2;
	color: var(--hlr-ink) !important;
	font-weight: 700;
}

.hlr-veiling-item-copy {
	margin: 0 0 1rem;
}

.hlr-veiling-item-copy .hlr-veiling-detail__title {
	margin: 0 0 0.65rem;
}

.hlr-veiling-item-copy .hlr-veiling-desc {
	margin: 0;
	color: var(--hlr-ink) !important;
	line-height: 1.55;
}

.hlr-veiling-item-copy .hlr-veiling-desc p {
	margin: 0 0 0.75rem;
	color: inherit !important;
}

.hlr-veiling-item-copy .hlr-veiling-desc p:last-child {
	margin-bottom: 0;
}

.hlr-veiling-detail__hero {
	margin: 0 0 1.1rem;
	border-radius: 12px;
	overflow: hidden;
	background: #1a1614;
}

.hlr-veiling-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 0.75rem;
	margin: 0 0 1.25rem;
}

.hlr-veiling-gallery figure {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
}

.hlr-veiling-meta {
	display: grid;
	gap: 0.55rem;
	margin: 0 0 1rem;
	padding: 0.9rem 1rem;
	background: var(--hlr-paper-2);
	border: 1px solid var(--hlr-line);
	border-radius: 12px;
}

.hlr-veiling-meta p {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	color: var(--hlr-ink);
}

.hlr-veiling-meta strong {
	min-width: 7.5rem;
	color: var(--hlr-ink-soft);
	font-weight: 700;
}

.hlr-veiling-current {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--hlr-accent-dark);
}

.hlr-veiling-share {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1rem 0 1.25rem;
}

.hlr-veiling-bid-form {
	margin-top: 0.5rem;
	padding: 1.15rem 1.2rem 1.25rem;
	border-radius: 14px;
	background: var(--hlr-paper-2);
	border: 1px solid var(--hlr-line);
	color: var(--hlr-ink);
}

.hlr-veiling-bid-form h3,
.hlr-veiling-bids h3 {
	margin: 0 0 0.5rem;
	color: var(--hlr-ink) !important;
	font-size: 1.2rem;
}

.hlr-veiling-hint {
	margin: 0 0 0.85rem;
	color: var(--hlr-ink-soft) !important;
	font-weight: 600;
}

.hlr-veiling-mail-tip {
	margin: 0.85rem 0 0;
	padding: 0.7rem 0.85rem;
	border-left: 3px solid #c4a35a;
	background: rgba(196, 163, 90, 0.18);
	color: var(--hlr-ink) !important;
	font-size: 0.88rem;
	line-height: 1.45;
	font-weight: 600;
}

.hlr-veiling-stamgast,
.hlr-veiling-chip,
.hlr-veiling-stamgast-progress {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	background: #2f5d3a;
	color: #f7f1e3 !important;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	vertical-align: middle;
	white-space: nowrap;
}

.hlr-veiling-chip--aangeschoven,
.hlr-veiling-chip--eerste-rondje,
.hlr-veiling-stamgast-progress {
	background: #c4a35a;
	color: #1f1a12 !important;
}

.hlr-veiling-chip--stammtafel,
.hlr-veiling-chip--dweil,
.hlr-veiling-chip--kroegbaas,
.hlr-veiling-chip--tapper {
	background: #8b1e1e;
}

.hlr-veiling-chip--nachtbraker,
.hlr-veiling-chip--vroege-vogel,
.hlr-veiling-chip--weekendkracht {
	background: #1e3a5f;
}

.hlr-veiling-chip--laatste-klap,
.hlr-veiling-chip--soft-close-held,
.hlr-veiling-chip--openingssalvo,
.hlr-veiling-chip--comeback {
	background: #b35a1f;
}

.hlr-veiling-chip--alleskunner,
.hlr-veiling-chip--stamgast-plus,
.hlr-veiling-chip--bitterballen,
.hlr-veiling-chip--penningmeester,
.hlr-veiling-chip--doorzetter,
.hlr-veiling-chip--dubbelrondje {
	background: #4a3f2c;
}

.hlr-veiling-chip--volger,
.hlr-veiling-chip--winnaar {
	background: #2f5d3a;
}

.hlr-veiling-badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1rem;
}

.hlr-veiling-badge-row .hlr-veiling-chip {
	margin-left: 0;
}

.hlr-veiling-stamgast-progress,
.hlr-veiling-stamgast-hint {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	background: #c4a35a;
	color: #1f1a12 !important;
	font-size: 0.72rem;
	font-weight: 700;
	vertical-align: middle;
}

.hlr-veiling-stamgast-hint {
	display: block;
	margin: 0.35rem 0 0;
	margin-left: 0;
}

.hlr-veiling-bids li .hlr-veiling-stamgast,
.hlr-veiling-bids li .hlr-veiling-chip {
	margin-left: 0.25rem;
}

.hlr-veiling-last-bid {
	margin: 0.15rem 0 0 !important;
	font-size: 0.85rem;
	color: var(--hlr-ink-soft) !important;
	font-weight: 600;
}

.hlr-veiling-my-status {
	display: inline-block;
	margin: 0.35rem 0 0 !important;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
}

.hlr-veiling-my-status.is-leader {
	background: #2f5d3a;
	color: #f7f1e3 !important;
}

.hlr-veiling-my-status.is-outbid {
	background: #b35a1f;
	color: #fff8f0 !important;
}

.hlr-veiling-card.is-outbid,
.hlr-veiling-detail.is-outbid {
	box-shadow: 0 0 0 2px rgba(179, 90, 31, 0.45);
}

.hlr-veiling-card.is-outbid-flash,
.hlr-veiling-detail.is-outbid-flash {
	animation: hlr-outbid-pulse 1.2s ease-in-out 3;
}

.hlr-veiling-card.is-leader,
.hlr-veiling-detail.is-leader {
	box-shadow: 0 0 0 2px rgba(47, 93, 58, 0.35);
}

@keyframes hlr-outbid-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 2px rgba(179, 90, 31, 0.35);
	}
	50% {
		box-shadow: 0 0 0 4px rgba(179, 90, 31, 0.7);
	}
}

.hlr-veiling-card-follow {
	margin-top: 0.55rem;
}

.hlr-veiling-card-follow summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--hlr-ink);
	font-size: 0.9rem;
}

.hlr-veiling-follow-form--compact {
	margin-top: 0.5rem;
	padding: 0.65rem;
	background: rgba(255, 255, 255, 0.55);
	border-radius: 8px;
}

.hlr-veiling-follow-form--compact label {
	display: block;
	margin-bottom: 0.4rem;
}

.hlr-veiling-follow-form--compact input {
	width: 100%;
	max-width: 100%;
	padding: 0.45rem 0.55rem;
	border: 2px solid #d9cfb3;
	border-radius: 8px;
}

.hlr-veiling-follow-form--compact .hlr-veiling-btn {
	margin-top: 0.25rem;
}

.hlr-veiling-bids li .hlr-veiling-stamgast {
	margin-left: 0.25rem;
}

.hlr-veiling-bid-form label {
	display: block;
	font-weight: 700;
	color: var(--hlr-ink) !important;
}

.hlr-veiling-bid-form input {
	display: block;
	width: 100%;
	max-width: 420px;
	margin-top: 0.4rem;
	padding: 0.65rem 0.75rem;
	border: 2px solid #d9cfb3;
	border-radius: 8px;
	background: #fff;
	color: var(--hlr-ink) !important;
	font-size: 1rem;
}

.hlr-veiling-bid-form input:focus {
	outline: none;
	border-color: var(--hlr-accent);
	box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.18);
}

.hlr-veiling-form-msg {
	min-height: 1.25em;
	font-weight: 700;
	color: var(--hlr-ink);
}

.hlr-veiling-form-msg.is-error {
	color: var(--hlr-accent);
}

.hlr-veiling-form-msg.is-ok {
	color: #1b6b2f;
}

.hlr-veiling-bids {
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid var(--hlr-line);
	color: var(--hlr-ink);
}

.hlr-veiling-bids ul {
	margin: 0.5rem 0 0;
	padding-left: 1.1rem;
	color: var(--hlr-ink-soft);
}

.hlr-veiling-closed {
	font-weight: 600;
	padding: 1rem 1.1rem;
	background: #f8e8e8;
	border-left: 4px solid var(--hlr-accent);
	border-radius: 0 10px 10px 0;
	color: var(--hlr-ink);
}

.hlr-veiling-payment {
	margin: 0.75rem 0 1rem;
	padding: 0.9rem 1rem;
	font-size: 0.98rem;
	line-height: 1.5;
	background: #efe4c4;
	border-left: 4px solid var(--hlr-gold);
	border-radius: 0 10px 10px 0;
	color: var(--hlr-ink) !important;
}

.hlr-veiling-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: flex-end;
	margin: 0 0 1.25rem;
	padding: 1rem 1.1rem;
	background: var(--hlr-paper);
	border: 1px solid var(--hlr-line);
	border-radius: 12px;
	color: var(--hlr-ink);
}

.hlr-veiling-filters label {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--hlr-ink) !important;
}

.hlr-veiling-filters select {
	min-width: 180px;
	padding: 0.5rem 0.65rem;
	border: 2px solid #d9cfb3;
	border-radius: 8px;
	font-weight: 500;
	background: #fff;
	color: var(--hlr-ink);
}

.hlr-veiling-card.is-ending-soon {
	border-color: rgba(196, 30, 30, 0.4);
	box-shadow: 0 10px 28px rgba(196, 30, 30, 0.18);
}

.hlr-veiling-card.is-ending-soon .hlr-veiling-badge {
	background: var(--hlr-accent-dark);
}

.hlr-veiling-related {
	margin: 2.5rem 0 1rem;
	padding: 1.35rem 1.25rem 1.5rem;
	border-radius: 18px;
	background: rgba(247, 241, 230, 0.92);
	border: 1px solid var(--hlr-line);
	color: var(--hlr-ink);
}

.hlr-veiling-related h2 {
	margin: 0 0 0.35rem;
	font-size: 1.45rem;
	color: var(--hlr-ink) !important;
}

.hlr-veiling-related__intro {
	margin: 0 0 1rem;
	color: var(--hlr-ink-soft) !important;
}

.hlr-veiling-empty {
	grid-column: 1 / -1;
	color: var(--hlr-ink-soft);
}

.hlr-veiling-extended {
	margin: 0.15rem 0 0.25rem !important;
	padding: 0.35rem 0.55rem;
	border-radius: 8px;
	background: #fff3cd;
	color: #6a4b00 !important;
	font-size: 0.88rem !important;
	font-weight: 700 !important;
}

.hlr-veiling-extended--detail {
	margin: 0.75rem 0 1rem !important;
}

.hlr-veiling-btn--wa {
	background: #25d366 !important;
}

.hlr-veiling-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 0.85rem !important;
}

.hlr-veiling-follow-form {
	margin: 0 0 1rem;
	padding: 1rem 1.1rem;
	border-radius: 14px;
	background: #fffdf8;
	border: 1px dashed rgba(28, 25, 23, 0.25);
	color: #1c1917;
}

.hlr-veiling-follow-form h3 {
	margin: 0 0 0.35rem;
	color: #1c1917 !important;
	font-size: 1.05rem;
}

.hlr-veiling-follow-form label {
	display: block;
	font-weight: 700;
	color: #1c1917 !important;
}

.hlr-veiling-follow-form input {
	display: block;
	width: 100%;
	max-width: 420px;
	margin-top: 0.35rem;
	padding: 0.55rem 0.7rem;
	border: 2px solid #d9cfb3;
	border-radius: 8px;
	background: #fff;
	color: #1c1917 !important;
}

.hlr-veiling-follow-msg.is-ok {
	color: #1b6b2f;
	font-weight: 700;
}

.hlr-veiling-follow-msg.is-error {
	color: #c41e1e;
	font-weight: 700;
}

.hlr-veiling-card--sold .hlr-veiling-badge {
	background: #1b6b2f;
}

.hlr-veiling-card.is-hot,
.hlr-veiling-detail.is-hot {
	box-shadow: 0 0 0 2px rgba(196, 30, 30, 0.25), 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hlr-veiling-badge--warn {
	background: #8a6d1d !important;
}

.hlr-veiling-card__cats {
	margin: 0 !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
	color: #8a6d1d !important;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.hlr-veiling-list--home {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.hlr-veiling-home-intro {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
	background: rgba(247, 241, 230, 0.92);
	border-radius: 12px;
	color: #1c1917 !important;
}

.hlr-veiling-home-intro__text {
	margin: 0;
	font-weight: 600;
	color: #1c1917 !important;
}

.hlr-veiling-soon {
	margin: 0 0 1.5rem;
	padding: 1rem 1.1rem 1.15rem;
	border-radius: 16px;
	background: rgba(196, 30, 30, 0.1);
	border: 1px solid rgba(196, 30, 30, 0.28);
}

.hlr-veiling-soon__title {
	margin: 0 0 0.75rem;
	color: #f7f1e6 !important;
	font-size: 1.15rem;
}

.hlr-veiling-list--home .hlr-veiling-soon__title {
	color: #8a1a1a !important;
}

.hlr-veiling-winner-steps {
	margin-top: 0.85rem;
}

.hlr-veiling-winner-steps h3 {
	margin: 0 0 0.4rem;
	color: #1c1917 !important;
}

.hlr-veiling-winner-steps ol {
	margin: 0.35rem 0 0.75rem;
	padding-left: 1.2rem;
	color: #1c1917;
}

.hlr-veiling-page {
	padding: 2rem 1.25rem 3rem;
}

.hlr-site-chrome--header {
	background: #0a0a0a;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hlr-site-chrome__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0.75rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.hlr-site-chrome__logo img {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
}

.hlr-site-chrome__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	justify-content: center;
	flex: 1;
}

.hlr-site-chrome__nav a {
	color: #f5f0e6 !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 0.92rem;
}

.hlr-site-chrome__nav a:hover {
	color: #e11d2e !important;
}

.hlr-site-chrome__fb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: #1877f2;
	color: #fff !important;
	font-weight: 800;
	text-decoration: none !important;
}

.hlr-site-chrome--footer {
	background: #0a0a0a;
	color: #d7d0c3;
	margin-top: 2rem;
	padding: 2rem 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hlr-site-chrome__inner--footer {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.35rem;
}

.hlr-site-chrome--footer a {
	color: #f5f0e6 !important;
	font-weight: 700;
}

.hlr-site-chrome__brand {
	margin: 0;
	color: #f5f0e6;
	font-size: 1.05rem;
}

.hlr-site-chrome__note {
	margin: 0.5rem 0 0;
	opacity: 0.75;
	font-size: 0.85rem;
}

.hlr-veiling-share {
	margin-top: 1.25rem;
}

@media (max-width: 720px) {
	.hlr-site-chrome__inner {
		justify-content: center;
	}
	.hlr-site-chrome__nav {
		width: 100%;
		order: 3;
	}
}

.hlr-veiling-page__inner {
	max-width: 920px;
	margin: 0 auto;
}

.hlr-veiling-page--archive .hlr-veiling-page__inner {
	max-width: 1100px;
}

.hlr-veiling-page__header {
	margin-bottom: 1.5rem;
	padding: 1.25rem 1.35rem;
	border-radius: 16px;
	background: rgba(247, 241, 230, 0.92);
	color: #1c1917 !important;
}

.hlr-veiling-page__header h1 {
	margin: 0 0 0.4rem;
	color: #1c1917 !important;
}

.hlr-veiling-page__header p,
.hlr-veiling-page__crumb a,
.hlr-veiling-desc {
	color: #1c1917 !important;
}

.hlr-veiling-page__crumb {
	margin: 0 0 1rem;
}

.hlr-veiling-detail--intro {
	margin-bottom: 1rem;
}

.hlr-veiling-mybids {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.hlr-veiling-mybid {
	padding: 1rem;
	border-radius: 12px;
	background: #fffdf8;
	border: 1px solid rgba(28, 25, 23, 0.12);
}

.hlr-veiling-mybid h2 {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
}

.hlr-veiling-mybid h2 a {
	color: #1c1917 !important;
	text-decoration: none;
}

.hlr-veiling-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(0, 0, 0, 0.86);
}

.hlr-veiling-lightbox.is-open {
	display: flex;
}

.hlr-veiling-lightbox img {
	max-width: min(1100px, 96vw);
	max-height: 90vh;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.hlr-veiling-lightbox__close {
	position: absolute;
	top: 0.75rem;
	right: 1rem;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 600px) {
	.hlr-veiling-detail,
	.hlr-veiling-related {
		padding: 1rem;
		border-radius: 14px;
	}

	.hlr-veiling-meta strong {
		min-width: 100%;
	}
}

