﻿.plor-row li:not(.l-tile--noBorder) {
    transition: transform 0.25s cubic-bezier(0, 0, 0.3, 1), box-shadow 0.25s cubic-bezier(0, 0, 0.3, 1);
}

.plor-row li:hover:not(.l-tile--noBorder) {
    box-shadow: var(--mbase-shadow-hover, 0 0 30px 10px rgba(0, 0, 0, 0.05), 0 10px 25px -20px rgba(0, 0, 0, 0.1));
    transform: scale(1.01);
}

.plor-row {
    margin: var(--mbase-spacer-xxxl) 0 var(--mbase-spacer-xl);
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

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

.plor-row li {
    transition: all 0.25s ease-in-out;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: var(--mbase-spacer-lg);
    position: relative;
    box-shadow: var(--mbase-shadow-subtle, 0 0 13px rgba(0, 0, 0, 0.08), 0 10px 15px -10px rgba(0, 0, 0, 0.02));
    max-width: 100%;
    border-radius: var(--mbase-brdr-radius);
    border: 1px solid var(--mbase-clr-brdr-xlight);
    cursor: pointer;
}

.plor-row li:hover {
    box-shadow: var(--mbase-shadow-hover, 0 0 30px 10px rgba(0, 0, 0, 0.05), 0 10px 25px -20px rgba(0, 0, 0, 0.1));
    border-color: var(--mbase-clr-brdr-light);
}

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

.plor-row li:hover .plor-employee__picture::before {
    font-size: calc(var(--mbase-txtSize-3) + 0.25rem);
    color: var(--mbase-clr-link-hover);
}

.plor-row li:hover .plor-employee__name {
    color: var(--mbase-clr-link-hover);
}

.plor-row__heading {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: var(--mbase-spacer-xl);
    text-transform: uppercase;
    font-weight: var(--mbase-txt-semibold);
    font-size: var(--mbase-txtSize-6);
    line-height: var(--mbase-lnHeight-sm);
    color: var(--mbase-clr-txt-meta);
}

.plor-row__heading::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    content: "";
    background-color: rgba(166, 166, 166, 0.5);
    transform: translateY(-1px);
}

.plor-row__heading span {
    padding-right: var(--mbase-spacer-lg);
    background-color: var(--mbase-clr-bg-body);
}

.plor-employee {
    position: relative;
    width: 100%;
    display: block;
    flex-direction: column;
}

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

.plor-employee.icon--plus .plor-employee__picture::before {
    transition: opacity 1s cubic-bezier(0, 0, 0.3, 1);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    background-color: var(--mbase-clr-theme);
    opacity: 0;
}

.plor-employee__header {
    border-top-left-radius: var(--mbase-brdr-radius);
    border-top-right-radius: var(--mbase-brdr-radius);
    height: 96px;
    z-index: 3;
}

.plor-employee__picture {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(var(--mbase-spacer-xl) * -1);
    left: var(--mbase-spacer-md);
    z-index: 3;
    height: 140px;
    width: 140px;
    margin: 0 0 var(--mbase-spacer-xs);
    border-radius: 50%;
    overflow: hidden;
    vertical-align: middle;
    background: var(--mbase-clr-theme-light);
    border: 4px solid var(--mbase-clr-brdr-white);
    box-shadow: var(--mbase-nice-box-shadow, 0 -2px 8px 0 rgba(0, 0, 0, 0.09), 0 1px 4px 0 rgba(0, 0, 0, 0.06), 0 0 30px 0 rgba(0, 0, 0, 0.045));
}

.plor-employee__picture::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e02e";
}

.plor-row--company .plor-employee__picture::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e012";
}

.plor-employee__picture img {
    transition: transform 1s cubic-bezier(0, 0, 0.3, 1), opacity 1s cubic-bezier(0, 0, 0.3, 1);
    width: 100%;
    object-fit: contain;
    height: auto;
    opacity: 0.95;
    position: absolute;
    z-index: 3;
}

.plor-employee__picture .plor-employee__picture__background {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--mbase-clr-bg-body);
}

