<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Page List
 */
.ws-page-list {position:relative;}
.ws-page-list.has-border-top:before {
    content:''; position:absolute; top:0; left:50%;
    transform:translateX(-50%); width:100vw;
}

.ws-page-list__heading &gt; div {margin-bottom:-8px;}
.ws-page-list__heading {margin-bottom:25px;}

.ws-page-list__inner {margin:-5px;}
.ws-page-list__item {padding:5px;}
.ws-page-list__item-link {
    color:#141F3F; width:240px; position:relative;
    padding:5px 15px; min-height:46px;
}
.ws-page-list__item-link:before {
    content:''; position:absolute; top:0; bottom:0; left:0;
     transition:all .5s ease;
}
.ws-page-list__item-link:hover:before, .ws-page-list__item-link:focus:before {top:-20%;}
.ws-page-list__item-link:hover, .ws-page-list__item-link:focus {color:#E60032;}

@media only screen and (max-width:1280px){
    .ws-page-list__item {width:auto;}
    .ws-page-list__item:not(:last-child) {margin-right:30px;}
    .ws-page-list__item-link {width:100%; min-height:auto;}
}
@media only screen and (max-width:768px){
    .ws-page-list__item {width:auto;}
    .ws-page-list__item-link {min-height:auto; padding:5px 10px;}
    .ws-page-list__item-link:before {border-left-width:2px;}
}
@media only screen and (max-width:480px){
    .ws-page-list__item {width:50%;}
    .ws-page-list__item:not(:last-child) {margin-right:0;}
}</pre></body></html>