:root {
    --nzgoals-white: #FFFFFF;
    --nzgoals-green: #00A443;
    --nzgoals-forest: #00402A;
    --nzgoals-border: #D8CFC7;
    --nzgoals-brown: #615D5A;
    --nzgoals-sand: #FFF5EC;
}

#nzgoals {
    width: 100%;
    max-width: 980px;
    padding: 16px;
    margin: 20px auto;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    background-color: var(--nzgoals-sand);
}

#nzgoals * {
    font-family: 'IberPangea' !important;
    font-style: normal;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#nzgoals h2,
#nzgoals h3,
#nzgoals h4 {
    margin-top: 0 !important;
}

#nzgoals ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#nzgoals ul li:before {
    content: none !important;
    display: none !important;
}

#nzgoals img {
    display: block;
    width: 100%;
}

#nzgoals .nzgoals_title {
    color: var(--nzgoals-green) !important;
    font-size: 30px;
    line-height: 1.13;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin-bottom: 16px;
}

#nzgoals .nzgoals_title strong {
    font-weight: 600;
}

#nzgoals .nzgoals_description {
    color: var(--nzgoals-brown) !important;
    font-size: 18px;
    line-height: 1.22;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    margin-bottom: 24px;
}

#nzgoals .nzgoals_item {
    border-radius: 15px;
    background: var(--nzgoals-white);
    overflow: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    min-height: 270px;
}

#nzgoals .nzgoals_item_actions {
    display: flex;
}

#nzgoals .nzgoals_item_number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 5px;
    border-radius: 50%;
    background-color: var(--nzgoals-green);
    color: var(--nzgoals-white) !important;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    margin-right: auto;
}

#nzgoals .nzgoals_item_icon {
    display: block;
    width: 100%;
    text-align: center;
}

#nzgoals .nzgoals_item_icon img {
    max-width: 138px;
    margin: 16px auto;
}

#nzgoals .nzgoals_item_title {
    color: var(--nzgoals-forest) !important;
    font-size: 18px;
    line-height: 1.22;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    max-width: 180px;
    margin: 0 auto;
}

#nzgoals .nzgoals_item_text {
    color: var(--nzgoals-forest) !important;
    font-size: 14px;
    line-height: 1.42;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin: auto;
}

#nzgoals .nzgoals_item_open {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url('/wcorp/gc/prod/es_ES/estaticos/net-zero-objetivos/images/ico-abrir.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    margin-left: auto;
}

#nzgoals .nzgoals_item_close {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
    background-image: url('/wcorp/gc/prod/es_ES/estaticos/net-zero-objetivos/images/ico-cerrar.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    margin-left: auto;
    display: none;
}

#nzgoals .nzgoals_item {
    opacity: 1;
    transition: opacity 0.5s;
}

#nzgoals .nzgoals_item .nzgoals_item_text,
#nzgoals .nzgoals_item.active .nzgoals_item_icon,
#nzgoals .nzgoals_item.active .nzgoals_item_title,
#nzgoals .nzgoals_item.active .nzgoals_item_open {
    display: none;
}

#nzgoals .nzgoals_item.active .nzgoals_item_text,
#nzgoals .nzgoals_item.active .nzgoals_item_close {
    display: block;
}

#nzgoals .nzgoals_item.inactive:not(.active) {
    opacity: 0.5;
}


@media (min-width: 700px) {
    
    #nzgoals {
        padding: 32px;
    }

    #nzgoals .nzgoals_title {
        font-size: 32px;
        line-height: 1.125;
    }

    #nzgoals .nzgoals_description {
        font-size: 18px;
        line-height: 1.33;
    }

    #nzgoals .nzgoals_item_open:hover {
        background-image: url('/wcorp/gc/prod/es_ES/estaticos/net-zero-objetivos/images/ico-abrir-hover.svg');
    }

}

@media (min-width: 1080px) {


    #nzgoals .nzgoals_content {
        display: flex;
        gap: 16px;
    }
    
    #nzgoals .nzgoals_item {
        flex: 1;
        margin-bottom: 0;
        min-height: 408px;
        position: relative;
        padding-bottom: 58px;
    }    

    #nzgoals .nzgoals_item_number {
        margin-left: auto;
    }

    #nzgoals .nzgoals_item_open,
    #nzgoals .nzgoals_item_close {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
    }

    #nzgoals .nzgoals_item_icon,
    #nzgoals .nzgoals_item_title {
        margin-top: auto;
        margin-bottom: auto;
    }

}
