/* Content Structured Component - Scoped Styles */
.content-structured-wrapper {
    width: 100%;
    background-color: var(--color-white);
    background-image: url('/wp-content/uploads/static/blue-balloon-bg.png');
    background-size: 2000px 2000px;
    background-position: -100px 10px;
    background-repeat: no-repeat;
    padding: 200px 0 200px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 300% 150px;
    border-bottom-right-radius: 300% 150px;
    clip-path: inset(0 0 -150px 0);
    z-index: 3;
    margin-bottom: -25px !important;
}

.content-structured-wrapper .content-structured-container {
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.5));
}

/* Title with red bow background */
.title-with-bow {
    position: absolute;
    top: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-red);
    clip-path: var(--clip-path-mobile-headline);
    z-index: 2;
    padding: 30px 120px;
    margin: 0 0 100px 0;
}

.content-structured-wrapper .content-structured-content {
    max-width: 1194px;
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    padding: 120px 0 0;
    position: relative;
    background-color: var(--color-white);
    clip-path: var(--clip-path-fixed-bowl);
    margin: 0 auto;
}

.content-structured-wrapper .structured-title {
    margin: 0;
    color: var(--color-white);
    font-size: var(--font-size-content-structured-title);
    line-height: var(--font-lh-content-structured-title);
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Main headlines */
.content-structured-wrapper .structured-headline,
.content-structured-wrapper .structured-headline-bottom {
    font-size: var(--font-size-content-structured-headline);
    line-height: var(--font-lh-content-structured-headline);
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 2;
}

.content-structured-wrapper .structured-headline {
    margin: 0 auto 50px;
    max-width: 750px;
}

.content-structured-wrapper .structured-headline-bottom {
    margin: 30px 0 200px 0;
    padding: 0 175px;
}

/* Structured rows container */
.content-structured-wrapper .structured-rows {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    padding: 0 175px;
}

/* Individual row */
.content-structured-wrapper .structured-row {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Columns within each row */
.content-structured-wrapper .structured-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
}

/* Individual column */
.content-structured-wrapper .structured-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    position: relative;
    padding-bottom: 30px;
    height: 100%;
}

/* Blue underline for each individual column in non-final rows */
.content-structured-wrapper .structured-row:not(.structured-row-final) .structured-column::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-blue);
    z-index: 1;
}

/* Column icons */
.content-structured-wrapper .column-icon {
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-structured-wrapper .column-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Column text */
.content-structured-wrapper .column-text {
    margin: 0;
    font-size: var(--font-size-body);
    line-height: var(--font-lh-body);
    text-align: left;
    width: 100%;
    flex: 1;
}

/* Quote container - absolute positioned */
.content-structured-wrapper .quote-container-absolute {    
    max-width: 1194px;
    width: calc(100% - 80px);
    margin: -20px auto 0;
    position: relative;
    padding: 30px 50px 60px;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    background-color: var(--color-nav-gray);
    clip-path: var(--clip-path-fixed-bowl-bottom-only);
}

.content-structured-wrapper .quote-content {
    width: 70%;
    flex: none;
}

.content-structured-wrapper .quote-profile-image {
    width: 220px;
    height: auto;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-220%);
    z-index: 3;
}

.content-structured-wrapper .quote-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-structured-wrapper .quote-text {
    font-size: var(--font-size-trade-off-card-quote);
    line-height: var(--font-lh-trade-off-card-quote);
    color: var(--color-yellow);
    font-weight: 600;
    margin: 0 0 10px 0;
    position: relative;
}

.content-structured-wrapper .quote-text::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('/wp-content/uploads/static/opening-quotes-white.svg');
    left: -25px;
    top: 3px;
}

.content-structured-wrapper .quote-text::after {
    content: none;
}

.content-structured-wrapper .closing-quote {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/uploads/static/closing-quotes-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    top: 4px;
    margin-left: 7px;
}

.content-structured-wrapper .quote-attribution {
    font-size: var(--font-size-trade-off-card-quote-attribution);
    line-height: var(--font-lh-trade-off-card-quote-attribution);
    color: var(--color-white);
    margin: 0;
}

/* Final content container - absolute positioned */
.content-structured-wrapper .final-content-absolute {
    position: absolute;
    z-index: 2;
    background-color: var(--color-yellow);
    padding: 40px 80px 20px;
    max-width: 962px;
    width: calc(100% - 80px);
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
}

