/* [project]/styles/globals.css [client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-border-style: solid;
    }
  }
}

.sticky {
  position: sticky;
}

.z-30 {
  z-index: 30;
}

.container {
  width: 100%;
}

.mx-auto {
  margin-inline: auto;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.max-w-none {
  max-width: none;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}

.border-t {
  border-top-style: var(--tw-border-style);
  border-top-width: 1px;
}

.border-b {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
}

.text-center {
  text-align: center;
}

:root {
  --max-w: 920px;
  --bg: #fff;
  --text: #0b0b0b;
  --muted: #6b7280;
  --accent: #111827;
}

.dark :root, .dark {
  --bg: #0b0f12;
  --text: #e6eef6;
  --muted: #9ca3af;
  --accent: #9ca3af;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}

main {
  padding: 2.5rem 0;
}

.card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 1rem;
}

.card:hover {
  box-shadow: 0 6px 20px #02061714;
}

.nav-link {
  color: var(--muted);
  letter-spacing: .02em;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--text);
}

.hero-title {
  letter-spacing: -.02em;
  font-size: 32px;
  font-weight: 700;
}

.hero-sub {
  color: var(--muted);
  margin-top: .5rem;
}

.post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-item {
  margin-bottom: 1rem;
}

footer {
  margin-top: 3rem;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

/*# sourceMappingURL=styles_globals_0-xc3nc.css.map*/