
/* Hero */
.blog-hero {
  background: linear-gradient(135deg,#0d1117,#111827);
  padding: 140px 20px 100px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 48px;
  color: #C9A227;
}

.blog-hero p {
  color: #aaa;
  margin-top: 15px;
  letter-spacing: 2px;
}

/* Blog Grid */
.blog-section {
  background: #0d1117;
  padding: 100px 20px;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 40px;
}

/* Glass Blog Card */
.blog-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.category {
  font-size: 12px;
  color: #C9A227;
  letter-spacing: 2px;
}

.blog-content h3 {
  margin: 15px 0;
  color: #fff;
}

.blog-content p {
  color: #aaa;
  line-height: 1.6;
}

.blog-content a {
  color: #C9A227;
  text-decoration: none;
  position: relative;
}

.blog-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #C9A227;
  transition: 0.3s;
}

.blog-content a:hover::after {
  width: 100%;
}

/* Newsletter */
.newsletter-section {
  background: #111827;
  padding: 80px 20px;
  text-align: center;
}

.newsletter-section h2 {
  color: #C9A227;
  margin-bottom: 30px;
}

.newsletter-section input {
  padding: 12px 20px;
  width: 280px;
  border-radius: 30px;
  border: none;
}

.newsletter-section button {
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  background: #C9A227;
  color: #000;
  margin-left: 10px;
  cursor: pointer;
}