.article-section {
  padding: 40px 60px;
}

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

.article-card-home {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.article-card-home:hover {
  transform: translateY(-5px);
}

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

.article-content {
  padding: 15px;
}
.fixBlogSingle{
  max-width: 400px;
  width: auto;
}
@media screen and (max-width:1024px) {
  .article-section{
    padding: 40px;
  }
  .article-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
}
.article-title {
  font-size: 18px;
  margin: 10px 0;
}

.article-desc {
  color: #555;
  font-size: 14px;
}

.blogClockTime {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.read-more {
  color: #3559C7;
  text-decoration: none;
  font-weight: 600;
}
@media screen and (max-width:350px) {
  .article-section{
    padding: 20px;
  }
}