.plor-employee__picture::before {
    font-size: var(--mbase-txtSize-3);
    color: var(--mbase-clr-txt-placeholder-icon);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    height: 100%;
}

.relationListSquareLogo .plor-employee__picture {
    border-radius: 0;
}

.plor-employee__content {
    border-bottom-left-radius: var(--mbase-brdr-radius);
    border-bottom-right-radius: var(--mbase-brdr-radius);
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    padding: var(--mbase-spacer-reg) var(--mbase-spacer-md) var(--mbase-spacer-lg);
    background: var(--mbase-clr-bg-body);
}

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

.plor-employee__content > a {
    text-decoration: none;
}

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

.plor-employee__content--secondary :first-child {
    margin-top: var(--mbase-spacer-xs);
}

.plor-employee__name {
    transition: all 0.25s ease-in-out;
    display: block;
    color: var(--mbase-clr-txt-body);
    margin-bottom: var(--mbase-spacer-xs);
    font-size: var(--mbase-txtSize-5);
    font-weight: var(--mbase-txt-bold);
    line-height: var(--mbase-lnHeight-sm);
    font-family: var(--mbase-fam-regular);
}

.plor-employee__phoneNumber,
.plor-employee__emailAddress {
    display: block;
    font-size: var(--mbase-txtSize-5);
}

.plor-employee__job {
    display: inline-block;
    color: var(--mbase-clr-txt-body);
    font-size: var(--mbase-txtSize-5);
    line-height: var(--mbase-lnHeight-sm);
}

.plor__typeName {
    font-size: var(--mbase-txtSize-6);
    color: var(--mbase-clr-txt-meta);
}

.plor-employee__phoneNumber {
    margin-bottom: var(--mbase-spacer-xxs);
    font-size: var(--mbase-txtSize-5);
}

.plor-employee__phoneNumber::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e028";
}

.plor-employee__phoneNumber::before {
    display: inline-flex;
    justify-content: center;
    min-width: var(--mbase-spacer);
    margin-right: var(--mbase-spacer-xs);
    color: var(--mbase-clr-theme);
}

.plor-employee__phoneNumber a {
    color: var(--mbase-clr-txt-body);
    text-decoration: none;
}

.plor-employee__emailAddress {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    font-size: var(--mbase-txtSize-5);
    line-height: var(--mbase-lnHeight-sm);
    display: block;
    position: relative;
    width: 100%;
}

.plor-employee__emailAddress::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e023";
}

.plor-employee__emailAddress::before {
    color: var(--mbase-clr-theme);
    display: inline-flex;
    justify-content: center;
    min-width: var(--mbase-spacer);
    margin-right: var(--mbase-spacer-xs);
    position: relative;
    top: 3px;
}

.plor-employee__emailAddress a {
    text-decoration: none;
}

.plor-employee__bio .plor-employee__firstName,
.plor-employee__bio .plor-employee__name {
    display: block;
    font-size: var(--mbase-txtSize-6);
    font-weight: var(--mbase-txt-semibold);
    color: var(--mbase-clr-bg-body);
}

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

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

.plor-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: var(--mbase-spacer) calc(var(--mbase-spacer-xxs) * -1);
    padding: 0;
    list-style: none;
}

.plor-logos li {
    flex: 0 0 calc(50% - var(--mbase-spacer-sm));
    position: relative;
    display: block;
    margin: var(--mbase-spacer-sm);
    padding-top: calc(50% - var(--mbase-spacer-sm));
    background: var(--mbase-clr-bg-body);
    box-shadow: 0 0 var(--mbase-spacer-lg) 0 rgba(0, 0, 0, 0.08);
}

.plor-logos a {
    transition: box-shadow 0.25s ease-in-out;
    transition: transform 0.25s cubic-bezier(0, 0, 0.3, 1), box-shadow 0.25s cubic-bezier(0, 0, 0.3, 1);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    text-indent: -999em;
}

.plor-logos a:hover {
    box-shadow: var(--mbase-shadow-hover, 0 0 30px 10px rgba(0, 0, 0, 0.05), 0 10px 25px -20px rgba(0, 0, 0, 0.1));
    transform: scale(1.01);
}

.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;
}

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

