*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* font-size: clamp(0.875rem, 0.5rem + 1.5vw, 1.5rem); */
}

:root {
  /* Colors */
  --color-primary: #ff6b00;
  --color-secondary: #ff8533;
  --color-accent: #000000;

  /* Surfaces */
  --color-surface-bg: #1a1a1a;
  --color-surface-1: #111111;
  --color-surface-2: #222222;

  /* Text */
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-heading: "Inter", sans-serif;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-surface-bg);
  color: var(--color-text-main);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.block-editor-block-list__block {
  margin: 0;
  max-width: 100%;
}
.wp-block-post-title {
  color: white;
}
