/* hero  */

.outcome-hero {
    width: 100%;
    padding: 100px 32px;
    background-color: var(--color-matisse-50);
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .outcome-hero {
        padding: 64px 16px!important;
    }
}


.outcome-hero .wrapper {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.outcome-hero .wrapper .content {
    width: 100%;
    text-align: center;
}

.outcome-hero .wrapper .content h1 {
    font-size: 64px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--color-matisse-950);
}

.outcome-hero .wrapper .content p {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0;
}

.outcome-hero .wrapper .content a.home {
    margin-top: 48px;
    --clip-size: 12px;

    position: relative;
    isolation: isolate;

    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;

    width: fit-content;
    padding: 18px 24px;

    background-color: var(--color-matisse-950);
    color: var(--color-white);

    text-decoration: none;
    font-weight: 600;

    clip-path: polygon(
        var(--clip-size) 0,
        100% 0,
        100% calc(100% - var(--clip-size)),
        calc(100% - var(--clip-size)) 100%,
        0 100%,
        0 var(--clip-size)
    );

    transition: .2s ease-in-out;
}


/* Outer clipped shape */
.outcome-hero .wrapper .content a.home::before {
    content: "";
    position: absolute;
    inset: 0;

    background-color: var(--color-matisse-950);

    clip-path: polygon(
        var(--clip-size) 0,
        100% 0,
        100% calc(100% - var(--clip-size)),
        calc(100% - var(--clip-size)) 100%,
        0 100%,
        0 var(--clip-size)
    );

    opacity: 0;
    z-index: -2;

    transition: .2s ease-in-out;
}


/* Inner cutout */
.outcome-hero .wrapper .content a.home::after {
    content: "";
    position: absolute;
    inset: 1px;

    --inner-clip-size: 11px;

    background-color: var(--color-matisse-50);

    clip-path: polygon(
        var(--inner-clip-size) 0,
        100% 0,
        100% calc(100% - var(--inner-clip-size)),
        calc(100% - var(--inner-clip-size)) 100%,
        0 100%,
        0 var(--inner-clip-size)
    );

    opacity: 0;
    z-index: -1;

    transition: .2s ease-in-out;
}


.outcome-hero .wrapper .content a.home:hover {
    background-color: transparent;
    color: var(--color-matisse-950);
}


.outcome-hero .wrapper .content a.home:hover::before,
.outcome-hero .wrapper .content a.home:hover::after {
    opacity: 1;
}

/* end of hero  */



/* faqs  */

.outcome-faqs {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .outcome-faqs {
        padding: 32px 16px!important;
    }
}

.outcome-faqs .wrapper {
    width: 100%;
    max-width: 1200px;
}

/* Title */

.outcome-faqs .faq-title {
    margin: 0 0 40px;
    color: var(--color-matisse-950);
    font-size: 64px;
    text-align: center;
}


/* Accordion */

.outcome-faqs .faq-accordion {
    border-top: 1px solid rgba(14, 41, 67, 0.1);
}

.outcome-faqs .faq-item {
    border-bottom: 1px solid rgba(14, 41, 67, 0.1);
}


/* Question */

.outcome-faqs .faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 24px 0;

    background: none;
    border: none;

    color: var(--color-matisse-950);

    font-family: "apertura", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    font-weight: 600;

    text-align: left;

    cursor: pointer;
}


/* Icon */

.outcome-faqs .faq-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid rgba(14, 41, 67, 0.1);
    border-radius: 8px;

    color: var(--color-matisse-950);

    transition: transform .3s ease;
}

.outcome-faqs .faq-icon svg {
    width: 20px;
    height: 20px;
}

.outcome-faqs .faq-item.active .faq-icon {
    transform: rotate(180deg);
}


/* Answer */

.outcome-faqs .faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows .3s ease;
}

.outcome-faqs .faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.outcome-faqs .faq-answer {
    overflow: hidden;

    color: var(--color-matisse-900);
    line-height: 1.6;
}

.outcome-faqs .faq-answer p {
    max-width: 100%;

    margin: 0;
    padding-bottom: 24px;
}


/* ==========================================================================
   Responsive
   ========================================================================== */


@media (max-width: 576px) {

    .outcome-faqs .faq-title {
        font-size: clamp(40px, 10vw, 56px);
    }

}

/* end of faqs  */