@charset "utf-8";
/* CSS Document */

/***************************************************************/
/* PAGE LIST - COMPACT RELATED CONTENT */
/***************************************************************/

.list-grid-pages {
    width:100%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:0 24px;
    margin:0;
    padding:11px 2px 12px 13px;
}


/***************************************************************/
/* ENTRY */
/***************************************************************/

.ccm-block-page-list-page-entry {
    min-width:0;
    margin:0;
    padding:0;
}

.list-grid-container {
    position:relative;
    margin:0 0 3px;
    padding:12px 10px 13px 14px;
    background:rgba(180,139,80,.035);
    color:#50535a;
    border:0;
    border-bottom:1px solid #e4dfd5;
    box-sizing:border-box;
}

.list-grid-container::before {
    content:"";
    width:3px;
    height:30px;
    position:absolute;
    top:13px;
    left:0;
    background:#b48b50;
}

.list-grid-container:hover {
    background:#f7f5f0;
}

.list-grid-container:hover::before {
    background:#131729;
}

/***************************************************************/
/* TITLE */
/***************************************************************/

.list-grid-title {
    margin:0 0 5px;
    padding:0;
}

.list-grid-title a {
    color:#131729;
    font-family:Georgia, "Times New Roman", serif;
    font-size:.88em;
    font-weight:700;
    line-height:1.3;
    text-decoration:none;
    transition:color .2s ease;
}

.list-grid-title a:hover {
    color:#b48b50;
}


/***************************************************************/
/* REMOVE OLD DIVIDERS */
/***************************************************************/

.list-grid-container hr {
    display:none;
}


/***************************************************************/
/* DATE */
/***************************************************************/

.list-grid-date {
    min-height:16px;
    margin:0 0 5px;
    padding-left:20px;
    color:#8a8a8a;
    font-size:.66em;
    font-weight:600;
    line-height:1.3;
    background-image:url("page_list_calendar.png");
    background-position:left center;
    background-size:13px auto;
    background-repeat:no-repeat;
}


/***************************************************************/
/* DESCRIPTION */
/***************************************************************/

.list-grid-description {
    margin:0;
    color:#666;
    font-size:.74em;
    line-height:1.4;
}


/***************************************************************/
/* MOBILE */
/***************************************************************/

@media screen and (max-width:600px) {

    .list-grid-pages {
        grid-template-columns:1fr;
    }

}