.reddit-quote-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.88rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.reddit-quote-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.reddit-quote-user-info {
    display: flex;
    align-items: center;
    gap: 0.69rem;
}

.reddit-quote-head {
    display: flex;
    align-items: center;
    gap: 0.19rem;
}

.reddit-quote-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
}

.reddit-quote-username {
    font-size: 0.75rem;
    font-weight: 600;
}

.reddit-quote-action {
    font-size: 0.75rem;
}

.reddit-quote-action a {
    font-weight: 600;
}

.reddit-quote-icon img {
    width: 1.75rem;
    height: 1.8125rem;
    aspect-ratio: 28/29;
}

.reddit-quote-body {
    font-weight: 500;
    line-height: 140%;
}

.reddit-quote-button {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    border-radius: 2.5rem;
    background-color: #FF4500;
    border: 1px solid #FF4500;
    transition: background-color 0.2s ease-out;
}

.reddit-quote-button:hover {
    color: #FF4500;
    background-color: #fff;
}