.tips-layout {
  align-items: flex-start;
}

.tips-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.tips-card-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tips-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tips-links .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tips-links-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

@media (max-width: 767px) {
  .tips-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
