#membership {
    padding: 40px 15px;
}

#membershipRenew {
    text-align: center;
    margin: 20px auto 0;
    font-size: 15px;
}

#membershipRenewCancel {
    padding: 0;
    border: 0;
    background-color: transparent;
    color: var(--red);
    font-weight: 300;
}

#membershipRenewCancel:hover {
    text-decoration: underline;
}

#membershipBody {
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    max-width: 760px;
    width: 100%;
}

.membershipBodyItem {
    display: flex;
    max-width: 370px;
    width: 100%;
    flex-direction: column;
    text-align: center;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    padding: 30px 20px;
    background-color: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    transition: .3s ease;
}

.membershipBodyItem:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.membershipBodyItemCircle {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--red);
    border-radius: 50%;
}

.membershipBodyItemCircleLogo {
    width: 30px;
    height: auto;
    color: white;
}

.membershipBodyItemTitle {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 12px;
}

.membershipBodyItemPrice {
    font-size: 19px;
    margin-bottom: 15px;
}

.membershipBodyItemDescription {
    font-size: 15px;
    margin-bottom: 15px;
}

.membershipBodyItemLink {
    font-size: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    justify-content: center;
    color: var(--red);
}

.membershipBodyItemLinkIcon {
    height: 15px;
    width: auto;
}

.membershipBodyItemBadge {
    margin-top: 6px;
}

.membershipBodyItemUpgrade {
    width: fit-content;
    margin: 6px auto 0;
    border: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-weight: 300;
    background-color: transparent;
    color: var(--red);
    white-space: nowrap;
}

.membershipBodyItemUpgradeIcon {
    height: 15px;
    width: auto;
}

.membershipBodyItemDisclaimer {
    font-size: 12px;
    margin-top: 12px;
}

#membershipDisclaimer {
    margin: 60px auto 0;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 1000px) {
    #membershipBody {
        flex-direction: column;
        align-items: center;
    }

    .membershipBodyItem {
        box-shadow: 0 0 0;
    }
}