/**
 * Showcase Section Styles - Custom Agency
 * Matches React Showcase.jsx
 */
.showcase-section {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #181717;
}

.showcase-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem;
    overflow: hidden;
    will-change: transform;
}

.showcase-card {
    position: relative;
    flex-shrink: 0;
    width: 92vw;
    height: 85vh;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(177, 166, 150, 0.2);
    background-color: rgba(42, 39, 37, 0.8);
}

@media (min-width: 640px) {
    .showcase-card {
        width: 85vw;
        border-radius: 2.5rem;
    }
}

@media (min-width: 768px) {
    .showcase-card {
        width: 70vw;
        height: 90vh;
    }
}

@media (min-width: 1024px) {
    .showcase-card {
        width: 60vw;
    }
}
