/* Row layout for dino images */
.dino-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.dino-row .work-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.dino-row .work-item a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.dino-row .work-item img {
  height: 450px; /* fixed height for consistency */
  width: 100%;
  object-fit: contain;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: none
}

@media (max-width: 768px) {
  .dino-row {
    flex-direction: column;
  }

  .dino-row .work-item img {
    height: auto;
    max-height: 450px;
  }
}