.social_featured{
    width: 100%;
    height: max-content;
    padding: 2rem;
}

.social_featured_card{
    background-color: var(--cherry);
    padding: 2rem;
    border-radius: var(--default-border-radius);
    position: relative;
    overflow: hidden;

    &::before{
        content: "\"";
        display: block;
    
        font-family: contrast;
        font-style: italic;
        border-radius: 100%;
        color: #fff;
        opacity: .1;
        font-size: 20rem;
        padding-right: 100px;
    
        position: absolute;
        top: -38%;
        left: calc(5% + 0.15em);;
    }

    &::after{
        content: "";
        display: block;

        width: 300px;
        aspect-ratio: 1/1;
        border-radius: 100%;
        background-color: #fff;
        opacity: .1;

        position: absolute;
        right: -30%;
        bottom: -50%;
    }

}

.social_featured p {
    font-family: contrast;
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 700;
    font-style: italic;
    color: #fff;
    line-height: 1.55;
    letter-spacing: -0.01em;
    position: relative;
}

.social_featured_profile{
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.social_featured_picture{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-family: logo;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: grid;
    place-content: center;
    margin-right: 1rem;
}

.social_featured_info{
    display: flex;
    flex-direction: column;
}

.social_featured_name{
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.social_featured_date{
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

@media (width > 670px) {
    .social_featured{
        padding: 3rem 5rem;
    }

    .social_featured_card{
        padding: 3rem;
        max-width: 800px;
        margin: 0 auto 3rem;
    }
}