.gallery-section {
  padding-top: 20px;
  padding-bottom: 100px;
}

a.gallery-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

a.gallery-card:hover {
  text-decoration: none;
  color: inherit;
}

.gallery-card-container {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
}

.gallery-card {
  background: #fafafa;
  padding: 0px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background-color: #f3f3f3;
}

.gallery-card-b-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-img {
  width: 16px;
  height: 16px;
  object-fit: cover;
}
