@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --background: 44 87% 94%;
  --foreground: 0 0% 0%;
  --text: 0 0% 17%;
  --card: 44 87% 94%;
  --card-foreground: 0 0% 17%;
  --popover: 44 87% 94%;
  --popover-foreground: 0 0% 17%;
  --primary: 43 80% 46%;
  --primary-foreground: 0 0% 0%;
  --secondary: 221 47% 20%;
  --secondary-foreground: 0 0% 100%;
  --muted: 44 60% 88%;
  --muted-foreground: 0 0% 42%;
  --accent: 221 47% 20%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 221 47% 20% / 0.2;
  --input: 221 47% 20% / 0.2;
  --ring: 221 47% 20%;
  --radius: 0.5rem;
  --success: 196 52% 74%;
  --warning: 34 89% 85%;
  --error: 10 100% 86%;

  --brand-primary: 43 80% 46%;
  --brand-secondary: 221 47% 20%;
  --brand-background: 44 87% 94%;
  --brand-accent: 221 47% 20%;
  --brand-text: 0 0% 17%;
  --brand-header-bg: 44 87% 94%;
  --brand-footer-bg: 221 47% 20%;
  --brand-headline: 221 47% 20%;
  --brand-muted: 0 0% 42%;
}

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

html {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: hsl(var(--text));
  background-color: hsl(var(--background));
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: hsl(var(--accent));
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: hsl(var(--brand-primary));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: hsl(var(--brand-headline));
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  font-size: 1.625rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: hsl(var(--accent));
  color: hsl(var(--secondary-foreground));
  box-shadow: 0 4px 16px hsl(var(--brand-secondary) / 0.25);
}

.btn-primary:hover {
  transform: scale(1.03);
  background-color: hsl(221 47% 25%);
}

.btn-secondary {
  background-color: transparent;
  color: hsl(var(--text));
  border: 1.5px solid hsl(var(--text));
}

.btn-secondary:hover {
  transform: scale(1.03);
  background-color: hsl(var(--text));
  color: hsl(var(--background));
}

.card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1rem;
  box-shadow: 0 2px 8px hsl(0 0% 0% / 0.08);
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: hsl(var(--primary));
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px hsl(0 0% 0% / 0.12);
}

.card-top-accent::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.card-top-accent::before {
  width: 100%;
  height: 6px;
}

.input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: hsl(var(--text));
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--brand-secondary) / 0.2);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.input:focus {
  border-color: hsl(var(--accent));
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

.input::placeholder {
  color: hsl(var(--muted-foreground));
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: hsl(var(--brand-secondary));
  background-color: hsl(var(--brand-secondary) / 0.1);
  border-radius: 9999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(var(--brand-header-bg));
  border-bottom: 1px solid hsl(var(--brand-secondary) / 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-header a {
  color: hsl(var(--foreground));
}

.site-header a:hover {
  color: hsl(var(--brand-primary));
}

.site-header .nav-cta {
  background-color: hsl(var(--accent));
  color: hsl(var(--secondary-foreground));
  padding: 0.5rem 1.25rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.site-header .nav-cta:hover {
  background-color: hsl(221 47% 25%);
  color: hsl(var(--secondary-foreground));
}

.site-footer {
  background-color: hsl(var(--brand-footer-bg));
  color: hsl(0 0% 100% / 0.7);
  padding: 4rem 0 2rem;
}

.site-footer a {
  color: hsl(0 0% 100% / 0.7);
  transition: color 0.2s ease-in-out;
}

.site-footer a:hover {
  color: hsl(var(--brand-primary));
}

.site-footer .footer-key-link {
  color: hsl(var(--brand-primary));
}

.site-footer .footer-divider {
  border-color: hsl(0 0% 100% / 0.15);
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-accent {
  background-color: hsl(var(--accent));
}

.bg-card {
  background-color: hsl(var(--card));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-secondary {
  color: hsl(var(--secondary));
}

.text-accent {
  color: hsl(var(--accent));
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-card-foreground {
  color: hsl(var(--card-foreground));
}

.border-border {
  border-color: hsl(var(--border));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.prose {
  --tw-prose-body: hsl(var(--text));
  --tw-prose-headings: hsl(var(--text));
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39/10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255/10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0/50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.posts-archive-grid img {
  aspect-ratio: 16/9;
}
