.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
  text-align: left;
}
.blog-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}
.blog-content p {
  color: #666;
  font-size: 14px;
  margin: 10px 0;
}
.blog-content .date {
  font-size: 12px;
  color: #999;
  margin-bottom: 15px;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #007bff;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.read-more:hover {
  background: #007bff;
  color: #fff;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 550px; /* Fixed height for the card */
}

.blog-card img {
  width: 100%;
  height: 250px; /* Fixed height for the image */
  object-fit: contain; /* Ensure the image maintains its aspect ratio */
}

.blog-content {
  padding: 20px;
  flex-grow: 1; /* Allow the content area to take up remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures the elements (like the button) stay spaced out */
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #007bff;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.read-more:hover {
  background: #007bff;
  color: #fff;
}
.rounded-circle {
  height: 100px !important;
  width: 100px !important;
}
