.showcase {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 10px; /* adjust top/bottom padding as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.showcase-content {
    color: white; /* You can adjust based on your background */
    max-width: 1000px;
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap; /* Prevent wrapping */
    transform-origin: center;
    transition: all 1s ease;
}

.showcase-content div{
    width: 100%;
}

.wrapping-container{
    flex-direction: row;
    display: flex;
}

.wrapping-grid{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
}

@media (max-width: 768px){
    .wrapping-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .wrapping-grid {
        grid-auto-flow: row;
        grid-auto-rows: auto;
        grid-template-columns: none !important;
    }
}

.section-label {
    text-align: left;
    font-weight: bold;
    color: white;
    padding: 0.5em 1em 0.75em 1em;
    display: inline-block;
    text-shadow: 2px 3px 2px black, 0 0 10px black, 0 0 15px black;
    /*box-shadow: black 1px 1px 10px;*/
    /*border-radius: 200px;*/
    /*border: 1px solid rgba(255,255,255,0.1);*/
    /*backdrop-filter: blur(10px) saturate(150%);*/
}

.section-label::before {
    content: "|";
    font-weight: 2000;
    color: red;
    font-size: 2.2rem;
    margin-right: 0.5em;
}

.rounded-img {
    border-radius: 20px;
    height: 96.5%;
    width: calc(100% - 10px);
    margin: 5px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.rounded-img-wide {
    border-radius: 20px;
    height: 96.5%;
    width: calc(100% - 10px);
    margin: 5px;
    aspect-ratio: 16/9;
    object-fit: cover;
}


.scaling-group {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 10px;
    transform: scale(min(1, calc(100vw / 500)));
    transform-origin: center;
}

.sketchfab-embed-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3; /* Keeps the ratio consistent */
    position: relative;
    margin: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.sketchfab-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
}

.showcase-content > hr{
    border: none;
    height: 4px;
    margin: 2px 10px;
    background: transparent;
    backdrop-filter: saturate(100%) blur(5px);
    opacity: 0.6;
    border-radius: 1px;
}

.container {
    max-width: 1000px;
    align-items: center;
}