.plor-company li {
    border-bottom: 1px solid var(--mbase-clr-brdr-light);
    padding: var(--mbase-spacer-xl) 0;
}

.plor-company__name {
    display: block;
    font-weight: var(--mbase-txt-semibold);
    font-size: var(--mbase-txtSize-5);
    line-height: var(--mbase-lnHeight-sm);
    color: var(--mbase-clr-txt-body);
}

.plor-company__country {
    text-transform: uppercase;
    margin-bottom: var(--mbase-spacer);
    display: block;
    font-size: var(--mbase-txtSize-7);
}

.plor-company__contact {
    font-size: var(--mbase-txtSize-6);
    color: var(--mbase-clr-txt-meta);
}

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

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

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

.ContactPersonList {
    max-width: 45rem;
    padding: 0;
    list-style: none;
    font-size: var(--mbase-txtSize-6);
}

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

.ContactPersonList img {
    display: inline-block;
    vertical-align: middle;
    width: 4rem;
    margin-right: var(--mbase-spacer-xs);
    border-radius: 100%;
}

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(--mbase-clr-txt-body);
}

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

.plor-relation-details .plor-employee {
    margin-top: var(--mbase-spacer-xxl);
    padding: var(--mbase-spacer-reg);
    border: 1px solid var(--mbase-clr-brdr-light);
    box-shadow: var(--mbase-shadow-subtle, 0 0 13px rgba(0, 0, 0, 0.08), 0 10px 15px -10px rgba(0, 0, 0, 0.02));
    max-width: 100%;
    border-radius: var(--mbase-brdr-radius-lg, 1rem);
    margin-bottom: var(--mbase-spacer-lg);
}

.plor-relation-details .plor-employee__header {
    background: none;
    height: 85px;
}

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

.plor-relation-details .plor-employee__content:hover {
    background-color: var(--mbase-clr-bg-body);
}

.plor-relation-details .plor-employee__name {
    font-size: var(--mbase-txtSize-3);
    margin: 0 0 var(--mbase-spacer-xs);
}

.plor-relation-details .plor-employee__functionTitle {
    display: inline-block;
    color: var(--mbase-clr-txt-body);
    font-size: var(--mbase-txtSize-5);
    line-height: var(--mbase-lnHeight-sm);
}

.plor-relation-details .plor-employee__bio {
    margin-top: var(--mbase-spacer);
}

.plor-back-to-overview {
    transition: all 0.25s ease-in-out;
    border: 1px solid var(--mbase-clr-btn-brdr-80);
    height: var(--mbase-btn-default-height);
    border-radius: var(--mbase-btn-brdr-radius);
    font-weight: var(--mbase-txt-semibold);
    font-family: var(--mbase-fam-regular);
    font-size: var(--mbase-txtSize-6);
    color: var(--mbase-clr-link);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: var(--mbase-spacer-reg);
    line-height: var(--mbase-lnHeight-xxs);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    position: relative;
    padding: 0;
}

.plor-back-to-overview:hover {
    color: var(--mbase-clr-link-hover);
    border-color: var(--mbase-clr-btn-brdr-hover);
}

.plor-back-to-overview span {
    line-height: var(--mbase-lnHeight-xxs);
}

.plor-back-to-overview::after {
    display: none;
}

.plor-back-to-overview:hover {
    background-color: transparent;
    border-color: transparent;
}

.plor-back-to-overview::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e003";
}

.plor-back-to-overview::before {
    transition: all 0.25s ease-in-out;
    display: inline-block;
    margin-right: var(--mbase-spacer-xs);
}

.plor-back-to-overview:hover::before {
    margin-right: var(--mbase-spacer-sm);
}

.public_relation_list_search {
    padding: 0 !important;
    margin-bottom: var(--mbase-spacer-xl);
}

.public_relation_list_search div.field {
    margin: 0;
    width: 100%;
}

.public_relation_list_search .fieldinput.formpanel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public_relation_list_search .fieldinput > .formpanelelement.first {
    display: flex;
    align-items: center;
    position: relative;
    flex-grow: 1;
}

.public_relation_list_search .fieldinput > .formpanelelement.first::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e02f";
}

