/* ==========================================================================
   Base / reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--gt-font);
  color: var(--gt-text);
  background: var(--gt-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.5;
}

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

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font-family: inherit; font-size: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, p { margin: 0; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.gt-container {
  max-width: var(--gt-container);
  margin-inline: auto;
  padding-inline: var(--gt-gutter-tight);
}

.gt-section {
  max-width: var(--gt-container);
  margin-inline: auto;
  padding-inline: var(--gt-gutter);
}

@media (max-width: 640px) {
  .gt-section { padding-inline: var(--gt-gutter-tight); }
}

/* WordPress core alignment / gallery / caption defaults kept minimal but present */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gt-text-muted); }
