.block-extended-quote {
    font-family: var(--font-primary), system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap:.75rem;
    padding-top: 3rem;
    position: relative;
    max-width: 1200px;
    margin:1rem auto;
    background:white;
}

.block-extended-quote::before {
    display: block;
    content:"";
    position: absolute;
    left:30%;
    width:40%;
    height:150px;
    border-radius: 100%;
    max-height:80%;
    background:black;
    opacity:0.2;
    z-index: -1;
    top:0rem;
    filter:blur(20px);
}

.block-extended-quote::after {
    content:"";
    height:8px;
    width:80px;
    background:var(--color-primary);
    display: block;
    margin:1rem auto;
}

.block-extended-quote__content {
    padding:.5rem 1rem;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}


.caption-author {
    text-transform: uppercase;
    font-size:1rem;
    width:100%;
    text-align: center;
    font-weight: 600;
}

.caption-role {
    color:var(--color-primary);
    letter-spacing: 0.1rem;
    font-size: 0.85rem;
    width:100%;
    text-align: center;
}

.icon {
    height:1rem;
    width:1rem;
    display: block;
}

.icon--md {
    width:3rem;
    height:3rem;
}

.rotate-180 {
    transform:rotate(180deg);
}