.entry-content{
    container-name: entrycontent;
    container-type: inline-size;
}
.singular-staff-header{
    display: grid;
    grid-template-columns:30% 1fr;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border-bottom: solid 1px #e0e0e0;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}
.singular-staff-header-left{
}
.singular-staff-header-right{
    display: flex;
    flex-direction: column;
}
.singular-staff-thumb{
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg,var(--orange) 45%,var(--navy) 55%);
}
.singular-staff-thumb-img{
    display: block;
    width: 96%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

@container entrycontent (max-width: 50rem){
    .singular-staff-header{
        display: block;
    }
    .singular-staff-thumb{
        width: 60vw;
        margin-left: auto;
        margin-right:  auto;
    }
}
.singular-staff-name{
    font-size: min(2.6rem,8vw);
    font-weight: 900;
    font-family: var(--noto);
    color: var(--navy);
    line-height: 1.2;
    border: none;
    padding: 0 !important;
}
.singular-staff-shops{
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5em 1em;
    justify-content: center;
}
.singular-staff-shop-a{
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--navy);
    text-underline-offset: .4em;
    color: var(--navy);
}
.singular-staff-comment{
    margin-top: 2rem;
    font-size: 1.2rem;
    line-height: 2;
    background: rgb(246, 165, 34,.2);
    border-radius: .5rem;
    padding: .5rem 1rem;
}

.singular-staff-profile{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .25rem 0;
}
.singular-staff-profile dt{
    background: #f0f0f0;
    padding: .5em .75rem;
    border-bottom: solid 1px #c0c0c0;
}
.singular-staff-profile dd{
    margin: 0;
    padding: .5em;
    border-bottom: solid 1px #c0c0c0;
}
.singular-staff-reviews{
    border-top: solid 1px #e0e0e0;
    margin-top: 4rem;
    padding-top: 4rem;
}