/* wankbot theme — maps the mockup palette (templates/assets/css/style.css)
   onto fapcss tokens, then carries over the mockup's own classes.
   fap.bundle.css lives entirely in @layer base, so these unlayered rules win
   over both its light defaults and its prefers-color-scheme dark block. */

:root {
	color-scheme: dark; /* native inputs, scrollbars */

	/* fapcss tokens -> mockup palette */
	--fap-color-primary: #3b82f6; /* --accent */
	--fap-color-primary-inverse: #ffffff;
	--fap-color-bg: #121212; /* --bg-main */
	--fap-color-text: #e5e7eb; /* --text-primary */
	--fap-color-muted: #9ca3af; /* --text-secondary */
	--fap-color-border: #333333; /* mockup input border */
	--fap-color-secondary: #9ca3af;
	/* pinned to fap's own dark-scheme values: our override otherwise
	   disables its light/dark switching for these */
	--fap-color-success: #59c0a1;
	--fap-color-warning: #eead2b;
	--fap-color-danger: #db5757;
	--fap-font: 'JetBrains Mono', var(--fap-font-mono);

	/* the mockup's own names, so carried-over rules read unchanged */
	--bg-main: #121212;
	--bg-card: #1e1e1e;
	--accent: #3b82f6;
	--text-primary: #e5e7eb;
	--text-secondary: #9ca3af;
}

/* ---- carried over from templates/assets/css/style.css ---- */
header {
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}
header form {
	margin: 0;
}
header .header-search {
	flex: 1;
}
header .logout {
	margin-left: auto;
}
header .header-nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 600;
}
header .header-nav a:hover {
	color: var(--text-primary);
}

/* the run-health alarm pill. Composes .badge.bad/.warn so it inherits exactly the same
   colour language as the run tables; it is an <a>, so kill the underline. */
.notif-indicator {
	text-decoration: none;
	white-space: nowrap;
}

/* the alarm's detail is deliberately multi-line prose (a bulleted diagnosis + what to
   check); without this HTML whitespace-collapsing runs it into one unreadable line */
.notif-detail {
	white-space: pre-wrap;
	margin: 0.35rem 0;
	max-width: 70ch;
}

