/* Media Relations Agency | Publicity.com
   Jason Kocina — jkocina@mediarelations.com
   AGC Live Board – styles */

/* Base styles shared across light/dark */
.agc-wrap {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Header layout */
.agc-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.agc-title {
  margin: 0;
  font-size: 1.95rem;
  font-weight: 600;
}

.agc-timestamp {
  font-size: 1.95rem;
  font-weight: 600;
}

/* Spot metals row */
.agc-spot {
  margin: 0.5rem 0 1rem;
}

.agc-spot-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.agc-spot-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.agc-spot-item strong {
  font-weight: 600;
}

/* Product list */
.agc-board-list {
  display: grid;
  gap: 0.6rem;
}

.agc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
}

.agc-name {
  flex: 1;
  font-weight: 600;
}

.agc-price {
  min-width: 9ch;
  text-align: right;
  font-weight: 600;
}

/* ---------- Light theme (default site pages) ---------- */
body:not(.agc-tv-page) .agc-title,
body:not(.agc-tv-page) .agc-timestamp,
body:not(.agc-tv-page) .agc-name,
body:not(.agc-tv-page) .agc-price {
  color: #111;
}

body:not(.agc-tv-page) .agc-spot-item,
body:not(.agc-tv-page) .agc-row {
  background: #fff;
  border: 1px solid #ccc;
  color: #111;
}

/* ---------- Dark theme (TV template) ---------- */
body.agc-tv-page {
  background: #101114;
  color: #fff;
}

.agc-tv-page .agc-title,
.agc-tv-page .agc-timestamp,
.agc-tv-page .agc-name,
.agc-tv-page .agc-price {
  color: #fff;
}

.agc-tv-page .agc-timestamp { color: #bbb; }

.agc-tv-page .agc-spot-item,
.agc-tv-page .agc-row {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

/* Accent: gold color for Ask values (optional) */
.agc-price.agc-ask { color: #f8c25e; }

/* Responsive + TV scaling */
.agc-tv .agc-spot-item,
.agc-tv .agc-row { font-size: 2rem; }

.agc-mobile .agc-row {
  flex-direction: column;
  align-items: flex-start;
}
/* default: show full names, hide symbols */
.agc-label .label-full { display: inline; }
.agc-label .label-symbol { display: none; }
.agc-spot-row {
    margin-bottom: 6px;
}
/* on narrow screens, show symbols instead */
@media (max-width: 640px) {
  .agc-label .label-full { display: none; }
  .agc-label .label-symbol { display: inline; }
  .agc-spot-item strong { font-size: 63%!important; }
  
	
}

.agc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #ccc;
}

.agc-row > div {
  padding: 6px 10px;
}

.agc-row > div:last-child {
  border-right: none; /* no border on the last column */
}