/* Shotyah Latest Sessions — Surf Chronic theme, scoped to .shot-wrap
   Kept visually distinct from Surf Clip Finder (coral eyebrow, not sky-blue)
   so the two sections on one page read as separate features.
*/

.shot-wrap {
	--shot-bg: #020c1b;
	--shot-bg-2: #06182e;
	--shot-line: #0e2a47;
	--shot-text: #e2e8f0;
	--shot-dim: #7d93ab;
	--shot-accent: #fb923c;   /* coral: the Shotyah section's signature */
	--shot-accent-2: #38bdf8;
	--shot-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

	background: var(--shot-bg) !important;
	color: var(--shot-text) !important;
	border: 1px solid var(--shot-line);
	border-radius: 14px;
	padding: 28px 24px 18px;
	margin: 24px auto;
	max-width: 960px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
	position: relative;
	overflow: hidden;
}

.shot-wrap::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--shot-accent) 0%, #f97316 50%, var(--shot-accent-2) 100%);
}

.shot-wrap * { box-sizing: border-box; }

.shot-eyebrow {
	font-family: var(--shot-mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--shot-accent);
}

.shot-title {
	margin: 6px 0 6px !important;
	color: var(--shot-text) !important;
	font-size: clamp(24px, 3.4vw, 32px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.shot-sub {
	margin: 0 0 20px !important;
	color: var(--shot-dim) !important;
	font-size: 14.5px;
	line-height: 1.55;
	max-width: 62ch;
}

.shot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.shot-card {
	display: block;
	background: var(--shot-bg-2);
	border: 1px solid var(--shot-line);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none !important;
	transition: transform 0.14s ease, border-color 0.14s ease;
}

.shot-card:hover { transform: translateY(-3px); border-color: var(--shot-accent); }

.shot-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #04101f;
}

.shot-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0 !important;
}

.shot-noimg {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--shot-mono);
	font-size: 12px;
	color: #3d5570;
}

.shot-badge {
	position: absolute;
	top: 10px; left: 10px;
	font-family: var(--shot-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #04121f;
	background: var(--shot-accent);
	border-radius: 6px;
	padding: 3px 9px;
}

.shot-meta { padding: 12px 14px 14px; }

.shot-name {
	color: var(--shot-text);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.shot-tag {
	color: var(--shot-dim);
	font-size: 13px;
	line-height: 1.45;
	margin-top: 5px;
}

.shot-url {
	font-family: var(--shot-mono);
	font-size: 11px;
	color: var(--shot-dim);
	margin-top: 4px;
	word-break: break-all;
}

.shot-cta {
	display: inline-block;
	margin-top: 12px;
	font-family: var(--shot-mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--shot-accent);
}

.shot-empty {
	font-family: var(--shot-mono);
	color: var(--shot-dim);
	font-size: 13.5px;
	padding: 26px 10px;
	text-align: center;
	border: 1px dashed var(--shot-line);
	border-radius: 10px;
}

.shot-foot {
	margin: 18px 0 0 !important;
	font-family: var(--shot-mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #3d5570 !important;
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	.shot-card { transition: none; }
}

@media (max-width: 480px) {
	.shot-wrap { padding: 22px 14px 14px; border-radius: 10px; }
	.shot-grid { grid-template-columns: 1fr; }
}