.search-bar {
	width: 100%;
	max-width: 600px;
	padding: 12px 20px;
	border-radius: 25px;
	border: 1px solid #333;
	background: #000;
	color: white;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	padding: 2rem;
}
/* movies + performers: smaller portrait covers/thumbs, at most 5 per row */
.grid-movies,
.grid-performers {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1100px) {
	.grid-movies,
	.grid-performers {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (max-width: 880px) {
	.grid-movies,
	.grid-performers {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 560px) {
	.grid-movies,
	.grid-performers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.card {
	background: var(--bg-card);
	border-radius: 8px;
	overflow: hidden;
}
/* the /config hub cards. auto-FIT (not auto-fill): with only a few cards the empty
   tracks collapse and the cards spread to fill the centred column, instead of
   auto-fill's empty right-hand tracks that make them look left-huddled. */
.config-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-top: 1rem;
}
.config-card {
	display: block;
	background: var(--bg-card);
	border-radius: 8px;
	padding: 16px 18px;
	color: inherit;
	text-decoration: none;
	border: 1px solid transparent;
}
.config-card:hover {
	border-color: var(--accent);
}
.config-card h3 {
	margin: 0 0 6px;
}
.config-card p {
	margin: 0;
}
.config-card a {
	color: inherit;
	text-decoration: none;
}
/* the per-site Series tab: the same card grid as /config, with a cover on top. The
   card's own padding would inset the image, so the thumb bleeds edge to edge and the
   text below keeps the inset instead. */
.series-card {
	padding: 0;
	overflow: hidden;
}
.series-card-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}
.series-card h3 {
	padding: 12px 18px 0;
}
.series-card p {
	padding: 0 18px 14px;
}
.site-card-entities {
	margin-top: 8px !important;
}
.site-card-entities a {
	color: var(--accent);
}
/* the per-site dashboard (overview tables + per-entity paginated tables) */
/* the overview: one full-width table per entity, stacked vertically (not columns) */
.dash-overview {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.dash-table {
	width: 100%;
}
.dash-table td:nth-child(3) {
	white-space: nowrap;
}
.dash-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}
.dash-section-head h2 {
	margin: 0 0 8px;
}
.dash-table td {
	vertical-align: middle;
}
.dash-thumb-cell {
	width: 56px;
}
.dash-thumb {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}
.dash-thumb-none {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-card);
	color: var(--muted, #888);
	font-weight: 600;
}
.card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.card-content {
	padding: 10px;
}
.card a {
	color: inherit;
	text-decoration: none;
}
.card .studio {
	color: var(--accent);
}

/* ---- backend-only layout (replaces the mockups' inline styles) ---- */
.landing {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	gap: 2rem;
}
.login-card {
	max-width: 24rem;
	margin: 15vh auto 0;
	padding: 0 1rem;
	text-align: center;
}
.login-card form {
	text-align: left;
}
.form-error {
	color: var(--fap-color-danger);
}
.results-layout {
	display: flex;
}
.results-layout aside {
	width: 250px;
	padding: 2rem;
	flex-shrink: 0;
}
.results-layout .grid {
	flex: 1;
}
.video-page {
	padding: 2rem;
	max-width: 1200px;
	margin: auto;
}
.video-player {
	background: #000;
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
}
.muted {
	color: var(--text-secondary);
}

/* ---- browse UI (grids, filters, detail pages) ---- */
.landing-nav {
	display: flex;
	gap: 1.5rem;
}
.landing-nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 600;
}
.landing-nav a:hover {
	color: var(--accent);
}
.browse-filters h3 {
	margin: 0 0 1rem;
}
.browse-filters .search-bar {
	width: 100%;
	margin-bottom: 1rem;
}
.filter-label {
	display: block;
	margin-bottom: 1rem;
	color: var(--text-secondary);
	font-size: 0.85rem;
}
.filter-label select {
	display: block;
	width: 100%;
	margin-top: 0.3rem;
	background: #000;
	color: var(--text-primary);
	border: 1px solid var(--fap-color-border);
	border-radius: 4px;
	padding: 0.4rem;
}
.card-portrait img {
	aspect-ratio: 3 / 4;
}
/* movie cards: DVD covers are 400x571 — the 7/10 box shows the whole cover */
.card-movie img,
.card-movie .card-noimg {
	aspect-ratio: 7 / 10;
}
.card-noimg {
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0a0a0a;
	color: var(--text-secondary);
	font-size: 2.5rem;
	font-weight: 700;
}
.card-portrait .card-noimg {
	aspect-ratio: 3 / 4;
}
.card-noimg.small {
	aspect-ratio: 16 / 9;
	font-size: 1.5rem;
}
.card .badge {
	margin-top: 0.25rem;
}
.pager {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem 2rem;
	gap: 1rem;
}
.pager-nav {
	display: flex;
	gap: 0.5rem;
}
.pager-btn {
	background: var(--bg-card);
	color: var(--text-primary);
	border: 1px solid var(--fap-color-border);
	border-radius: 6px;
	padding: 0.4rem 0.9rem;
	cursor: pointer;
	font: inherit;
}
.pager-btn:hover {
	border-color: var(--accent);
}

/* daily update log */
.log-datebar {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin: 1rem 0 2rem;
}
.log-datebar input[type='date'] {
	margin-left: 0.5rem;
}
.log-site {
	margin-top: 2rem;
}
.log-site h2 {
	margin-bottom: 0.5rem;
}

/* detail pages */
.detail {
	padding: 2rem;
	max-width: 1100px;
	margin: auto;
}
/* the config-area pages (config hub, sites overview, site board, affiliates,
   sitemap review) were full-bleed and sprawled ugly on wide screens. Constrain
   them to a centred 80% column (the dashboard's own `.detail` is excluded — it is
   already 1100px-capped). The card/table grids inside then lay out within it. */
.sites:not(.detail),
.sites-page {
	width: 90%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 2rem 0;
}
/* the site pages (dashboard, admin site) use `.detail` for its heading styles but
   want the same wide 90% column, not `.detail`'s 1100px cap (higher specificity) */
.detail.sites {
	width: 90%;
	max-width: 1500px;
}
/* breadcrumb: Sites › sitename.com › Entity › record */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
}
.breadcrumb a {
	color: var(--accent);
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb > span:last-child {
	color: var(--fap-color-text, #ddd);
}
.breadcrumb .crumb-sep {
	color: var(--muted, #888);
}
/* the browse page has no outer padding wrapper; give its breadcrumb the aside's gutter */
.page-crumb {
	padding: 1.5rem 2rem 0;
}
.page-crumb .breadcrumb {
	margin-bottom: 0;
}
.detail h1 {
	margin: 0.25rem 0 1rem;
}
.detail h2 {
	margin: 2rem 0 1rem;
}
.detail-head {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}
.detail-portrait {
	width: 260px;
	max-width: 100%;
	border-radius: 8px;
	object-fit: cover;
}
.detail-head-body {
	flex: 1;
	min-width: 260px;
}
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
}
.gallery img {
	width: 100%;
	border-radius: 6px;
	display: block;
}
/* the thumbnail is a <button> so the gallery is keyboard-reachable; strip the chrome
   so it still looks like a plain image grid */
.gallery-item {
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
	border-radius: 6px;
	line-height: 0;
}
.gallery-item:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
/* the lightbox is the one dialog that is not a card: it is a frame around one image */
dialog.lightbox {
	width: auto;
	max-width: 95vw;
	max-height: 95vh;
	padding: 0.5rem;
}
dialog.lightbox img {
	display: block;
	max-width: 100%;
	max-height: 80vh;
	border-radius: 4px;
	margin: 0 auto;
}
.lightbox-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding-top: 0.5rem;
}
.lightbox-bar button {
	font: inherit;
	cursor: pointer;
}
/* the raw-record view: two JSON blocks, wide content that must scroll in place rather
   than push the page sideways */
.raw-json {
	background: var(--bg-card);
	border: 1px solid color-mix(in srgb, var(--text-secondary) 22%, transparent);
	border-radius: 6px;
	padding: 0.75rem 1rem;
	overflow-x: auto;
	font-size: 0.8rem;
	line-height: 1.45;
	white-space: pre;
}
.raw-link {
	margin-top: 1.5rem;
	font-size: 0.85rem;
}
/* stored operator prose (an affiliate/site review). Same reason as `.notif-detail`:
   without pre-wrap, HTML collapses the newlines the textarea exists to preserve. */
.prose-note {
	white-space: pre-wrap;
	max-width: 70ch;
	margin: 0.75rem 0 1rem;
	padding: 0.6rem 0.9rem;
	border-left: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
	background: var(--bg-card);
	border-radius: 0 6px 6px 0;
}
.stack-form textarea {
	width: 100%;
	font: inherit;
	resize: vertical;
}
/* the affiliate site typeahead: a linked list and its search results */
.link-list {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 1rem;
	max-width: 40rem;
}
.link-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.35rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--text-secondary) 14%, transparent);
}
.link-list li.muted {
	border-bottom: 0;
}
.link-action {
	font: inherit;
	font-size: 0.8rem;
	cursor: pointer;
}
.site-search-label {
	display: block;
	max-width: 40rem;
}
.detail-player,
.detail-cover {
	width: 100%;
	max-width: 900px;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 8px;
	object-fit: contain;
}
/* DVD covers: front + back side by side (portrait), wrapping on narrow screens */
.cover-pair {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	max-width: 900px;
}
.cover-pair .cover-face {
	flex: 1 1 260px;
	min-width: 0;
	max-width: 440px;
	border-radius: 8px;
	object-fit: contain;
}
.detail-meta {
	margin: 0.75rem 0;
}
.detail-meta .badge {
	margin-left: 0.25rem;
}
.synopsis {
	max-width: 800px;
	line-height: 1.6;
}
.cast a,
.pairings a {
	color: var(--accent);
	text-decoration: none;
}
.attributes {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

/* ---- scrapes dashboard ---- */
.scrapes {
	padding: 2rem;
	max-width: 1100px;
	margin: auto;
}
.scrapes h1,
.scrapes h2 {
	margin: 0 0 1rem;
}
.scrapes .subhead {
	margin: -0.5rem 0 1.5rem;
}
.trigger-bar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 1rem 0 0.25rem;
}
.site-group {
	background: var(--bg-card);
	border-radius: 8px;
	padding: 0.75rem 1rem;
}
.site-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--fap-color-border);
}
.site-head .site-name {
	font-weight: 700;
	font-size: 1.05rem;
}
.site-head form {
	margin-left: auto;
}
.site-sitemaps {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.trigger-form {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-main);
	border: 1px solid var(--fap-color-border);
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
	margin: 0;
}
.trigger-form .trigger-name {
	font-weight: 600;
}
.trigger-form select {
	background: #000;
	color: var(--text-primary);
	border: 1px solid var(--fap-color-border);
	border-radius: 4px;
	padding: 0.2rem 0.4rem;
}
.queue,
.schedules {
	margin: 1.5rem 0;
}
.schedule-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
}
.schedule-form select,
.schedule-form input[type='number'] {
	background: #000;
	color: var(--text-primary);
	border: 1px solid var(--fap-color-border);
	border-radius: 4px;
	padding: 0.2rem 0.4rem;
}
.inline-form {
	display: inline;
	margin: 0;
}
.inline-form button.badge {
	border: none;
	cursor: pointer;
}
.link-button {
	background: none;
	border: none;
	color: var(--fap-color-danger);
	cursor: pointer;
	padding: 0;
	font: inherit;
	text-decoration: underline;
}
.runs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}
.runs-table th,
.runs-table td {
	padding: 0.5rem 0.75rem;
	text-align: left;
	border-bottom: 1px solid var(--fap-color-border);
	white-space: nowrap;
}
.runs-table th {
	color: var(--text-secondary);
	font-weight: 600;
}
.runs-table tbody tr:hover {
	background: var(--bg-card);
}
.runs-table a {
	color: var(--accent);
	text-decoration: none;
}
.badge {
	display: inline-block;
	padding: 0.1rem 0.5rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	background: var(--bg-card);
	color: var(--text-secondary);
}
.badge.ok {
	background: color-mix(in srgb, var(--fap-color-success) 20%, transparent);
	color: var(--fap-color-success);
}
.badge.bad {
	background: color-mix(in srgb, var(--fap-color-danger) 20%, transparent);
	color: var(--fap-color-danger);
}
.badge.warn {
	background: color-mix(in srgb, var(--fap-color-warning) 20%, transparent);
	color: var(--fap-color-warning);
}
.badge.live {
	background: color-mix(in srgb, var(--accent) 25%, transparent);
	color: var(--accent);
}
/* Provenance: which ingest source a site came from. `mixed` deliberately reads as a
   warning — the two sources are meant never to overlap on one site. */
