/* Travel tips blog card styles */
.trip-card {
  background: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s;
  height: 100%;
}
.trip-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.trip-img {
  position: relative;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.trip-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffc107;
  color: #222;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.trip-title {
  position: relative;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.1) 100%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 2;
}
@media (max-width: 768px) {
  .trip-img { height: 180px; }
}
