 body{
    background: url(../assets/crew/background-crew-mobile.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} 

.crew__tab{
    border: none;
    outline: none;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    position: relative;
}

.crew__image{
    position: relative;
    margin-block: 2.5rem;
}

.crew__img{
    width: 17rem;
    margin-inline: auto;
}

.crew__image::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--white-10);
    z-index: 1;
}

.crew__tab--texts{
    padding-block: 2.5rem;
}

@media (min-width: 43.55rem){
    body{
        background: url(../assets/crew/background-crew-tablet.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .crew {
        display: grid;
        grid-template-columns: 1fr 1fr;
        place-items: center;
        gap: 2rem;
    }

    .crew__img{
        width: auto;
        object-fit: cover;
        object-position: center;
    }

    .crew__image{
        order: 2;
    }

    .crew__tab--container{
        display: flex;
        flex-direction: column-reverse;
    }

    .crew__image::after{
        display: none;
    }

    .crew__tabs{
        justify-content: flex-start;
    }

    .title{
        margin-inline-start: 3rem;
    }

    .tab__description{
        margin-inline: 0;
    }
}

@media (min-width: 56.05rem){
    body{
        background: url(../assets/crew/background-crew-desktop.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    
    .crew{
        gap: 5rem;
    }
}