.musubi-quote { 
    background-color: var(--musubi-navy-100);
    padding: 2rem;
    margin-block: 1rem;
}
.musubi-quote__figure{
    margin-bottom: 0;
}

.musubi-quote__text {
    line-height: 1.5;
    margin-inline: 0;
    margin-block: 0.5rem; 
    font-weight: 600;
    color: var(--musubi-navy-core);
}

.musubi-quote--open,
.musubi-quote--close{
    display: grid;
    gap: 1rem;
    align-items: center;
}
.musubi-quote--open{
    grid-template-columns: auto 1fr;
}
.musubi-quote--close{
    grid-template-columns: 1fr auto;
}

.musubi-quote--open-img,
.musubi-quote--close-img{
    width: 3rem;
    height: 3rem;
    background-image: url('../../../images/icons/quote.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.musubi-quote--close-img{
    rotate: 180deg;
}

.musubi-quote--open-line,
.musubi-quote--close-line{
    background-color: var(--musubi-navy-core);
    height: 4px;
}


.musubi-quote__author {
    font-weight: 400; 
}



.musubi-quote__image{
    width: 6rem;
    height: 6rem;
    border-radius: 3rem;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.musubi-quote__meta{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
}