/* ==========================================================================
   PAGE GIFT REGISTRY TEMPLATE STYLES
   ========================================================================== */

/* Content Sections */
.registry-content-left {
    padding: 0 25px;
    text-align: center;
}

.registry-highlight-text {
    font-style: italic;
    color: red;
    font-weight: 700;
}

/* Example Section */
.example-section {
    margin-bottom: 40px;
    text-align: center;
}

/* terms Section */
.terms-section {
    padding: 40px 0;
    margin-top: 20px;
    text-align: center;
}

.terms-section .description {
    padding: 25px;
}

.terms-section h3 {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registry-content-left {
        text-align: center;
    }
    
    .example-section {
        margin-bottom: 20px;
    }
    
    .terms-section {
        padding: 20px 0;
    }
}

.giftRegistry__twoImages {
    display: flex;
    margin-top: 70px;
    padding: 0 40px;
    gap: 30px;
}
.giftRegistry__twoImages img {
    width: calc(50% - 15px);
    border-radius: 5px;
}

@media (max-width: 576px) {
    .giftRegistry__twoImages {
        flex-wrap: wrap;
        padding: 0;
    }
    .giftRegistry__twoImages img {
        width: 100%;
    }
}

.gift-registry-title {
    text-align: center;
    position: absolute;
    width: 100%;
    top: calc(50% - 26px);
    color: #fff;
}
.giftRegistry__hero {
    position: relative;
}
.giftRegistry__hero img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}