/* Alamo Vouches. Monochrome, matching the brand. */

.av-wall {
	--av-bg: #101010;
	--av-panel: #1a1a1a;
	--av-line: #303030;
	--av-text: #f1f1f1;
	--av-muted: #b4b4b4;

	background: var(--av-bg);
	color: var(--av-text);
	padding: 44px 0 36px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

	/* The rest of the page is contained rounded panels, not full-bleed bands.
	   Matching that is what stops this reading as bolted on. */
	max-width: 1180px;
	margin: 0 auto;
	border-radius: 28px;
	overflow: hidden;
}

.av-wall * { box-sizing: border-box; }

.av-wall-title {
	margin: 0 0 26px;
	text-align: center;
	font-family: inherit;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--av-muted);
	font-weight: 600;
}

/* --- reel --------------------------------------------------------------- */

.av-reel-wrap { position: relative; }

.av-reel {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 2px 20px 14px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.av-reel::-webkit-scrollbar { display: none; }
.av-reel:focus-visible { outline: 1px solid var(--av-text); outline-offset: -1px; }

.av-card {
	flex: 0 0 auto;
	width: 268px;
	margin: 0;
	scroll-snap-align: start;
	background: var(--av-panel);
	border: 1px solid var(--av-line);
}

.av-card-img {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #000;
}
.av-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: none;
	transition: transform .35s ease, filter .35s ease;
}
.av-card:hover .av-card-img img { transform: scale(1.03); }

.av-card-meta { padding: 13px 15px 15px; }
.av-card-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--av-text);
}
.av-card-caption {
	display: block;
	font-size: 13.5px;
	color: var(--av-muted);
	margin-top: 5px;
	line-height: 1.55;
}

/* --- arrows -------------------------------------------------------------- */

.av-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(12, 12, 12, .85);
	border: 1px solid var(--av-line);
	color: var(--av-text);
	width: 38px;
	height: 38px;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: none;
}
.av-arrow:hover { background: #fff; color: #000; border-color: #fff; }
.av-arrow--prev { left: 4px; }
.av-arrow--next { right: 4px; }
.av-reel-wrap.has-overflow .av-arrow { display: block; }

@media (hover: none) {
	.av-reel-wrap.has-overflow .av-arrow { display: none; } /* touch users just swipe */
}

/* --- disclosure ---------------------------------------------------------- */

.av-disclosure {
	margin: 14px auto 0;
	max-width: 680px;
	padding: 0 20px;
	text-align: center;
	font-size: 12px;
	line-height: 1.7;
	color: #8f8f8f;
}

/* --- submission form ----------------------------------------------------- */

.av-box {
	background: #0c0c0c;
	color: #fff;
	border: 1px solid #2a2a2a;
	padding: 26px;
	max-width: 620px;
}
.av-box * { box-sizing: border-box; }

.av-title {
	margin: 0 0 6px;
	font-size: 18px;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.av-sub { color: #9a9a9a; font-size: 14px; margin: 0 0 18px; }

.av-notice {
	border: 1px solid #2a2a2a;
	border-left: 3px solid #fff;
	background: #141414;
	padding: 12px 14px;
	font-size: 13px;
	color: #9a9a9a;
	margin: 0 0 18px;
}
.av-notice strong { display: block; color: #fff; margin-bottom: 3px; }

.av-label {
	display: block;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #9a9a9a;
	margin: 14px 0 5px;
}
.av-input {
	width: 100%;
	background: #141414;
	border: 1px solid #2a2a2a;
	color: #fff;
	padding: 10px 12px;
	font: inherit;
}
.av-input:focus { outline: 1px solid #fff; }
.av-file { width: 100%; color: #9a9a9a; font-size: 13px; padding: 8px 0; }
.av-hint { font-size: 12px; color: #6f6f6f; margin: 4px 0 0; }

.av-check {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	margin: 18px 0;
	font-size: 13px;
	color: #9a9a9a;
	line-height: 1.5;
}
.av-check input { margin-top: 3px; flex: 0 0 auto; }

.av-btn {
	display: inline-block;
	background: #fff;
	color: #000;
	border: 1px solid #fff;
	padding: 11px 22px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
}
.av-btn:hover { background: #ddd; border-color: #ddd; color: #000; }

.av-msg { padding: 11px 13px; font-size: 13px; margin: 0 0 16px; border-left: 3px solid #fff; background: #141414; }
.av-msg--error { color: #fff; }
.av-msg--ok { color: #fff; }

.av-mine { border-top: 1px solid #2a2a2a; margin-top: 22px; padding-top: 16px; }
.av-mine h4 { margin: 0 0 10px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #9a9a9a; }
.av-mine ul { list-style: none; margin: 0; padding: 0; font-size: 13px; color: #9a9a9a; }
.av-mine li { padding: 5px 0; border-bottom: 1px solid #1c1c1c; }
.av-mine code { background: #141414; border: 1px solid #2a2a2a; padding: 1px 6px; color: #fff; }

.av-status {
	display: inline-block;
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
	border: 1px solid #2a2a2a;
	padding: 1px 6px;
	margin-right: 8px;
	color: #9a9a9a;
}
.av-status--approved { border-color: #fff; color: #fff; }

@media (max-width: 600px) {
	.av-card { width: 200px; }
	.av-box { padding: 18px; }
}

.av-share-link {
	display: inline-block;
	margin-left: 8px;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.av-share-link:hover { color: #ddd; }
