/* ============================================
   KERJA-KAD PROJECT STYLES
   ============================================ */

/* Mobile App Showcase Grid */
.mobile-showcase {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mobile-showcase {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .mobile-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Enhance mobile screens with a premium app-like feel */
.mobile-showcase .craft-img-wrapper {
  background: var(--bg2);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}

.mobile-showcase .craft-img-wrapper:hover {
  transform: translateY(-5px);
}

.mobile-showcase .craft-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Slightly rounded for the screen */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto 1.5rem;
}

.mobile-showcase .craft-img-caption {
  text-align: center;
  font-size: 0.85rem;
  padding: 0 0.5rem;
}