.public_relation_list_search .fieldinput > .formpanelelement.first::before {
    position: absolute;
    left: var(--mbase-spacer);
}

.public_relation_list_search .fieldinput > .formpanelelement.last {
    margin-left: var(--mbase-spacer-md);
}

.public_relation_list_search input,
.public_relation_list_search select,
.public_relation_list_search button {
    max-width: 100%;
    margin: 0;
}

.public_relation_list_search #searchString {
    padding: var(--mbase-spacer);
    text-indent: var(--mbase-spacer-reg);
    width: 100%;
}

.public_relation_list_search #searchSubmit {
    margin-block: 0;
}

.public_relation_list_search #filterSubmit::before {
    font-family: var(--mbase-fam-icon);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    content: "\e019";
}

.plor-filter-section {
    display: block !important;
    position: relative !important;
    visibility: visible !important;
    width: 100%;
    box-shadow: var(--mbase-shadow-subtle, 0 0 13px rgba(0, 0, 0, 0.08), 0 10px 15px -10px rgba(0, 0, 0, 0.02));
    border-radius: var(--mbase-brdr-radius);
    margin: var(--mbase-spacer-md) 0 var(--mbase-spacer-xl);
    border: 1px solid var(--mbase-clr-brdr-light);
    padding: var(--mbase-spacer-reg);
}

.plor-filter-section > div.field {
    margin-top: var(--mbase-spacer-sm);
}

.plor-filter-section > div.field.first {
    margin-top: 0;
}

.plor-filter-section .fieldinput {
    width: calc(100% - spacer-xl);
}

.plor-filter-section button.submit {
    position: absolute;
    right: 0;
    top: 1.5rem;
}

.plor-filter-section button.sec {
    display: none;
}

.mc-plor-toggle-filter {
    display: none;
}

@media (min-width: 36em) {
    .plor-filter-section .fe-checkboxgroup {
        display: flex;
        flex-wrap: wrap;
    }

    .plor-filter-section .fe-checkboxgroup li {
        margin-right: 1.5rem;
        flex: 0 0 calc((100% - 1.5rem * (3 - 1)) / 3);
        max-width: calc((100% - 1.5rem * (3 - 1)) / 3);
    }

    .plor-filter-section .fe-checkboxgroup li:nth-child(3n),
    .plor-filter-section .fe-checkboxgroup li:last-child {
        margin-right: 0;
    }
}

@media (max-width: 61.98em) {
    .plor-filter-section {
        margin-top: var(--mbase-spacer);
    }
}

@media (max-width: 47.98em) {
    .plor-employee::before,
    .plor-employee__story .plor-employee__content {
        display: none;
    }

    .plor-employee__story p {
        margin: 0;
        padding: 0 0 var(--mbase-spacer-lg) calc(80px + var(--mbase-spacer));
    }

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

    .plor-employee h3 {
        display: none;
    }

    .ContactPersonList li + .ContactPersonList li {
        margin-top: var(--mbase-spacer-lg);
    }
}

