.plor-row {
    margin-top: 0;
    padding: 20px 0;
    list-style: none;
}

.plor-row + .plor-row {
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .plor-row.g-container {
        margin-bottom: 0;
        padding-left: 1.3rem;
        padding-right: 1.3rem;
    }
}

.plor-row__heading {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 3em;
        font-weight: 700;
    font-size: .5rem;
    line-height: 1.1;
    letter-spacing: .15rem;
    color: #a6a6a6;
}

.plor-row__heading::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    content: '';
    background-color: hsla(0,0%,65%,.5);
    transform: translateY(-1px);
}

.plor-row__heading span {
    padding-right: 30px;
    background-color: #fff;
}

.plor-row li {
    margin-bottom: 20px;
    position: relative;
}

.plor-row li:last-child {
    margin-bottom: 0;
}

.plor-employee {
    position: relative;
}

.plor-employee.icon--plus {
    cursor: pointer;
}

.plor-employee__picture {
    position: relative;
    display: inline-block;
    height: 70px;
    width: 70px;
    margin: 0 0 10px;
    border-radius: 100%;
    overflow: hidden;
    vertical-align: middle;
    background: #f2f2f2 url(/ui/wfa-2023/image/noimage.svg) no-repeat 50% 50%;
}

.plor-employee__picture img {
    width: 100%;
}

.plor-employee.icon--plus .plor-employee__picture::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    background-color: #1e1e1e;
    opacity: 0;
    transition: opacity .4s cubic-bezier(.165,.84,.44,1);
}

.plor-employee__content {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 80px);
    padding-left: 20px;
}

.plor-employee__name {
    display: block;
    font-weight: 700;
    color: #000;
    transition: color .4s cubic-bezier(.165,.84,.44,1);
}

.plor-employee__content .plor-employee__firstName {
    display: none;
}

.plor-employee__bio .plor-employee__firstName,
.plor-employee__bio .plor-employee__name {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}

.plor-employee__label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: +1;
}

.has-js .plor-employee__story {
    display: none;
}

@media screen and (max-width: 767px) {
    .plor-employee::before,
    .plor-employee__story .plor-employee__content {
        display: none;
    }

    .plor-employee__story p {
        margin: 0;
        padding: 0 0 2em calc(80px + 1em);
    }

    .plor-employee.open .plor-employee__story {
        display: block;
    }

    .plor-employee h3 {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .plor-row li {
        display: inline-block;
        width: calc(25% - 20px);
        padding-right: 10px;
        padding-left: 10px;
        vertical-align: top;
        text-align: center;
    }

    .plor-employee.open::before {
        position: fixed;
        top:  0;
        left: 0;
        z-index: 1;
        width: 100vw;
        height: 100vh;
        display: block;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.5);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        content: '';
    }
    .plor-employee:hover:before {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    .plor-employee__picture {
        height: 140px;
        width: 140px;
    }

    .plor-employee:hover .plor-employee__picture::before {
        opacity: .6;
    }

    .plor-employee__content {
        display: block;
        widtH: 100%;
        padding-left: 0;
    }
    .plor-employee__name {
        color: var(--primaryColor);
    }

    .plor-employee__content::after {
        display: none;
    }

    .plor-employee::before {
        position: absolute;
        top: 0;
        left: calc(50% + 30px);
        z-index: 2;
        height: 40px;
        width: 40px;
        border-radius: 100%;
        line-height: 40px;
        color: #fff;
        background-color: var(--primaryColor);
        opacity: 0;
        transition: opacity .3s cubic-bezier(.165,.84,.44,1),transform .3s cubic-bezier(.165,.84,.44,1);
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        transform: scale(.7);
    }

    .plor-employee .plor-employee__story {
        position: fixed;
        z-index: 1000;
        top: 50%;
        left: 50%;
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        flex-direction: row-reverse;
        width: 760px;
        transform: translate(-50%, -30%);
        font-size: 16px;
        background: #fff;
        opacity: 0;
        transition: opacity .6s cubic-bezier(.165,.84,.44,1),transform .3s cubic-bezier(.165,.84,.44,1);
        visibility: hidden;
    }

    .plor-employee.open .plor-employee__story {
        opacity: 1;
        transform: translate(-50%, -50%);
        transition: opacity .6s cubic-bezier(.165,.84,.44,1),transform .3s cubic-bezier(.165,.84,.44,1);
        visibility: visible;
/*         color: #fff; */
        background: #1e1e1e;
    }

    .plor-employee__story > div {
        flex: 0 70%;
        max-height: 100vh;
        overflow: auto;
        padding: 5em;
        text-align: left;
        color: #999;
        background: #1e1e1e;
    }

/*     .plor-employee p {
        color: hsla(0,0%,96%,.6);
    } */

    .plor-employee__story .plor-employee__content {
        display: flex;
        flex-direction: column;
        flex: 0 40%;
        padding: 2em;
        text-align: center;
        background: #fff;
    }

    .plor-employee__story .plor-employee__content img {
        margin: 3em 0;
        border-radius: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/**
 * list of brand logos (tiled)
 */

.plor-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1em 0;
    padding: 0;
    list-style: none;
}

.plor-logos li {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.08);
}


.footer .plor-logos img {
    width: 80%;
    height: 80%;
}

.plor-logos a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    text-indent: -999em;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0);
    transition: box-shadow .3s cubic-bezier(.25,.46,.45,.94);
}

