/* ==================== 
   Global Styles 
   ==================== */

/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base body styles */
html {
  scrollbar-gutter: stable;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #414141;
  font-weight: normal;
  line-height: 1.6;
}

/* Typography */
h1 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-weight: normal;
}

a {
  color: #414141;
  text-decoration: none;
}

/* Progress bar — global, appears on all pages */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #FF1A40;
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Blog container */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

@media (max-width: 480px) {
  .blog-container {
    padding: 1.5rem 1rem 4rem;
  }
}


