:root {
  --tams-dark: #0f172a;
  --tams-slate: #334155;
  --tams-light: #f8fafc;
  --tams-accent: #0d6efd;
}

body {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--tams-dark);
}

.hero {
  background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.14), transparent 28%), #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.logo-wrap {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.section-card,
.content-shell > .card,
.link-card {
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.25rem rgba(15, 23, 42, 0.06);
}

.link-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  height: 100%;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.9rem 1.5rem rgba(15, 23, 42, 0.1);
}

.icon-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.1);
  color: var(--tams-accent);
  font-weight: 700;
}

.small-muted {
  color: #64748b;
}

.content-shell h2,
.content-shell h3 {
  font-weight: 700;
}

.content-shell p,
.content-shell li {
  color: #475569;
}

.content-shell img,
.content-shell iframe,
.content-shell embed,
.content-shell object {
  max-width: 100%;
}

.asset-callout {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
}

.table-of-links a {
  text-decoration: none;
}
