/* =========================
   1. Reset / Base
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #222;
  background: #fff;
  text-rendering: optimizeSpeed;
}

/* =========================
   2. Global Layout
========================= */

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-main {
  min-height: 60vh;
}

/* =========================
   3. Header
========================= */

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-size: 24px;
  font-weight: 700;
}

/* =========================
   4. Navigation
========================= */

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  transition: 0.3s ease;
}

.site-nav a:hover {
  opacity: 0.7;
}

/* =========================
   5. Footer
========================= */

.site-footer {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  margin-top: 40px;
}

.site-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   6. Typography Defaults
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

/* =========================
   7. Elementor Friendly
========================= */

.elementor-section-wrap {
  width: 100%;
}

.page-title {
  margin-bottom: 30px;
  font-size: 32px;
}

.blog-posts {
  display: grid;
  gap: 30px;
}

.blog-item {
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.post-thumbnail {
  display: block;
  margin-bottom: 15px;
}

.entry-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.entry-title a {
  color: #222;
}

.entry-title a:hover {
  color: #0073aa;
}

.entry-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.entry-excerpt {
  font-size: 16px;
}

.entry-content {
  margin-top: 20px;
}

.pagination {
  margin-top: 30px;
}