@media (min-width: 48em) {
    .plor-row li {
        margin-right: 1.25rem;
        flex: 0 0 calc((100% - 1.25rem * (2 - 1)) / 2);
        max-width: calc((100% - 1.25rem * (2 - 1)) / 2);
        margin-bottom: var(--mbase-spacer-xxxl);
    }

    .plor-row li:nth-child(2n),
    .plor-row li:last-child {
        margin-right: 0;
    }

    .plor-row li:nth-child(2n) {
        margin-right: 0;
    }

    .plor-row {
        flex-direction: row;
    }

    .plor-employee::before {
        transition: all 0.25s ease-in-out;
        position: absolute;
        top: 0;
        left: calc(50% + var(--mbase-spacer-lg));
        z-index: 2;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        line-height: 40px;
        color: var(--mbase-clr-bg-body);
        background-color: var(--mbase-clr-bg-light);
        opacity: 0;
        transform: scale(0.7);
    }

    .plor-employee__content {
        display: block;
        width: 100%;
    }

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

    .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);
        transform: scale(1);
        opacity: 1;
        content: "";
    }

    .plor-employee:hover:before {
        transform: scale(1);
        opacity: 1;
    }

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

    .plor-employee .plor-employee__story {
        position: fixed;
        z-index: 1000;
        top: 50%;
        left: 50%;
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        width: 760px;
        transform: translate(-50%, -30%);
        font-size: var(--mbase-txtSize-6);
        background: var(--mbase-clr-white);
        opacity: 0;
        transition: all 0.25s ease-in-out;
        visibility: hidden;
    }

    .plor-employee.open .plor-employee__story {
        opacity: 1;
        transform: translate(-50%, -50%);
        transition: all 0.25s ease-in-out;
        visibility: visible;
        background: var(--mbase-clr-theme);
    }

    .plor-employee__story > div {
        flex: 0 70%;
        max-height: 100vh;
        overflow: auto;
        padding: var(--mbase-spacer-xxxl);
        text-align: left;
        color: var(--mbase-clr-txt-meta);
        background: var(--mbase-clr-theme);
    }

    .plor-employee__story .plor-employee__content {
        display: flex;
        flex-direction: column;
        flex: 0 40%;
        padding: var(--mbase-spacer-lg);
        text-align: center;
        background: var(--mbase-clr-bg-body);
    }

    .ploremployee__story .plor-employee__content img {
        margin: var(--mbase-spacer-xl) auto;
        border-radius: 100%;
    }

    .plor-logos li {
        flex: 0 0 calc(20% - var(--mbase-spacer-sm));
        padding-top: calc(20% - var(--mbase-spacer-sm));
    }

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

    .plor-company__name {
        margin-bottom: var(--mbase-spacer);
    }

    .plor-company__country {
        position: absolute;
        top: 40px;
        left: 0;
        font-size: var(--mbase-txtSize-6);
        line-height: var(--mbase-lnHeight-md);
        color: var(--mbase-clr-txt-body);
        text-transform: none;
    }

    .plr-company__contact a {
        color: inherit;
    }

    .ContactPersonList li {
        flex: 0 0 calc((100% - 2rem * (2 - 1)) / 2);
        max-width: calc((100% - 2rem * (2 - 1)) / 2);
        min-width: 18em;
        margin: 0 var(--mbase-spacer-lg) var(--mbase-spacer-lg) 0;
    }

    .ContactPersonList li:nth-child(2n),
    .ContactPersonList li:last-child {
        margin-right: 0;
    }

    .plor-relation-details .plor-employee__header {
        height: 0;
    }

    .plor-relation-details .plor-employee__content {
        padding-top: var(--mbase-spacer-xs);
        padding-left: 172px;
    }

    .plor-relation-details .plor-employee__header {
        height: 0;
    }

    .plor-relation-details .plor-employee__content {
        padding-top: var(--mbase-spacer-xs);
        padding-left: 172px;
    }
}

@media (min-width: 62em) {
    .plor-row li {
        margin-right: 1.25rem;
        flex: 0 0 calc((100% - 1.25rem * (3 - 1)) / 3);
        max-width: calc((100% - 1.25rem * (3 - 1)) / 3);
    }

    .plor-row li:nth-child(3n),
    .plor-row li:last-child {
        margin-right: 0;
    }

    .plor-row li:nth-child(2n) {
        margin-right: var(--mbase-spacer-reg);
    }

    .plor-row li:nth-child(3n) {
        margin-right: 0;
    }

    @media (min-width: 62em) {
        .public_relation_list_search > div:not(.field) {
            display: none;
        }

        .public_relation_list_search {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
        }
    }
}

@media (min-width: 80em) {
    .plor-row li {
        margin-right: 1.25rem;
        flex: 0 0 calc((100% - 1.25rem * (4 - 1)) / 4);
        max-width: calc((100% - 1.25rem * (4 - 1)) / 4);
    }

    .plor-row li:nth-child(4n),
    .plor-row li:last-child {
        margin-right: 0;
    }

    .plor-row li:nth-child(2n),
    .plor-row li:nth-child(3n) {
        margin-right: var(--mbase-spacer-reg);
    }

    .plor-row li:nth-child(4n) {
        margin-right: 0;
    }
}
