/******************
Gift 
******************/

#gift {
}

#giftInner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    padding: 120px 20px 40px;
}

#giftTitle {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

#giftSubtitle {
    margin-bottom: 10px;
    font-size: 21px;
    color: var(--red);
    font-weight: 600;
}

.giftDescription {
    line-height: 2;
    margin-bottom: 10px;
}


#giftSplit {
    margin: 30px 0;
}

#giftLooking {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

#giftRedeem {

}

#giftLinks {
    border: 2px solid rgb(229, 231, 235);
    border-radius: 8px;
    overflow: hidden;
}

#giftLinksHero {
    border-bottom: 2px solid rgb(229, 231, 235);
}

.giftLinksItem {
    padding: 16px 24px;
    background-color: #f9fafb;
    border-bottom: 2px solid rgb(229, 231, 235);
}

.giftLinksItem:last-child {
    border-bottom: none;
}

.giftLinksItemHeader {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.giftLinksItemBody {
    color: rgb(107, 114, 128);
    line-height: 1.2;
    margin-bottom: 10px;
}

@media (max-width: 750px) {
    #giftInner {
        grid-template-columns: 1fr;
        row-gap: 30px;
        padding: 40px 20px;
    }
}