#blog-category-tabs {
  margin-bottom: 20px;
}
.blog-tab {
  padding: 10px 20px;
  margin-right: 10px;
  background: #ddd;
  border: none;
  cursor: pointer;
  font-family: Satoshi-medium;
  font-size: 18px;
}
.blog-tab.active {
  background: #A2123D;
  color: white;
}

.blog-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin: 30px 0;
}
.blog-card {
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.blog-card-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.blog-card-content {
  padding: 15px;
  height: 200px;
  position: relative;
}
.blog-card-title {
  font-size: 20px;
  margin: 0 0 10px;
  line-height: 1.4;
  font-family: 'Satoshi-Bold';
}
.blog-card-date {
  font-size: 16px;
  color: #888;
  margin-bottom: 10px;
}
.blog-card-button {
  display: inline-block;
  padding: 8px 15px;
  color: #A2123D;
  text-decoration: none;
  font-size: 18px;
  font-family: Satoshi-medium;
  position: absolute;
  bottom: 15px;
}
.blog-card-button .button-icon {
  height: 14px;
  width: 14px;
  margin-left: 5px;
  position: relative;
  top: -2px;
}

#load-more-btn {
  padding: 10px 20px;
  border: 1px solid;
  background: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.blog-search-wrapper {
  margin-bottom: 30px;
}
.blog-search-suggestions {
  background: #fff;
  border: 1px solid #ddd;
  list-style: none;
  padding: 10px;
  margin: 0;
}
.blog-search-suggestions li {
  padding: 5px 0;
}
.blog-search-suggestions li a {
  text-decoration: none;
  color: #222;
}
 
