.main{
    display: flex;
    flex-flow: column;
    gap: var(--space-l);
}
.main__content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xxl);
}
.box{
    display: flex;
    flex-flow: column;
    gap: var(--space-s);
}
.box-body-wrapper:hover .img-fit{
    transform: scale(1.15);
}
.box-body-wrapper:hover .box-body__info{
    height: 5rem;
}
.box__body{
    position: relative;
    min-height: 17.5rem;
}
.box__body--gender{
    height: 17.5rem;
    position: relative;
    border: 2px solid var(--primary-500);
    overflow: hidden;
}
.img-gender{
    transition: all 250ms ease-out;
}
.box-body__info{
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 4.5rem;
    padding: var(--space-xs) var(--space-ml) var(--space-m);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(360deg, #111111f6 20%, #111111a8 80%);
    box-shadow: 0 0 8px 8px #111111a8;
    transition: all 250ms ease-out;
}
.box__admin{
    height: 4rem;
}
.title-gender{
    transition: all 250ms ease-out;
}

/* ===== EXTRA (1000px) ===== */
@media screen and (max-width: 1000px) {
    .main__content{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== TABLET (810px) ===== */
@media screen and (max-width: 810px) {
    
}

/* ===== PHONE (480px) ===== */
@media screen and (max-width: 480px) {
    .main__content{
        grid-template-columns: 1fr;
        gap: var(--space-l);
    }
}