.blog-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.blog-section__title {

  color: #2563eb;
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px black;
  font-size: 4.8rem;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2.4rem 4.8rem rgba(7, 20, 47, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: #000 1px 1px 10px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: #000 3px 6px 18px;
}

.blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card__content {
  padding: 20px;
  flex-grow: 1;
}

.blog-card__title {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
  line-height:2;
  font-weight: bold;
}

.blog-card__excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.blog-card__btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.3s ease;;
  box-shadow: #5182ef 2px 2px 10px;
}

.blog-card__btn:hover {
  background-color: #0b5ed7;
  box-shadow: #5182ef 3px 5px 12px;
}
