.breadcrumb{
    background-color:#eaeaea;
    padding: 22px 0;
}

.breadcrumb-wrapper{
    display:flex;
    align-items:center;
    justify-content: flex-end;
}

.breadcrumb-item > *{
    font-size:14px;
    color:#999;
}

.breadcrumb-item > a:hover,
.breadcrumb-item.active > *{
    color:#666;
}
.breadcrumb-item:not(:first-child):before{
    content: "/";
    display: inline-block;
    margin: 0 16px 0 calc(16px - 4px);
    font-size: 14px;
    color: #999;
    margin: 0 16px;
}

.page-content{
    padding-top:45px;
    padding-bottom:45px;
}

.card > * > .block-grid-row {
    border: 1px solid #e5e1e1;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 40px;
    margin-top:40px;
}



/* Account Open Modal Styles */
#acc-open-modal{
    padding-top:3rem;
    padding-bottom:2rem;
}

#acc-open-modal .modal-actions{
    margin-top:20px;
    display:flex;
    justify-content: center;
    gap:10px;
}

/* Document Download Page */
.doc-downloads{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    column-gap: 4rem;
}

.doc-downloads > .link-item{
    padding: 1rem;
    border-bottom: 1px solid #f2f2f2;
}

.doc-downloads > .link-item a{
    font-size: 1rem;
    color: var(--second-color-lighten);
}
.doc-downloads > .link-item a:hover{
    color: var(--second-color);
}

/* Contact Page */
.company-contact .block-grid-col{
    padding: 0 2rem;
    position: relative;
}
.company-contact .block-grid-col:after{
    content: "";
    display: block;
    position:absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: #e5e5e5;
}
.company-contact .block-grid-col:first-child{
    padding-left: 0;
}
.company-contact .block-grid-col:last-child{
    padding-right: 0;
}
.company-contact .block-grid-col:last-child:after{
    display: none;
}

.map {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* Post List Page */
.post-list{
    width:100%;
}
.post-list .post-list-item{
    border-bottom: 1px solid #f2f2f2;
    padding: 2rem 0;
}
.post-list .post-list-item a{
    display:block;
}

.post-list .post-list-item:last-child{
    border-bottom: none;
}
.post-list .post-list-item-date{
    font-size: 14px;
    color: #999;
    margin-bottom: 0.5rem;
    display: block;
    min-width: 120px;
}
.post-list .post-list-item-title{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--second-color-lighten);
    margin-bottom: 1rem;
}
.post-list .post-list-item-title:hover{
    color: var(--second-color);
}


/* Post Item Detail Page */
.post-item-detail .post-item-title{
    font-size: 2rem;
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 3rem;
    display: block;
}

.post-item-detail .post-item-date{
    font-size: 14px;
    color: #999;
    margin-bottom: 1.5rem;
    display: block;
}