:root {
  --bg: #ffffff;
  --text: #123257;
  --muted: #355476;
  --border: #cfdbea;
  --iab-blue: #003f7d;
  --iab-teal: #00a3ad;
}

@font-face {
  font-family: "Source_Sans_Pro_Regular";
  src: url("/fonts/SourceSansPro-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Source_Sans_Pro_Regular_Semi_Bold";
  src: url("/fonts/SourceSansPro-SemiBold.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source_Sans_Pro_Regular";
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

body * {
  font-family: "Source_Sans_Pro_Regular";
}

h1,
h2,
h3 {
  font-family: "Source_Sans_Pro_Regular_Semi_Bold";
  color: var(--iab-blue);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 14px 28px;
}

h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.35rem);
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

p {
  margin: 0 0 0.95rem;
  line-height: 1.55;
}

strong {
  font-family: "Source_Sans_Pro_Regular_Semi_Bold";
  font-weight: 600;
}

a {
  color: #0f5c9c;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

main.container > :last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.data-details {
  margin-top: 10px;
}

.data-details summary {
  cursor: pointer;
  font-family: "Source_Sans_Pro_Regular_Semi_Bold";
  color: var(--iab-blue);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.table-actions {
  margin-top: 8px;
}

.download-btn {
  border: 1px solid #c9d8ea;
  background: #eef4fb;
  color: #123257;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: "Source_Sans_Pro_Regular";
}

.download-btn:hover {
  background: #e3eefb;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.data-table caption {
  text-align: left;
  padding: 10px 12px 6px;
  font-family: "Source_Sans_Pro_Regular_Semi_Bold";
  color: var(--muted);
}

.data-table th,
.data-table td {
  padding: 8px 10px;
  border-top: 1px solid #e2eaf4;
  text-align: left;
  font-size: 0.9rem;
}

.data-table thead th {
  border-top: 0;
  background: #eef4fb;
  color: #123257;
  font-family: "Source_Sans_Pro_Regular_Semi_Bold";
}