.plor-logos a:hover {
    box-shadow: 5px 5px 40px 0 rgba(0,0,0,.18);
}

.plor-logos__imageWrapper {
    margin: 0;
}

.plor-logos img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
}

@media screen and (max-width: 360px) {
    .footer .plor-logos li {
        flex: 0 0 calc(50% - 10px);
    }
}

@media screen and (min-width: 361px) {
    .footer .plor-logos:has(li:nth-child(6)) li {
        flex: 0 0 calc(16.6% - 10px);
    }

    .footer .plor-logos:has(li:nth-child(8)) li {
        flex: 0 0 calc(25% - 10px);
    }

    .footer .plor-logos:has(li:nth-child(10)) li {
        flex: 0 0 calc(20% - 10px);
    }
}

@media screen and (min-width: 480px) {
    .footer .plor-logos:has(li:nth-child(8)) li {
        flex: 0 0 calc(12.5% - 10px);
    }

    .footer .plor-logos:has(li:nth-child(10)) li {
        flex: 0 0 calc(10% - 10px);
    }
}

@media screen and (min-width: 768px) {
    .plor-logos li {
        flex: 0 0 calc(20% - 10px);
    }

    .footer .plor-logos li {
        flex: 0 0 calc(25% - 10px);
    }

    .footer .plor-logos:has(li:nth-child(6)) li {
        flex: 0 0 calc(33.3% - 10px);
    }

    .footer .plor-logos:has(li:nth-child(8)) li {
        flex: 0 0 calc(25% - 10px);
    }

    .footer .plor-logos:has(li:nth-child(10)) li {
        flex: 0 0 calc(20% - 10px);
    }
}

/**
 * National associations
 */

.plr-company {
    list-style: none;
    padding-left: 0;
}

.plr-company li {
    border-bottom: 1px solid hsla(0,0%,65%,.5);
    padding: 40px 0;
}

.plr-company__name {
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #000;
}

.plr-company__country {
        margin-bottom: 1em;
    display: block;
    font-size: .9em;
}

.plr-company__contact {
    font-size: .8rem;
    color: #000;
}

@media (min-width: 768px) {

    .plr-company li {
        position: relative;
        padding-left: 30.3%;
    }

    .plr-company__name {
        margin-bottom: 1rem;
    }

    .plr-company__country {
        position: absolute;
        top: 40px;
        left: 0;
        font-size: 1rem;
        line-height: 1.4;
        color: #000;
        text-transform: none;
    }

    .plr-company__contact a {
        color: inherit
    }
}

/**
 *
 */
.RelationBusinessCards {
    max-width: 45rem;
    padding: 0;
    list-style: none;
    font-size: .8rem;
}

p + .RelationBusinessCards {
    border-top: 0;
}

.RelationBusinessCards li {
    white-space: nowrap;
    line-height: 1;
}

.RelationBusinessCard__content {
    display: inline-block;
    vertical-align: middle;
}

.RelationBusinessCards img {
    width: 4em;
    margin-right: .5em;
    border-radius: 100%;
}

.RelationBusinessCard__content {
    white-space: normal;
    word-break: break-word;
    max-width: 35em;
}

.RelationBusinessCard__name {
    color: #000;
}

@media screen and (max-width: 767px) {
    .RelationBusinessCards li + .RelationBusinessCards li {
        margin-top: 1em;
    }
}

@media screen and (min-width: 768px) {
    .RelationBusinessCards li + .RelationBusinessCards li {
        margin-left: 2em;
    }
}

/**
 * contact person list
 */

.ContactPersonList {
    max-width: 45rem;
    padding: 0;
    list-style: none;
    font-size: .8rem;
}

p + .ContactPersonList {
    border-top: 0;
}

.ContactPersonList li {
    white-space: nowrap;
    line-height: 1;
}

.ContactPersonList img,
.ContactPersonList__content {
    display: inline-block;
    vertical-align: middle;
}

.ContactPersonList img {
    width: 4em;
    margin-right: .5em;
    border-radius: 100%;
}

.ContactPersonList__content {
    white-space: normal;
    word-break: break-word;
    max-width: 35em;
}

.ContactPersonList__name {
    color: #000;
}

@media screen and (max-width: 767px) {
    .ContactPersonList li + li {
        margin-top: 2em;
    }
}

@media screen and (min-width: 768px) {
    .ContactPersonList li {
        flex: 0 calc(50% - 2em);
        min-width: 18em;
        margin: 0 2em 2em 0;
    }
}

/**
 * Signature style (red dots)
 */

.plor-logos--signature li {
    box-shadow: none;
}

.plor-logos--signature li {
    background: #fff url('../../../image/circles.svg') repeat-x bottom left;
    background-size: 12px;
}

.plor-logos--signature a:hover {
    box-shadow: none;
}

.plor-logos--signature li:hover {
    opacity: .7;
}
