/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f9faf9;
  color: #222;
  line-height: 1.6;
}

/* Header */
.header {
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
}

.logo span {
  color: #4CAF50;
  margin-left: 4px;
}

.nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav .cta {
  padding: 8px 16px;
  background: #4CAF50;
  color: #fff;
  border-radius: 6px;
}

/* Hero */
.hero {
  height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
  background: linear-gradient(to bottom right, #eaf7ec, #ffffff);
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: #444;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: #4CAF50;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Featured */
.featured {
  padding: 60px 6%;
}

.featured h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 35px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding-bottom: 20px;
}

.card img {
  width: 100%;
  height: auto;
}

.card h3 {
  margin: 15px;
  font-size: 1.3rem;
}

.card p {
  margin: 0 15px 15px;
  color: #555;
}

.read-more {
  margin-left: 15px;
  text-decoration: none;
  color: #4CAF50;
  font-weight: 600;
}

/* Newsletter */
.newsletter {
  padding: 60px 6%;
  text-align: center;
  background: #f2f8f3;
}

.newsletter form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input {
  padding: 12px;
  width: 280px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.newsletter button {
  padding: 12px 20px;
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  margin-top: 40px;
}

.breadcrumb {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #444;
  text-decoration: none;
}

/* Layout */
.blog-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* Article */
.blog-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.content h2 {
  margin-top: 30px;
  font-size: 1.6rem;
}

blockquote {
  border-left: 4px solid #111;
  padding-left: 15px;
  margin: 25px 0;
  font-style: italic;
  color: #444;
}

/* Sidebar */
.sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.sidebar h3 {
  margin-top: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 12px;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

/* Footer */
.blog-footer {
  margin-top: 60px;
  padding: 30px 0;
  background: #111;
  color: #fff;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
}

