/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
}

/* Custom styles */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Animation for model cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#featured-models > div {
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
}

/* Delay animations for each card */
#featured-models > div:nth-child(1) { animation-delay: 0.1s; }
#featured-models > div:nth-child(2) { animation-delay: 0.2s; }
#featured-models > div:nth-child(3) { animation-delay: 0.3s; }
#featured-models > div:nth-child(4) { animation-delay: 0.4s; }
#featured-models > div:nth-child(5) { animation-delay: 0.5s; }
#featured-models > div:nth-child(6) { animation-delay: 0.6s; }