/* MidSouth Screens — parent base stub (child theme provides full design). */

:root {
  --ms-blue: #136AAF;
  --ms-blue-bright: #0A6CFF;
  --ms-navy: #0B1F3A;
  --ms-accent: #E8C204;
  --ms-bg: #F0F6FC;
  --ms-ink: #1D1D1D;
  --ms-muted: #5C5C5C;
  --ms-white: #fff;
  --ms-container: 1200px;
  --ms-font-body: "Inter Tight", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ms-font-body);
  color: var(--ms-ink);
  background: var(--ms-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ms-container {
  width: min(var(--ms-container), calc(100% - 2.5rem));
  margin-inline: auto;
}
