.bog-cards .bog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

.bog-cards .bog-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.bog-cards .bog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.bog-cards .bog-img {
  overflow: hidden;
  height: 100%;
}

.bog-cards .bog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.bog-cards .bog-card:hover .bog-img img {
  transform: scale(1.1);
}

.bog-cards .bog-content {
  padding: 20px;
  flex-grow: 1;
}

.bog-cards .bog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.bog-cards .bog-content .title {
  font-weight: bold;
  color: #2e7d32;
  margin-bottom: 8px;
}

.bog-cards .bog-content p {
  transition: color 0.3s ease;
}

.bog-cards .bog-card:hover .bog-content p {
  color: #333;
}
