.plor-row {
    display: grid;
    grid-template-columns: var(--tileGrid-fill);
    grid-gap: 2rem;
    margin-block: 3rem;
    padding-left: 0;
    list-style: none;
}

.plor-md .plor-row {/** plor-lg is a snippet style */
    grid-template-columns: var(--tileGrid-fill-md);
}

/**
 * plor-employee
 * List of people/employees
 */

.plor-employee {
    transition: all var(--transition-time) ease-in-out;
    transform: scale(1);
    height: calc(100% - 50px);
    margin-top: 50px;
    border: 1px solid var(--clr-brdr-light);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-1);
}

.plor-employee:hover {
    box-shadow: var(--shadow-3);
    transform: scale(1.01);
}

.plor-employee__header {
    height: 50px;
}

.plor-employee__picture {
    position: absolute;
    top: -50px;
    left: 1.5rem;
    z-index: 3;
    display: inline-block;
    height: 100px;
    width: 100px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--clr-brdr-light);
    border-radius: var(--radius-lg);
    vertical-align: middle;
    background: var(--clr3-normal);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(/ui/davidsfonds-2022/image/relation-placeholder.svg); /** fallback */
    background-image: url(/ui/davidsfonds-2022/image/relation-placeholder.svg), linear-gradient(0deg, hsl(var(--clr3), 73%, 42%) 0%, hsl(var(--clr3), 71%, 47%) 100%);
    background-size: 100% 100%;
    box-shadow: var(--shadow-1);
}

.plor-employee__picture img {
    width: 100%;
    transition: transform var(--transition-time--slow) ease-in-out;
}

.plor-row li:hover .plor-employee__picture img {
    transform: scale(1.02);
}

@media screen and (min-width: 768px) {
    .plor-employee__header {
        height: 90px;
    }

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

.plor-employee__content {
    padding: 1.25rem 1.5rem 1.75rem;
}

.plor-employee__content > a {
    margin-bottom: 1rem;
    text-decoration: none;
    font-family: var(--fam-medium);
    font-size: var(--txtSize-4);
    color: var(--clr-black)
}

.plor-employee__content > a:hover {
    color: var(--clr1-normal);
}

.plor-employee__content--secondary {
    width: 100%
}

.plor-employee__name {
    display: inline;
    transition: color .2s ease-in-out;
    margin-bottom: .25rem;
    border-bottom: 1px solid transparent;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
}

.plor-employee__job {
    display: block;
    color:var(--clr-grey);
}

.plor-employee__phoneNumber,
.plor-employee__contactLink {
    display: block;
    word-break: break-all;
    font-size: 1.0625rem;
}

.plor__typeName {
    font-size: 1rem;
}

.plor-employee__phoneNumber {
    margin-bottom: .2rem;
    font-size: 1.125rem;
}

.plor-employee__phoneNumber:before {
    content: '\260e';
    position: relative;
    top: 3px;
    display: inline-block;
    margin-right: .5rem;
    font-family: var(--fam-icon);
}

.plor-employee__phoneNumber a {
    text-decoration: none
}

.plor-employee__contactLink {
    line-height: 1.35;
    padding-left: 26px;
    display: inline-block;
    position: relative;
    color: var(--clr1-normal);
}

.plor-employee__contactLink:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: .5rem;
}

.plor-employee__contactLink a {
    text-decoration: none;
    color: var(--clr1-normal);
}

.plor-employee__contactLink.--emailAddress:before {
    background: transparent url(/ui/davidsfonds-2022/image/icon-email--primaryColor.svg) no-repeat 50% 50%;
    background-size: 18px 18px;
}

.plor-employee__contactLink.--linkedIn:before {
    background: transparent url(/ui/davidsfonds-2022/image/icon-linkedin--primaryColor.svg) no-repeat 50% 50%;
    background-size: 18px 18px;
}

.plor-employee__bio {
    margin-bottom: 1rem;
}

.plor-employee__bio .plor-employee__firstName,
.plor-employee__bio .plor-employee__name {
    display: block;
    font-size: .9375rem;
    color: #fff
}

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

/**
 * List of logos
 * This probably won't be used
 */
/*.plor-logos {*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -ms-flex-wrap: wrap;*/
/*    flex-wrap: wrap;*/
/*    margin: 1em -5px;*/
/*    padding: 0;*/
/*    list-style: none*/
/*}*/

/*.plor-logos li {*/
/*    -ms-flex: 0 0 calc(50% - 10px);*/
/*    flex: 0 0 calc(50% - 10px);*/
/*    position: relative;*/
/*    display: block;*/
/*    margin: 5px;*/
/*    padding-top: calc(50% - 10px);*/
/*    background: #fff;*/
/*    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08)*/
/*}*/

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

