
#mainReferenceDiv {
    width: 80%;
    margin: 0 auto;
    display: flex;
    min-height: 40vh;
    flex-direction: row;
    gap: calc(var(--bfs) * 3) ;
}

@media (max-width: 800px) {
    #mainReferenceDiv {
        width: 90%;
        flex-direction: column;
    }
}


#imgReference {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
}

#imgReference > img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    padding: var(--bfs);
    background-color: var(--grey-light-light);
}

#textReference {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 0.5px solid var(--orange);
    background-color: var(--orange-light);
    border-radius: 10px;
    padding: var(--bfs) calc(var(--bfs) * 2.4);
}

#textReference > #quote {
    width: 100%;
    text-align: left;
    padding: calc(var(--bfs) * 2);
    position: relative;
    font-style: italic;
    font-weight: 700;
    color: var(--black);
}

#textReference > #quote::before {
    font-weight: 300;
    content: "„";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5rem;
    color: var(--grey);
    line-height: 0.3;
}

#textReference > #quote::after {
    content: "“";
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 5rem;
    color: var(--grey);
    line-height: 0.3;
    font-weight: 300;
}

#textReference > #author {
    width: 100%;
    text-align: right;
}

#textReference > #author > p {
    margin-right: calc(var(--bfs) * 3);
    color: var(--grey);
    font-size: var(--bfs2);
}