.badge.source-api {
	background: color-mix(in srgb, var(--accent) 18%, transparent);
	color: var(--accent);
}
.badge.source-html {
	background: color-mix(in srgb, var(--text-secondary) 16%, transparent);
	color: var(--text-secondary);
}
.badge.source-mixed {
	background: color-mix(in srgb, var(--fap-color-warning) 20%, transparent);
	color: var(--fap-color-warning);
}
.summary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}
.summary-grid .stat {
	background: var(--bg-card);
	border-radius: 8px;
	padding: 0.75rem 1rem;
}
.summary-grid .stat .label {
	color: var(--text-secondary);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.summary-grid .stat .value {
	font-size: 1.3rem;
	margin-top: 0.2rem;
}
.failure-note {
	background: color-mix(in srgb, var(--fap-color-danger) 12%, transparent);
	border-left: 3px solid var(--fap-color-danger);
	padding: 0.75rem 1rem;
	border-radius: 4px;
	margin: 1rem 0;
}
.success-note {
	background: color-mix(in srgb, var(--accent) 12%, transparent);
	border-left: 3px solid var(--accent);
	padding: 0.75rem 1rem;
	border-radius: 4px;
	margin: 1rem 0;
}
.log-stream {
	background: #0a0a0a;
	border-radius: 8px;
	padding: 1rem;
	font-size: 0.8rem;
	line-height: 1.5;
	overflow-x: auto;
	max-height: 60vh;
	overflow-y: auto;
}
.log-line {
	display: flex;
	gap: 0.75rem;
	white-space: pre;
}
.log-line .ts {
	color: var(--text-secondary);
	flex-shrink: 0;
}
.log-line .ev {
	flex-shrink: 0;
	min-width: 11rem;
}
.log-line.error .ev,
.log-line.error .msg {
	color: var(--fap-color-danger);
}
.log-line.warn .ev {
	color: var(--fap-color-warning);
}
.log-line .msg {
	white-space: pre-wrap;
	word-break: break-word;
}
.back-link {
	color: var(--accent);
	text-decoration: none;
	display: inline-block;
	margin-bottom: 1rem;
}

/* --- scrapes dashboard: the events modal + count badges + the full-rescrape button --- */
.count-button {
	border: 0;
	cursor: pointer;
	font: inherit;
	font-size: 0.75rem;
	font-weight: 600;
}
.danger-button {
	color: var(--fap-color-danger);
	border-color: color-mix(in srgb, var(--fap-color-danger) 45%, transparent);
}
/* all app dialogs (run-events, add-site, paste-sample) share the card look */
dialog {
	background: var(--bg-card);
	color: inherit;
	border: 1px solid color-mix(in srgb, var(--text-secondary) 30%, transparent);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	width: min(90vw, 46rem);
	max-height: 85vh;
	overflow: auto;
}
dialog::backdrop {
	background: rgb(0 0 0 / 0.55);
}
dialog h3 {
	margin-top: 0;
}
.modal-close {
	margin-top: 0.75rem;
	text-align: right;
}

/* --- Sites section: header row, tab bar, forms --- */
.sites-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.primary-button {
	background: var(--accent);
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 0.4rem 0.9rem;
	font-weight: 600;
	cursor: pointer;
}
.mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 0.85em;
	color: var(--text-secondary);
}
.tab-bar {
	display: flex;
	gap: 1.25rem;
	border-bottom: 1px solid var(--fap-color-border);
	margin: 1rem 0 1.5rem;
}
.tab-bar .tab {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 600;
	padding: 0.5rem 0.1rem;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}
