.blog-section {
  text-align: center;
  margin: 40px 0;
}

.blog-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 300px;
  background: #F5F5F6;
  border-radius: 8px;
  overflow: hidden;
}

.blog-card:hover {
  color: #000000 !important;
}

.blog-card img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  margin-bottom: 1vh;
  border-radius: 5px;
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 15px;
}

.blog-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  min-height: 48px;
}

.blog-card p {
  margin: 0;
  line-height: 1.4;
  min-height: 60px;
}

.read-link {
  margin-top: 2vh;
  font-weight: bold;
}

.blog-button-container {
  margin-top: 40px;
}

.blog-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #F36A30;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.blog-button:hover {
  color: #ffffff !important;
  transform: scale(1.02)
}

.text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  text-align: center;
}

.article-meta {
  font-size: 14px;
  color: #888;
  margin: 8px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta span {
  display: inline-block;
}