* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.blog_section {
  padding: 70px 100px;
  width: 100%;
  background-color: #f3f5ee;
  min-height: 850px;
  max-height: 850px;
  height: auto;
}

.blog_heading_with_button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog_heading_with_button h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #474747;
  font-family: 'Playfair Display', serif;
}

.blog_heading_with_button button {
  background-color: #b3002d;
  color: white;
  padding: 18px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
}

.blog_heading_with_button button:hover {
  background-color: #8a0022;
  transition: 0.3s;
}

.blog_container {
  display: flex;
  gap: 20px;
  min-width: 85%;
  max-height: 550px;
}

.blog_card {
  max-width: 560px;
  background-color: white;
  border-radius: 20px;
  height: 585px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;

}

.blog_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.blog_card img {
  width: 100%;
  height: 350px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  margin-bottom: 15px;
}

.date {
  font-size: 0.9rem;
  color: #474747;
  margin: 10px 0;
  font-family: sans-serif;
  margin-left: 20px;
}

.blog_card h3 {
  font-size: 1.2rem;
  color: #474747;
  font-family: sans-serif;
  font-weight: 700;
  margin: 10px 20px 20px 20px;
}

.blog_card p {
  font-size: 0.90rem;
  color: #474747;
  margin-bottom: 30px;
  font-family: sans-serif;
  font-weight: 500;
  margin: 0px 25px 0px 20px;
}

.blog_cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog_cards_items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog_item {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 270px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.blog_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.blog_item img {
  width: 100%;
  max-width: 270px;
  height: 160px;
  object-fit: cover;
}


.blog_item h3 {
  font-size: 1rem;
  color: #474747;
  font-family: sans-serif;
  font-weight: 700;
  margin: 10px 20px 20px 20px;
}