#PSP {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#PSP h1.title {
    position: absolute;
    background-color: var(--tints-red_100);
    top: 0;
    margin-top: 4rem;
    left: 0;
    padding-left: 12rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-right: 2.4rem;
    color: var(--tints-neutral_100);
    font-size: 3.2rem;
    font-family: var(--fonts-primary_normal);
    border-end-end-radius: var(--corner-radius-extragrande);
}

#PSP h1.title b {
    font-family: var(--fonts-primary_bold);
}

#PSP .data {
    height: 80%;
    width: 100%;
    display: flex;
    gap: 7.4rem;
    margin-top: 5rem;
}

#PSP .data .col:first-child {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
}

#PSP .data .col {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

#PSP .data .col .row {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

#PSP .data .col .row .image {
    height: 24rem;
    width: 24rem;
    padding: 3.2rem;
    border-radius: 50%;
    background-color: var(--tints-neutral_200);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#PSP .data .col .row .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 2.8rem;
    padding: 1.6rem;
}

#PSP .data .col .row .content .title {
    width: 130%;
    padding-left: 12rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    margin-left: -30%;
    font-size: 3.2rem;
    border: 0.1rem solid var(--tints-red_100);
    border-end-end-radius: var(--corner-radius-extragrande);
    color: var(--tints-red_100);
}

#PSP .data .col .row .content .list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

#PSP .data .col .row .content p {
    font-family: var(--fonts-primary_bold);
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--tints-neutral_400);
}

#PSP .data .col .row .content p a {
    color: var(--tints-neutral_400);
}

#PSP .data .col .row .content p:last-child {
    align-items: flex-start;
}

#PSP .data .col .ball.dashed {
    width: 40rem;
    height: 40rem;
    background-color: transparent;
    padding: 0;
    border: 0.3rem dashed var(--tints-red_100);
    position: relative;
}

#PSP .data .col .ball {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-color: var(--tints-red_100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fonts-primary_bold);
    color: var(--tints-neutral_100);
    font-size: 6.4rem;
    padding: 9rem;
    text-align: center;
    line-height: 6.9rem;
}

#PSP .data .col .ball .hand-image {
    position: absolute;
    bottom: -10rem;
    right: 0.9rem;
}

@media (max-width: 1310px) {
    #PSP .data .col .ball.dashed {
        width: 30rem;
        height: 30rem;
    }

    #PSP .data .col .ball .hand-image {
        position: absolute;
        bottom: -15rem;
        right: 0.9rem;
    }

    #PSP .data .col .row .image {
        height: 15rem;
        width: 15rem;
    }
}

@media (max-width: 800px) and (orientation: portrait) {
    #PSP .data {
        width: 50rem;
        overflow-y: hidden;
        overflow-x: scroll;
        height: 100%;
        margin-top: 7rem;
    }
    #PSP .data .col .row .content .title {
        padding-left: 3rem;
    }
}
    