/* TheOP Cards — front-end styles. Scoped under .opc-* so it won't fight the theme.
   All colours consume the theme's --opc-* design tokens (defined in the theme's
   style.css for both light + dark). No hardcoded theme colours here, so the
   catalog, movers, prices, tables and forms flip correctly with the theme.
   The only literal colours are the external store brands (Amazon/TCGplayer/…),
   which are self-contained buttons and must keep their brand identity. */

.opc-browse { --opc-gap: 1rem; }

/* Filters bar */
.opc-filters {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	align-items: center;
	margin: 0 0 1.5rem;
}
.opc-filters__search {
	flex: 1 1 220px;
	min-width: 180px;
	padding: .55rem .75rem;
	border: 1px solid var(--opc-border);
	border-radius: var(--opc-radius-sm);
	background: var(--opc-surface);
	color: var(--opc-text);
	font-size: 1rem;
}
.opc-filters__search::placeholder { color: var(--opc-muted); }
.opc-filters__select {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 100%;   /* never let a long option name overflow the viewport */
	padding: .55rem .5rem;
	border: 1px solid var(--opc-border);
	border-radius: var(--opc-radius-sm);
	background: var(--opc-surface);
	color: var(--opc-text);
	font-size: .95rem;
}
.opc-filters__go {
	padding: .55rem 1rem;
	border: 0;
	border-radius: var(--opc-radius-sm);
	background: var(--opc-brand);
	color: var(--opc-on-brand);
	font-weight: 600;
	cursor: pointer;
	transition: background-color .12s ease;
}
.opc-filters__go:hover { background: var(--opc-brand-hover); }

/* Price range */
.opc-filters__price {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: 0 .3rem 0 .6rem;
	border: 1px solid var(--opc-border);
	border-radius: var(--opc-radius-sm);
	background: var(--opc-surface);
}
.opc-filters__cur { color: var(--opc-muted); font-size: .95rem; }
.opc-filters__dash { color: var(--opc-muted); }
.opc-filters__num {
	width: 5.5rem;
	padding: .55rem .4rem;
	border: 0;
	background: transparent;
	color: var(--opc-text);
	font-size: .95rem;
}
.opc-filters__num::placeholder { color: var(--opc-muted); }
.opc-filters__num:focus { outline: none; }
.opc-filters__price:focus-within { border-color: var(--opc-brand); }

/* Quick-search chips */
.opc-chips { display:flex; flex-wrap:wrap; align-items:center; gap:.5rem; margin:0 0 1rem; }
.opc-chips__label { font-size:.85rem; color:var(--opc-muted); font-weight:600; }
.opc-chip {
	font-size:.85rem; text-decoration:none; color:var(--opc-text);
	background:var(--opc-surface-2); border:1px solid var(--opc-border); border-radius:var(--opc-radius-pill); padding:.3rem .8rem;
	transition:background-color .12s ease, border-color .12s ease;
}
.opc-chip:hover { background:var(--opc-surface); border-color:var(--opc-teal); }

/* Result count */
.opc-count { font-size:.9rem; color:var(--opc-muted); margin:0 0 .75rem; }

/* Hub header (set / character / … archive) */
.opc-hub__head { margin:0 0 1.5rem; position: relative; }
/* Faint compass-rose watermark in the corner of every hub header. */
.opc-hub__head::after {
	content: ""; position: absolute; top: -4px; right: 0;
	width: 86px; height: 86px; pointer-events: none;
	background: var(--opc-brass);
	-webkit-mask: var(--opc-ico-compass-rose) center / contain no-repeat;
	mask: var(--opc-ico-compass-rose) center / contain no-repeat;
	opacity: .14;
}
@media (max-width: 640px) { .opc-hub__head::after { display: none; } }
.opc-hub__kicker {
	font-size:.75rem; letter-spacing:.12em; text-transform:uppercase;
	color:var(--opc-eyebrow); font-weight:700; margin:0 0 .25rem;
}
.opc-hub__title { font-size:clamp(1.8rem,4vw,2.6rem); line-height:1.1; margin:0 0 .4rem; }
.opc-hub__desc { color:var(--opc-muted); max-width:60ch; margin:0; }