.content-structured-wrapper .final-row {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 650px;
}

.content-structured-wrapper .final-text-bold {
    margin: 0;
    font-size: var(--font-size-body);
    line-height: var(--font-lh-body);
    font-weight: 600;
    flex: 1;
}

.content-structured-wrapper .final-text-bold a{
    color: var(--color-nav-gray);
    text-decoration: underline;
}

.content-structured-wrapper .final-text-bold a:hover{
    color: var(--color-nav-gray);
    text-decoration: none !important;
    box-shadow: none !important;
}

.content-structured-wrapper .final-text-bold .regular{
    font-weight: 400;
}

.content-structured-wrapper .final-button-image {
    display: flex;
    align-items: center;
    gap: 20px;
}

.content-structured-wrapper .white-button .wp-block-button__link {
    background-color: var(--color-white);
    color: var(--color-red);
    border: 2px solid var(--color-red);
    border-radius: 30px;
    padding: 12px 24px;
    font-size: var(--font-size-button-primary);
    line-height: var(--font-lh-button-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-structured-wrapper .white-button .wp-block-button__link:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.content-structured-wrapper .final-image {
    margin: 0;
    flex: 0 0 auto;
    position: absolute;
    z-index: 3;
    width: 290px;
    height: auto;
    bottom: -50px;
    left: 50%;
}

.content-structured-wrapper .final-image img {
    width: 290px;
    height: auto;
    position: absolute;
    right: -260px;
    bottom: -100px;
}

@media screen and (max-width: 1599px) {
}

/* Responsive Styles */
@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1024px) {

    .content-structured-wrapper .quote-profile-image {
        left: 5%;
        transform: unset;
    }

    .content-structured-wrapper .structured-rows {
        padding: 0 40px;
    }

    .content-structured-wrapper .structured-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-structured-wrapper .structured-headline,
    .content-structured-wrapper .structured-headline-bottom {
        padding: 0 40px;
    }

    /* Add blue underline to belly item (1st item in final row) when stacked in mobile view */
    .content-structured-wrapper .structured-row-final .structured-column:first-child::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--color-blue);
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    .content-structured-wrapper {
        padding-bottom: 450px;
        padding-top: 100px;
    }

    .content-structured-wrapper .content-structured-content {
        width: calc(100% - 40px);
    }

    .title-with-bow{
        padding: 30px 40px;
    }

    .content-structured-wrapper .structured-headline-bottom {
        margin-bottom: 60px;
    }

    .content-structured-wrapper .quote-container-absolute {
        padding: 0 20px;
        clip-path: unset;
        width: calc(100% - 40px);
    }

    .content-structured-wrapper .quote-content {
        width: 100%;
        text-align: center;
        order: 1;
        padding: 20px 0 300px;
    }

    .content-structured-wrapper .quote-text {
        padding: 30px 0;
        border-top: 1px solid var(--color-white);
        border-bottom: 1px solid var(--color-white);
        margin: 20px 0;
    }

    .content-structured-wrapper .quote-text::before {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
        padding: 0 30px;
        background-color: var(--color-nav-gray);
        background-position: center;
        margin: 0 auto;
    }

    .content-structured-wrapper .quote-text::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 14px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url('/wp-content/uploads/static/opening-quotes-white.svg');
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        padding: 0 30px;
        background-color: var(--color-nav-gray);
        background-position: center;
        margin: 0 auto;
    }

    .content-structured-wrapper .quote-attribution {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
        margin-top: 20px;
    }

    .content-structured-wrapper .closing-quote {
        display: none !important;
    }

    .content-structured-wrapper .quote-profile-image {
        max-width: 160px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -16px;
    }

    .content-structured-wrapper .final-content-absolute {
        width: calc(100% - 80px);
        bottom: -380px;
        padding: 40px 20px;
    }

    .content-structured-wrapper .final-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        padding-bottom: 100px;
    }

    .content-structured-wrapper .final-text-bold .regular{
        font-size: 14px;
    }

    .content-structured-wrapper .final-image {
        transform: translateX(-50%);
        bottom: -300px;
    }

    .content-structured-wrapper .final-image img {
        width: 180px;
        right: unset;
        left: 25%;
    }
} 