h2,
h3 {
    text-align: center;
}

.Stressors_List {
    display: grid;
    grid-template-columns: repeat(auto-fill, 150px);
    gap: 10px;
    justify-content: space-around;
}

.Stressors_Item {
    border-radius: 3px;
    box-shadow: 1px 1px 2px var(--color-navy-op);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    position: relative;


}

.Stressors_Item>input {
    display: none;
}

.Stressors_Item>b {
    display: block;
    margin: 0 0 var(--space-1);
}

.Stressors_Level {
    border-radius: 10px;
    display: grid;
    gap: .5rem;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    overflow: hidden;
    position: relative;

}

.Stressors_Level>label {
    align-items: center;
    background-color: var(--color-gray);
    color: var(--color-kinari);
    display: flex;
    font-size: 1.1rem;
    height: 100%;
    justify-content: center;
    left: 50%;
    line-height: 2;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.Stressors_Level>li {
    text-align: center;
    background-color: var(--color-navy-op);
    color: var(--color-kinari);
    font-size: 1.1rem;
    margin: 0;
    padding: 4px;
}

.Stressors_Item>input:checked~.Stressors_Level>label {
    display: none;
}

.Stressors_Level--mild>li:nth-child(2),
.Stressors_Level--strong>li:nth-child(3) {
    background-color: var(--color-gray);
}

.Stressors_Item>p {
    margin: var(--space-1) 0 0;
    font-size: 1.3rem;
}

.Stressors_Item>p span {
    display: none;
}

.Stressors_Item>input:checked~p span {
    display: inline;
}