.profile .profile__item {
    display: block;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.profile .profile__item::after {
    transition: background-color .25s ease;
}

.profile .profile__item img {
    transition: transform .4s ease;
}

.profile .profile__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.profile .profile__item:hover::after {
    background: rgba(0, 0, 0, .25);
}

.profile .profile__item:hover img {
    transform: scale(1.03);
}

.profile .profile__item:focus-visible {
    outline: 3px solid rgba(253, 202, 10, .9);
    outline-offset: 3px;
}