.tab-bar .tab:hover {
	color: var(--text-primary);
}
.tab-bar .tab.active {
	color: var(--text-primary);
	border-bottom-color: var(--accent);
}
.badge.small {
	font-size: 0.65rem;
	padding: 0.05rem 0.35rem;
}
.stack-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 44rem;
}
.stack-form label {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-weight: 600;
}
.stack-form input[type='text'],
.stack-form select,
.stack-form textarea {
	font: inherit;
	padding: 0.4rem 0.5rem;
	background: var(--bg-main);
	color: inherit;
	border: 1px solid var(--fap-color-border);
	border-radius: 6px;
}
.stack-form textarea {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	resize: vertical;
}
.entity-picker {
	border: 1px solid var(--fap-color-border);
	border-radius: 6px;
	padding: 0.5rem 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	align-items: center;
}
.entity-picker legend {
	padding: 0 0.35rem;
	color: var(--text-secondary);
}
.entity-picker label.inline,
.stack-form label.inline {
	flex-direction: row;
	align-items: center;
	gap: 0.35rem;
	font-weight: 400;
}
.form-actions {
	display: flex;
	gap: 0.75rem;
}
.tab-panel {
	margin-top: 0.5rem;
}

/* --- movie placeholder (no covers on this site): the film slate --- */
.movie-ph svg {
	width: 34%;
	max-width: 96px;
	height: auto;
	opacity: 0.55;
}
.detail-ph {
	max-width: 420px;
	aspect-ratio: 16 / 10;
	margin-bottom: 1rem;
}

/* --- placeholders admin: sample thumbnail + row actions --- */
.ph-thumb {
	width: 64px;
	height: 40px;
	object-fit: cover;
	border-radius: 4px;
	background: var(--bg-main);
}
.row-actions {
	display: flex;
	gap: 0.6rem;
	white-space: nowrap;
}
