* {
  box-sizing: border-box;
}

:root {
  /* Escala tipográfica editorial del sitio */
  --font-caption: 10px;
  --font-meta: 11px;
  --font-small: 12px;
  --font-ui: 13px;
  --font-body: 14px;
  --font-card-title: 17px;
  --font-section-title: 20px;
  --font-page-title: 27px;
}

html {
  font-size: var(--font-body);
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: var(--font-body);
  background: #fafafa;
  color: #333;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.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;
}
