.shoutout-box-v2 {
    display: flex;
    padding: 36px 30px;
    background: #fff;
    box-shadow: 0px 1px 8px -2px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
}

.sb-v2-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.sb-v2-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.sb-v2-text p {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    color: #121212;
    margin: 0;
}

.shoutout-box-v2 .sb-v2-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 15px;
}

.shoutout-box-v2 .sb-v2-btn,
.shoutout-box-v2 a.sb-v2-btn {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    /* / background-color: #f84c2d; / */
    padding: 14px 19px 15px;
    border: none !important;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease-out;
}

.shoutout-box-v2 .sb-v2-btn:hover {
    color: #fff !important;
    /* / background-color: #DB4328 !important; / */
    transition: all 0.2s ease-in;
}

.shoutout-box-v2 .sb-v2-btn svg {
    margin-right: 8px;
}

@media (max-width: 575px) {
    .shoutout-box-v2 {
        flex-direction: column;
        padding: 30px 20px;
    }

    .sb-v2-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .sb-v2-image img {
        max-width: 90px;
    }

    .sb-v2-text p {
        text-align: center;
        margin-bottom: 20px;
    }

    .shoutout-box-v2 .sb-v2-btn-wrap {
        justify-content: center;
        padding-left: 0;
    }

    .shoutout-box-v2 .sb-v2-btn {
        padding: 13px 20px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .shoutout-box-v2 {
        padding: 40px 20px;
    }

    .sb-v2-image img {
        max-width: 80px;
    }

    .sb-v2-text p {
        margin: 0;
    }

    .shoutout-box-v2 .sb-v2-btn {
        padding: 13px 20px;
    }
}