.showcase-filter {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}



.project-panel-carousel {
    flex: 1;
    min-width: 300px;
    height: 350px;
    overflow: hidden;
    border-radius: 0;
    z-index: 2;
    position: relative;
}
.project-carousel-track {
    display: flex;
    height: 100%;
}
.project-carousel-track img,
.project-carousel-track video,
.project-carousel-track model-viewer,
.project-carousel-track audio {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 0;
    background: #e5e7eb;
}
.project-carousel-prev,
.project-carousel-next {
    position: absolute;
    top: 175px;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    border-radius: 5px;
}
.project-carousel-prev { left: 0; }
.project-carousel-next { right: 0; }
.project-carousel-prev::after,
.project-carousel-next::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
}
.project-carousel-prev::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid var(--text-secondary);
    margin-right: 4px;
}
.project-carousel-next::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--text-secondary);
    margin-left: 4px;
}



.project-left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 150px;
    z-index: 2;
    margin-top: 240px;
    position: relative;
    clip-path: inset(-50px -2000px -50px 0)
}
.project-right-sidebar {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex: 0 0 145px;
    height: 65px;
    z-index: 5;
    position: relative;
    margin-top: 240px;
}
.project-sidebar-line {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    font-family: 'Quantico', sans-serif;
    color: var(--text-secondary, #555);
    font-size: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
}
.project-sidebar-line:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}
.project-sidebar-line:last-child {
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    right: auto;
    z-index: 1;
    animation: newsTicker 7s linear infinite;
    white-space: nowrap;
    word-spacing: 25px;
}

@keyframes newsTicker {
    0% {
        transform: translateX(400px);
    }
    100% {
        transform: translateX(-100%);
    }
}
.project-card-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    margin-top: 15px;
    position: relative;
}
.project-card-panel::before {
    content: '';
    position: absolute;
    left: -25px;
    right: -25px;
    top: 240px;
    height: 25px;
    background: #e5e7eb;
    z-index: 1;
    pointer-events: none;
}
.project-card-panel::after {
    content: '';
    position: absolute;
    left: -25px;
    right: -25px;
    top: 280px;
    height: 25px;
    background: #e5e7eb;
    z-index: 1;
    pointer-events: none;
}



.mentor-project-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
}
.mentor-project-card-image-wrapper {
    width: 100%;
    height: 100%;
}
.mentor-project-card.expanded {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    overflow: visible;
    padding: 0 0 0 0;
}
.mentor-project-card.expanded .mentor-project-card-image-wrapper {
    display: none !important
}
.mentor-project-card {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: var(--background-glass-secondary);
}



.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    border: 25px solid var(--background-glass-secondary);
    grid-auto-flow: dense;
}
@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}
@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
}



.showcase-empty-state {
    grid-column: 1 / -1;
    padding: 30px 20px;
    margin: 0;
    text-align: center;
}

.showcase-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 75px;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
}