/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
} */

.blog-header {
  text-align: center;
  padding: 60px 20px 40px;
}

.blog-header h1 {
  font-size: 48px;
  font-weight: 600;
  color: #00887a; /* Teal-like */
  margin-bottom: 12px;
}

.blog-stats {
  font-size: 16px;
  color: #555;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-stats .dot {
  color: #999;
}

/*  */

.blog-section {
  max-width: 1320px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  padding: 0 20px;
}

.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.blog-img {
  position: relative;
}

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

.category {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #00887a;
  color: #fff;
  padding: 4px 12px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 500;
}

.category.politics {
  background-color: #2c9e9e;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #000;
}

.blog-content p {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.read-more {
  font-size: 14px;
  color: #00887a;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

/*  */

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fff;
  padding: 40px;
} */

.blog-section {
  max-width: 1300px;
  margin: auto;
}

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

.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #00796B;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 4px;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 18px;
}

.blog-content a {
  color: #00796B;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
}

.blog-content a span {
  transition: margin-left 0.2s ease;
}

.blog-content a:hover span {
  margin-left: 5px;
}
