/*
 * Centricity MF Screener Dashboard — Archive page CSS
 */
.arc-band {
  background: #fff; border-bottom: 1px solid var(--rule);
  padding: 28px 56px 22px;
}
.arc-band-inner { max-width: 1740px; margin: 0 auto; }
.arc-band h1 {
  margin: 0; font-size: 32px; font-weight: 700; letter-spacing: -.01em; line-height: 1.1;
}
.arc-band h1 em { font-style: italic; font-weight: 400; color: var(--gold-deep); }
.arc-band .sub { font-size: 13.5px; color: var(--text-mid); margin: 8px 0 0; max-width: 80ch; }

.arc-body {
  max-width: 1740px; margin: 0 auto;
  padding: 32px 56px 64px;
}

.arc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.arc-tile {
  background: #fff; border: 1px solid var(--rule); border-radius: 4px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 168px;
  position: relative; overflow: hidden;
}
.arc-tile:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.arc-tile.current { border-color: var(--gold); background: rgba(189, 149, 104, .04); }
.arc-tile .tag {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.arc-tile h3 {
  margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.01em;
}
.arc-tile .sub {
  font-size: 12px; color: var(--text-mid);
}
.arc-tile .stats {
  font-size: 11.5px; color: var(--text-mid);
  border-top: 1px dotted var(--grey-light); padding-top: 10px; margin-top: auto;
}
.arc-tile .stats b { color: var(--black); font-weight: 700; }
.arc-tile .cta {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  margin-top: 6px;
}

@media (max-width: 1380px) {
  .arc-grid { grid-template-columns: repeat(2, 1fr); }
  .arc-band, .arc-body { padding-left: 32px; padding-right: 32px; }
}