/* Grid of card tiles */
.opc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: var(--opc-gap);
}
.opc-tile {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: var(--opc-surface);
	border: 1px solid var(--opc-border);
	border-radius: var(--opc-radius);
	overflow: hidden;
	transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.opc-tile:hover { transform: translateY(-3px); box-shadow: var(--opc-shadow); border-color: var(--opc-teal); }
.opc-tile__media { aspect-ratio: 5 / 7; background: var(--opc-media); }
.opc-tile__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.opc-tile__meta { padding: .5rem .55rem .7rem; }
.opc-tile__code { display: block; font-size: .72rem; letter-spacing: .02em; color: var(--opc-muted); }
.opc-tile__name { display: block; font-size: .9rem; font-weight: 600; line-height: 1.2; color: var(--opc-text); }

.opc-empty { padding: 3rem 0; color: var(--opc-muted); text-align: center; }
/* Treasure-chest motif above the "no results" message. */
.opc-empty::before {
	content: ""; display: block; width: 58px; height: 58px; margin: 0 auto 1rem;
	background: var(--opc-brass);
	-webkit-mask: var(--opc-ico-chest) center / contain no-repeat;
	mask: var(--opc-ico-chest) center / contain no-repeat;
	opacity: .55;
}

/* Pagination */
.opc-pagination { display: flex; flex-wrap: wrap; gap: .35rem; margin: 1.75rem 0; justify-content: center; }
.opc-pagination .page-numbers {
	padding: .4rem .7rem; border: 1px solid var(--opc-border); border-radius: var(--opc-radius-sm);
	text-decoration: none; color: var(--opc-text); background: var(--opc-surface);
}
.opc-pagination a.page-numbers:hover { border-color: var(--opc-teal); }
.opc-pagination .current { background: var(--opc-brand); color: var(--opc-on-brand); border-color: var(--opc-brand); }

/* Single card layout */
.opc-card {
	display: grid;
	grid-template-columns: minmax(260px, 380px) 1fr;
	gap: 2rem;
	align-items: start;
	margin: 0 0 2rem;
}
.opc-card__media img { width: 100%; height: auto; border-radius: var(--opc-radius); box-shadow: var(--opc-shadow); }
@media (max-width: 720px) { .opc-card { grid-template-columns: 1fr; } }

.opc-attrs { width: 100%; border-collapse: collapse; margin: 0 0 1.25rem; }
.opc-attrs th, .opc-attrs td { text-align: left; padding: .5rem .25rem; border-bottom: 1px solid var(--opc-border); vertical-align: top; }
.opc-attrs th { width: 40%; color: var(--opc-muted); font-weight: 600; }

.opc-ability { margin: 0 0 1.5rem; }
.opc-ability h2 { font-size: 1rem; margin: 0 0 .25rem; }

/* Buy buttons */
.opc-buy__title { font-size: 1.05rem; margin: 0 0 .6rem; }
.opc-buy__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .6rem; }
.opc-buy__btn {
	display: flex; flex-direction: column; gap: .15rem;
	padding: .7rem .85rem; border-radius: var(--opc-radius); text-decoration: none;
	background: var(--opc-brand); color: var(--opc-on-brand); transition: filter .12s ease;
}
.opc-buy__btn:hover { filter: brightness(1.08); }
.opc-buy__store { font-weight: 700; font-size: 1rem; }
.opc-buy__cta { font-size: .8rem; opacity: .9; }
/* External store brand colours (kept for brand recognition; self-contained). */
.opc-buy__btn--amazon { background: #ff9900; color: #14212e; }
.opc-buy__btn--tcgplayer { background: #e8461f; color: #fff; }
.opc-buy__btn--cardmarket { background: #17568f; color: #fff; }
.opc-buy__btn--ebay { background: #005cbf; color: #fff; }
.opc-buy__btn--bol { background: #0050c8; color: #fff; }
.opc-buy__btn--totalcards { background: #1f8a70; color: #fff; }
.opc-buy__btn--magicmadhouse { background: #6a2c8f; color: #fff; }
.opc-buy__btn--tcgarea { background: #b8322a; color: #fff; }
.opc-buy__btn--bigorbit { background: #2b3a67; color: #fff; }
.opc-buy__disclosure { margin: 1rem 0 0; font-size: .8rem; color: var(--opc-muted); line-height: 1.5; }

/* ---------- Price comparison / conversion buy block ---------- */
.opc-cmp { margin: 0; }

/* Hero: the one price + the one action, above the fold */
.opc-cmp__hero {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	gap: .8rem 1rem; padding: 1rem 1.1rem; margin: 0 0 1rem;
	background: var(--opc-surface-2); border: 1px solid var(--opc-border); border-radius: var(--opc-radius);
}
.opc-cmp__lead { display: flex; flex-direction: column; gap: .1rem; }
.opc-cmp__lead-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .04em; color: var(--opc-muted); font-weight: 700; }
.opc-cmp__lead-price { font-size: 2rem; font-weight: 800; line-height: 1; color: var(--opc-text); font-variant-numeric: tabular-nums; }
.opc-cmp__lead-shop { font-size: .85rem; color: var(--opc-muted); }
.opc-cmp__cta {
	display: inline-flex; align-items: center; justify-content: center;
	padding: .8rem 1.3rem; border-radius: var(--opc-radius); text-decoration: none;
	font-weight: 800; font-size: 1.02rem; white-space: nowrap;
	background: var(--opc-brand); color: var(--opc-on-brand); transition: filter .12s ease, transform .12s ease;
}
.opc-cmp__cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.opc-cmp__hero .opc-cmp__lead-price { flex: 0 0 auto; }

/* Trust + urgency line */
.opc-cmp__trust { flex-basis: 100%; margin: 0; font-size: .82rem; color: var(--opc-muted); display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; }
.opc-cmp__dot { opacity: .5; }
.opc-cmp__trend--up { color: #c0392b; font-weight: 700; }
.opc-cmp__trend--down { color: #1f8a70; font-weight: 700; }
.opc-cmp__sold { font-weight: 600; color: var(--opc-text); }

/* Comparison table */
.opc-cmp__table { width: 100%; border-collapse: collapse; margin: 0 0 1rem; }
.opc-cmp__row td { padding: .6rem .5rem; border-bottom: 1px solid var(--opc-border); vertical-align: middle; }
.opc-cmp__row--best { background: color-mix(in srgb, var(--opc-teal, #1f8a70) 10%, transparent); }
.opc-cmp__row--best td:first-child { border-left: 3px solid var(--opc-teal, #1f8a70); }
.opc-cmp__shop { font-weight: 700; color: var(--opc-text); }
.opc-cmp__badge { display: inline-block; margin-left: .5rem; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: #fff; background: var(--opc-teal, #1f8a70); border-radius: var(--opc-radius-pill, 999px); padding: .12rem .5rem; vertical-align: middle; }
.opc-cmp__price { font-weight: 800; color: var(--opc-text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.opc-cmp__price--na { color: var(--opc-muted); font-weight: 600; }
.opc-cmp__note { display: block; font-size: .7rem; font-weight: 500; color: var(--opc-muted); }
.opc-cmp__go { text-align: right; width: 1%; white-space: nowrap; }
.opc-cmp__go .opc-buy__btn { display: inline-block; padding: .45rem .9rem; font-weight: 700; font-size: .9rem; }

/* Graded value tabs */
.opc-cmp__grades { border-top: 1px solid var(--opc-border); padding-top: .9rem; }
.opc-cmp__grades-title { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--opc-muted); font-weight: 700; margin: 0 0 .6rem; }
.opc-cmp__grades-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.opc-cmp__grade { flex: 1 1 120px; background: var(--opc-surface); border: 1px solid var(--opc-border); border-radius: 10px; padding: .6rem; text-align: center; }
.opc-cmp__grade-g { display: block; font-size: .72rem; color: var(--opc-muted); font-weight: 700; }
.opc-cmp__grade-v { display: block; font-size: 1.1rem; font-weight: 800; color: var(--opc-text); margin: .1rem 0 .45rem; font-variant-numeric: tabular-nums; }
.opc-cmp__grade-buy { display: flex; gap: .3rem; justify-content: center; }
.opc-cmp__grade-link { font-size: .72rem; font-weight: 700; text-decoration: none; padding: .28rem .55rem; border-radius: 7px; color: #fff; }
.opc-cmp__grades-note { font-size: .75rem; color: var(--opc-muted); margin: .7rem 0 0; }

/* Sticky mobile buy bar */
.opc-sticky {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
	display: flex; align-items: center; justify-content: space-between; gap: .8rem;
	padding: .6rem .9rem; background: var(--opc-surface); border-top: 1px solid var(--opc-border);
	box-shadow: 0 -4px 16px rgba(0,0,0,.12);
}
.opc-sticky[hidden] { display: none; }
.opc-sticky__label { font-size: .9rem; color: var(--opc-muted); }
.opc-sticky__label strong { color: var(--opc-text); font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.opc-sticky__cta {
	display: inline-flex; align-items: center; padding: .65rem 1.1rem; border-radius: var(--opc-radius);
	text-decoration: none; font-weight: 800; background: var(--opc-brand); color: var(--opc-on-brand); white-space: nowrap;
}
/* The bar is a mobile-first nicety; hide on wide screens where the hero CTA stays reachable. */
@media (min-width: 782px) { .opc-sticky { display: none !important; } }

/* Sealed-product block on set hubs */
.opc-sealed { margin: 0 0 2rem; max-width: 760px; background: var(--opc-surface-2); border: 1px solid var(--opc-border); border-radius: var(--opc-radius); padding: 1.1rem 1.2rem; }
.opc-sealed .opc-buy__title { margin-top: 0; }

/* Price block */
.opc-price { background: var(--opc-surface-2); border: 1px solid var(--opc-border); border-radius: var(--opc-radius); padding: 1rem 1.1rem; margin: 0 0 1.25rem; }
.opc-price__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.opc-price__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--opc-muted); font-weight: 700; }
.opc-price__value { font-size: 1.9rem; font-weight: 800; color: var(--opc-text); line-height: 1; font-variant-numeric: tabular-nums; }
.opc-price__meta { font-size: .78rem; color: var(--opc-muted); margin: .2rem 0 0; }
.opc-price__soon { color: var(--opc-muted); margin: 0; font-size: .95rem; }
.opc-chart { display: block; width: 100%; height: 140px; margin: .8rem 0 .2rem; }
.opc-grades { margin-top: .9rem; border-top: 1px solid var(--opc-border); padding-top: .8rem; }
.opc-grades__title { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--opc-muted); font-weight: 700; margin: 0 0 .5rem; }
.opc-grades__row { display: flex; flex-wrap: wrap; gap: .5rem; }
.opc-grade { flex: 1 1 90px; background: var(--opc-surface); border: 1px solid var(--opc-border); border-radius: 9px; padding: .5rem .6rem; text-align: center; }
.opc-grade__g { display: block; font-size: .72rem; color: var(--opc-muted); font-weight: 700; }
.opc-grade__v { display: block; font-weight: 700; color: var(--opc-text); font-variant-numeric: tabular-nums; }
.opc-grades__note { font-size: .72rem; color: var(--opc-muted); margin: .55rem 0 0; line-height: 1.5; }

/* Movers */
.opc-movers { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.opc-mover { display: flex; flex-direction: column; gap: .35rem; text-decoration: none; color: inherit; }
.opc-mover__media { aspect-ratio: 5 / 7; background: var(--opc-media); border-radius: var(--opc-radius-sm); overflow: hidden; border: 1px solid var(--opc-border); }
.opc-mover__media img { width: 100%; height: 100%; object-fit: contain; }
.opc-mover__name { font-size: .85rem; font-weight: 600; line-height: 1.2; color: var(--opc-text); }
.opc-mover__row { display: flex; align-items: baseline; justify-content: space-between; gap: .4rem; }
.opc-mover__price { font-size: .85rem; font-weight: 700; color: var(--opc-text); font-variant-numeric: tabular-nums; }
.opc-mover__pct { font-size: .8rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.opc-mover__pct.is-up { color: var(--opc-up); }
.opc-mover__pct.is-down { color: var(--opc-down); }

/* Price alert form */
.opc-alert { margin: 0 0 1.5rem; }
.opc-alert__label { display: block; font-size: .85rem; font-weight: 600; color: var(--opc-muted); margin-bottom: .4rem; }
.opc-alert__row { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.opc-alert__cur { font-weight: 700; color: var(--opc-muted); }
.opc-alert input { padding: .5rem .6rem; border: 1px solid var(--opc-border); border-radius: var(--opc-radius-sm); background: var(--opc-surface); color: var(--opc-text); font-size: .92rem; }
.opc-alert__target { width: 6rem; font-variant-numeric: tabular-nums; }
.opc-alert__email { flex: 1 1 160px; min-width: 140px; }

/* Add to collection / watchlist */
.opc-mycards { display: flex; gap: .6rem; flex-wrap: wrap; margin: 0 0 1.5rem; }
.opc-add {
	display: inline-flex; align-items: center; gap: .4rem; cursor: pointer;
	padding: .55rem .9rem; border: 1px solid var(--opc-border); border-radius: var(--opc-radius);
	background: var(--opc-surface); color: var(--opc-text); font-size: .92rem; font-weight: 600;
	transition: background-color .12s ease, border-color .12s ease, color .12s ease;
}
.opc-add:hover { background: var(--opc-surface-2); }
.opc-add.is-active { background: var(--opc-brand); color: var(--opc-on-brand); border-color: var(--opc-brand); }
.opc-add--wl.is-active { background: var(--opc-brass); border-color: var(--opc-brass); color: #14212e; }

/* My collection / watchlist pages */
.opc-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: .8rem; margin: 0 0 1.25rem; }
.opc-stat { background: var(--opc-surface-2); border: 1px solid var(--opc-border); border-radius: var(--opc-radius); padding: .9rem 1rem; }
.opc-stat__v { display: block; font-size: 1.5rem; font-weight: 700; color: var(--opc-text); line-height: 1.1; }
.opc-stat__l { display: block; font-size: .8rem; color: var(--opc-muted); margin-top: .15rem; }
.opc-mine__bar { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1rem; }
.opc-btn { cursor: pointer; border: 0; border-radius: var(--opc-radius-sm); background: var(--opc-brand); color: var(--opc-on-brand); font-weight: 600; font-size: .88rem; padding: .5rem .9rem; transition: background-color .12s ease; }
.opc-btn:hover { background: var(--opc-brand-hover); }
.opc-btn--ghost { background: var(--opc-surface-2); color: var(--opc-text); border: 1px solid var(--opc-border); }
.opc-btn--ghost:hover { background: var(--opc-surface); border-color: var(--opc-teal); }
.opc-table-wrap { overflow-x: auto; }
.opc-mine__table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.opc-mine__table th, .opc-mine__table td { text-align: left; padding: .5rem .55rem; border-bottom: 1px solid var(--opc-border); vertical-align: middle; }
.opc-mine__table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; color: var(--opc-muted); }
.opc-mine__table input, .opc-mine__table select { padding: .35rem .4rem; border: 1px solid var(--opc-border); border-radius: 6px; background: var(--opc-surface); color: var(--opc-text); font-size: .9rem; }
.opc-mine__table input[type="number"] { width: 5.5rem; font-variant-numeric: tabular-nums; }
.opc-mine__card a { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; }
.opc-mine__card img { border-radius: 4px; }
.opc-mine__card span { display: flex; flex-direction: column; line-height: 1.2; }
.opc-mine__card b { font-size: .75rem; color: var(--opc-muted); font-weight: 600; }
.opc-mine__val { font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }
.opc-val--none, .opc-val--wait { color: var(--opc-muted); font-weight: 400; }
.opc-stat__v.opc-pl-up { color: var(--opc-up); }
.opc-stat__v.opc-pl-down { color: var(--opc-down); }
.opc-mine__note { font-size: .74rem; color: var(--opc-muted); margin: .6rem 0 0; line-height: 1.5; }
.opc-x { cursor: pointer; border: 0; background: none; color: var(--opc-accent); font-size: 1.3rem; line-height: 1; padding: 0 .3rem; }
.opc-tile { position: relative; }
.opc-x--corner { position: absolute; top: 6px; right: 6px; background: color-mix(in srgb, var(--opc-surface) 90%, transparent); color: var(--opc-accent); border-radius: 50%; width: 26px; height: 26px; box-shadow: var(--opc-shadow-sm); }
.opc-tile__link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }

/* Guides + submission form */
.opc-guides { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.opc-guide { display: flex; flex-direction: column; gap: .35rem; padding: 1rem 1.1rem; text-decoration: none; color: inherit; border: 1px solid var(--opc-border); border-radius: var(--opc-radius); background: var(--opc-surface); transition: box-shadow .12s ease, transform .12s ease, border-color .12s ease; }
.opc-guide:hover { box-shadow: var(--opc-shadow); transform: translateY(-2px); border-color: var(--opc-teal); }
.opc-guide__title { font-weight: 700; color: var(--opc-text); line-height: 1.25; }
.opc-guide__excerpt { font-size: .88rem; color: var(--opc-muted); }

.opc-submit { max-width: 640px; }
.opc-field { display: flex; flex-direction: column; gap: .3rem; margin: 0 0 1rem; }
.opc-field label { font-weight: 600; font-size: .9rem; color: var(--opc-text); }
.opc-field input, .opc-field textarea { padding: .6rem .7rem; border: 1px solid var(--opc-border); border-radius: var(--opc-radius-sm); background: var(--opc-surface); color: var(--opc-text); font: inherit; }
.opc-field input::placeholder, .opc-field textarea::placeholder { color: var(--opc-muted); }
.opc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .opc-field-row { grid-template-columns: 1fr; } }
.opc-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.opc-submit__note { font-size: .82rem; color: var(--opc-muted); margin-top: .5rem; }
.opc-notice { padding: .8rem 1rem; border-radius: var(--opc-radius-sm); margin: 0 0 1.25rem; font-size: .95rem; }
.opc-notice--success { background: var(--opc-ok-bg); color: var(--opc-ok-fg); border: 1px solid var(--opc-ok-bd); }
.opc-notice--error { background: var(--opc-err-bg); color: var(--opc-err-fg); border: 1px solid var(--opc-err-bd); }

.opc-card__desc { margin-top: 1.5rem; }
.opc-card__legal { grid-column: 1 / -1; }
.opc-disclaimer { margin: 1.5rem 0 0; font-size: .78rem; line-height: 1.6; color: var(--opc-muted); }
