/* Базовые переменные и сброс (ТопАгроБел) */
:root {
  --black: #080808;
  --yellow: #f4be00;
  --yellow-2: #ffd21a;
  --white: #ffffff;
  --gray: #f3f3f3;
  --line: #d8d8d8;
  --text: #171717;
  --muted: #565656;
  --container: 1120px;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px 34px),
    #fff;
  line-height: 1.5;
}

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

a {
  color: var(--black);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: #442f00;
}

.focus-ring:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
