.campaign-product-card {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
}

.campaign-image {
    width: 108px;
    height: 108px;
    border-radius: 8px 0 0 8px;
}

.campaign-content {
    display: flex;
    flex-flow: column nowrap;
    gap: 6px;
    margin-left: 20px;
    justify-content: center;
    width: 100%;
}

.campaign-brand {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.campaign-title {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.campaign-tags {
    color: #828282;
    font-size: 10px;
    font-weight: 400;
}

.campaign-status {
    display: flex;
    flex-flow: row nowrap;
    gap: 4px;
    align-items: center;
}

.status-icon {
    width: 17px;
    height: 17px;
}

.status-text {
    color: #B53FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

.join-btn {
    width: 55px;
    height: 100%;
    max-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #B53FFF;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.3px;
    border-radius: 0 8px 8px 0;
}

.sold-out-btn {
    width: 55px;
    height: 100%;
    max-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.3px;
    border-radius: 0 8px 8px 0;
    background: #333;
    color: #fff;
}

.added-to-cart {
    width: 55px;
    height: 100%;
    max-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.3px;
    border-radius: 0 8px 8px 0;
    background: #E3E3E3;
    color: #5B5B5B;
}

.join-btn.review {
    background: #333;
    color: #fff;
}

.join-btn.cannot-join {
    background: #333;
    color: #fff;
}

.campaign {
    display: flex;
    flex-flow: column;
    position: relative;
    margin-bottom: 15px;
}

.campaign-progress {
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.campaign-progress .progress-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(93deg, #FFF 2.71%, #B53FFF 150.12%);
    border-radius: 8px;
    padding: 0;
    border: 0;
}