.pick-card {
    margin: 12px;
    min-width: 388px;
    width: 388px;
    max-width: 388px;
    height: 610px;
    background-color: var(--light-neutral);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding: 25px;
    overflow: hidden;
}
@keyframes makeFlexGrow {
    0% {
        min-width: 388px;
        width: 388px;
        max-width: 388px;
        background-color: var(--light-neutral);
    }
    100% {
        min-width: 965px;
        width: 965px;
        max-width: 965px;
        background-color: var(--white);
    }
}
.pick-card.opened {
    animation: makeFlexGrow forwards 0.75s ease-in-out 1;
}

.pick-card .title {
    display: flex;
    align-items: end;
    justify-content: start;
    border-radius: 16px;
    padding: 15px;
}

.pick-card .title > div {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 85px;
}
@keyframes reduce-margin {
    0% {
        margin-top: 85px;
    }
    100% {
        margin-top: 12px;
    }
}
.pick-card.opened .title > div {
    animation: reduce-margin forwards 0.3s ease-in-out 1;
}

.pick-card > :nth-child(2) {
    display: flex;
    flex-grow: 1;
    gap: 26px;
    height: calc(100% - 185px);
}

.pick-card .card-content {
    min-width: 338px;
    width: 338px;
    padding: 0 25px;
}

.pick-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.expanded-content {
    min-width: 551px;
    width: 551px;
    max-width: 551px;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow-y: scroll;
}
@keyframes expand {
    0% {
        max-width: 0;
    }
    100% {
        max-width: 551px;
    }
}
.pick-card.opened .expanded-content {
    animation: expand forwards 0.75s ease-in-out 1;
}

.pick-card .card-content > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.helpful-tips {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.helpful-tips > div {
    display: flex;
    gap: 8px;
}

.pick-card .controls {
    display: flex;
    justify-content: end;
}

@keyframes zoom {
    0% {
        transform: scale(1);
        min-width: 388px;
        width: 388px;
        max-width: 388px;
        opacity: 1;
        transform-origin: 125px 125px;
    }
    50% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        flex: 0 0 0;
        min-width: 0;
        width: 0;
        max-width: 0;
        transform: scale(0);
        opacity: 0;
        padding: 0;
        margin: 0;
    }
}
.pick-card.removing {
    animation: zoom forwards 0.75s ease-in-out 1;
}