/* to be removed one we start blogging */
.blog-placeholder {
    text-align: center;
    background-color: #f8f4f0;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .big-message {
    font-size: 1.2rem;
    color: #13272B;
    margin-bottom: 20px;
  }
  /* up to here */




.blog-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 40px auto;  
  max-width: 1200px;  
  padding: 0 20px;    
}

.blog-card {
  background-color: #f8f4f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.blog-card:hover {
  background-color: #f3f2f1;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h2 {
  font-size: 1.5rem;
  color: #13272B;
  margin: 15px 20px 10px;
}

.blog-card h2 a {
  text-decoration: none;
  color: inherit;
}

.blog-card p {
  font-size: 1rem;
  color: #13272B;
  margin: 0 20px 15px;
}

.primary-btn {
  margin: 0 20px 20px;
 
}