/* Shared styles across all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background: #1f2937;
}
/* Smooth transitions for Alpine.js components */
[x-cloak] { 
    display: none !important; 
}
/* Animation for expanding team member cards */
[data-expandable] {
    transition: all 0.3s ease;
    overflow: hidden;
}
/* Team member image styling */
.md\:w-1\/3 {
    background: transparent;
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
    display: flex;
    align-items: flex-start;
    padding: 2rem 1rem;
}
.md\:w-2\/3 {
    background: transparent;
    color: white;
}
@media (max-width: 767px) {
    .md\:w-1\/3 {
        width: 100%;
        border-top-left-radius: 0.75rem;
        border-top-right-radius: 0.75rem;
        border-bottom-left-radius: 0;
        padding: 1.5rem 0;
    }
.md\:w-2\/3 {
        border-bottom-left-radius: 0.75rem;
        border-bottom-right-radius: 0.75rem;
    }
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}