/*.plor-logos a {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    display: block;*/
/*    text-indent: -999em;*/
/*    box-shadow: 0 0 10px 0 transparent;*/
/*    transition: box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94)*/
/*}*/

/*.plor-logos a:hover {*/
/*    box-shadow: 5px 5px 40px 0 rgba(0, 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*/
/*}*/

/**
 * List of Companies
 * This probably won't be used
 */

/*.plor-company {*/
/*    list-style: none;*/
/*    padding-left: 0*/
/*}*/

/*.plor-company li {*/
/*    border-bottom: 1px solid var(--baseLight200);*/
/*    padding: 3rem 0*/
/*}*/

/*@media screen and (min-width: 768px) {*/
/*    .plor-company li {*/
/*        position: relative;*/
/*        padding-left: 30.3%*/
/*    }*/
/*}*/

/*.plor-company__name {*/
/*    display: block;*/
/*    font-weight: 600;*/
/*    font-size: 1.125rem;*/
/*    line-height: 1.35;*/
/*    color: var(--baseDark500);*/
/*}*/

/*@media screen and (min-width: 768px) {*/
/*    .plor-company__name {*/
/*        margin-bottom: 1rem*/
/*    }*/
/*}*/

/*.plor-company__country {*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 1rem;*/
/*    display: block;*/
/*    font-size: .9375rem*/
/*}*/

/*@media screen and (min-width: 768px) {*/
/*    .plor-company__country {*/
/*        position: absolute;*/
/*        top: 40px;*/
/*        left: 0;*/
/*        font-size: 1rem;*/
/*        line-height: 1.4;*/
/*        color: var(--baseDark500);*/
/*        text-transform: none*/
/*    }*/
/*}*/

/*.plor-company__contact {*/
/*    font-size: 1rem;*/
/*    color: var(--baseDark100);*/
/*}*/

/*@media screen and (min-width: 768px) {*/
/*    .plr-company__contact a {*/
/*        color: inherit*/
/*    }*/
/*}*/

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

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

/*.plor-logos--signature li a:hover {*/
/*    box-shadow: none*/
/*}*/

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

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

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

/*@media screen and (min-width: 768px) {*/
/*    .ContactPersonList li {*/
/*        -ms-flex-preferred-size: calc((100% - 2rem * (2 - 1)) / 2);*/
/*        flex-basis: calc((100% - 2rem * (2 - 1)) / 2);*/
/*        min-width: 18em;*/
/*        margin: 0 2rem 2rem 0;*/
/*    }*/

/*    .ContactPersonList li:last-child {*/
/*        margin-right: 0*/
/*    }*/
/*}*/

/*.ContactPersonList img {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    width: 4rem;*/
/*    margin-right: .5rem;*/
/*    border-radius: 50%*/
/*}*/

/*p + .ContactPersonList {*/
/*    border-top: 0*/
/*}*/

/*.ContactPersonList__content {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    white-space: normal;*/
/*    word-break: break-word;*/
/*    max-width: 35em*/
/*}*/

/*.ContactPersonList__name {*/
/*    color: var(--baseDark500);*/
/*}*/

/**
  * plor-relation-details
  * This probably won't be used
  */

/*.plor-relation-details .content__top,*/
/*.plor-relation-details aside {*/
/*    display: none;*/
/*}*/

/*.plor-relation-details .plor-employee {*/
/*    margin-top: 5rem;*/
/*    padding: 1.25rem;*/
/*    border: 1px solid var(--baseLight200);*/
/*    box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.06), 0 1px 4px 0 rgba(0, 0, 0, 0.055), 0 0 30px 0 rgba(0, 0, 0, 0.03);*/
/*    margin-bottom: var(--articleMarginBottomSmall);*/
/*}*/

/*.plor-relation-details .plor-employee__header {*/
/*    background: none;*/
/*    height: 32px;*/
/*}*/

/*.plor-relation-details .plor-employee__content {*/
/*    padding-top: 0;*/
/*}*/

/*.plor-relation-details .plor-employee__content:hover {*/
/*    background-color: #fff;*/
/*}*/

/*.plor-relation-details .plor-employee__name {*/
/*    font-size: var(--txtSize-3);*/
/*    display: inline-block;*/
/*    margin: 1.25rem 0 1rem;*/
/*}*/

/*.plor-back-to-overview {*/
/*    text-decoration: none;*/
/*    color: var(--clr1-normal);*/
/*    margin-top: 2rem;*/
/*    display: inline-block;*/
/*}*/

/*@media screen and (min-width: 768px) {*/
/*    .plor-relation-details .plor-employee__header {*/
/*        height: 0;*/
/*    }*/

/*    .plor-relation-details .plor-employee__content {*/
/*        padding-top: 0.6rem;*/
/*        padding-left: 172px;*/
/*    }*/
/*}*/
