.bottom-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px;
}

@media (min-width: 768px) {
  .bottom-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bottom-cards .card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.bottom-cards .card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.bottom-cards .card:hover img {
  transform: scale(1.05);
}

.bottom-cards .card .content {
  padding: 20px;
}

.bottom-cards .card .date {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.bottom-cards .card h3 {
  color: #000;
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.bottom-cards .card:hover h3 {
  color: #ffd700;
}

@media (max-width: 768px) {
  .bottom-cards {
    grid-template-columns: 1fr;
  }
}
