/* styles/graphics-feed-team.css
 *
 * Reserved for the future Graphics Feed page. Phase 1B does not attach this
 * stylesheet to any current Quarto document.
 */

.graphics-feed-shell {
  display: grid;
  gap: 1.5rem;
}

.graphics-feed-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid #e7eaf0;
  border-radius: 0.85rem;
  background: #ffffff;
}

.graphics-feed-card img,
.graphics-feed-card object {
  display: block;
  width: 100%;
  height: auto;
}

.graphics-feed-card figcaption {
  margin-top: 0.75rem;
  color: #667085;
  font-size: 0.9rem;
  line-height: 1.45;
}

.graphics-feed-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #f5f7fa;
  color: #14213d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .graphics-feed-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .graphics-feed-card--wide {
    grid-column: 1 / -1;
  }
}
