:root {
  --color-brand: #9a3412;
  --color-cta: #32bae7;
  --text-muted: #777;
  --border: #ddd;
  --font-main: Verdana, Geneva, Tahoma, sans-serif;
  --line-height: 1.7;
}

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

html {
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height);
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: var(--color-brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: var(--line-height);
  margin: 0 0 16px 0;
  color: #1a0a05;
}

p {
  margin: 0 0 16px 0;
  line-height: var(--line-height);
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 24px;
  margin: 0 0 16px 0;
}

li {
  line-height: var(--line-height);
  margin-bottom: 6px;
}

strong {
  font-weight: 700;
}

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

table {
  width: 100%;
  border-collapse: collapse;
  max-width: 100%;
}

.table-responsive,
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: var(--line-height);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

th {
  font-weight: 700;
  background-color: #f9f3f0;
  color: #1a0a05;
}

tbody tr:hover {
  background-color: #fdf7f4;
}

input, textarea, select, button {
  font-family: var(--font-main);
  font-size: 16px;
}

input[type="email"],
input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  line-height: var(--line-height);
  transition: border-color 0.2s;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-brand);
}

.card-category {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brand);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-sep {
  color: #aaa;
  margin: 0 4px;
}

.card-date {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-top: 12px;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  .grid, [class*="grid"] {
    grid-template-columns: 1fr !important;
  }

  th, td {
    font-size: 13px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }
}