/* ===========================
   INSIGHTS PAGE
=========================== */

.insights-page {
    padding: 60px 20px 100px;
    background: #fff;
}

.insights-layout {

    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap:40px;
    align-items: start;
}

/* ===========================
   GRID
=========================== */

.insights-grid {

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* ===========================
   CARD
=========================== */

.insight-card {

    background: #fff;

    border: 1px solid #e8e8e8;

    transition: .3s;

    display: flex;

    flex-direction: column;

    overflow: hidden;
}

.insight-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(0,0,0,.08);

}

.insight-image img {

    width: 100%;

    height: 180px;

    object-fit: cover;

    display: block;
}

.insight-content {

    padding: 20px;
}

.insight-category {

    color: #b18024;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-size: .68rem;

    font-weight: 700;

    margin-bottom: 15px;
}

.insight-content h2 {

    margin:10px 0;

    font-size:1.15rem;
    
    line-height:1.25;
    
    margin-bottom:14px;

    line-height: 1.3;
}

.insight-content h2 a {

    color: #051f45;

    text-decoration: none;
}

.insight-content h2 a:hover {

    color: #b18024;
}

.insight-content p {

    color: #5a6178;

    line-height: 1.8;

    margin-bottom: 24px;
}

.insight-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: auto;

    font-size: .9rem;
}

.insight-footer span {

    color: #5a6178;
}

.read-more {

    color: #051f45;

    font-weight: 700;

    text-decoration: none;
}

.read-more:hover {

    color: #b18024;
}

/* ===========================
   PAGINATION
=========================== */

.pagination-wrap {

    margin-top: 60px;

    text-align: center;
}

.pagination-wrap .page-numbers {

    display: inline-block;

    padding: 10px 16px;

    margin: 0 5px;

    border: 1px solid #dcdcdc;

    color: #051f45;

    text-decoration: none;

    border-radius: 5px;
}

.pagination-wrap .current {

    background: #051f45;

    color: #fff;

    border-color: #051f45;
}



/*====================================
  INSIGHTS TOOLBAR
=====================================*/

.insights-toolbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:30px;

    padding-bottom:20px;

    border-bottom:1px solid #e6e8ec;

}

.insights-toolbar-left{

    display:flex;
    align-items:center;
    gap:18px;

    flex-wrap:wrap;

}

.results-count{

    color:#5a6178;

    font-size:.95rem;

    font-weight:500;

}

.toolbar-divider{

    color:#b0b2bd;

}

.insights-toolbar label{

    color:#5a6178;

    font-size:.95rem;

    font-weight:600;

}

.insights-toolbar select {
    border: 1px solid #d9dde5;
    border-radius: 6px;
    padding: 10px 14px;
    background: #fff;
    color: #051f45;
    font-weight: 600;
}

.insights-toolbar select:hover{

    border-color:#b18024;

}

.insights-toolbar select:focus{

    outline:none;

    border-color:#b18024;

    box-shadow:0 0 0 3px rgba(177,128,36,.12);

}

/* Pull Quote */

.wp-block-pullquote {
    max-width: 80%;
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    border-left: 6px solid var(--color-gold);
    border-top: none;
    border-bottom: none;
    background: #f8f9fc;
    text-align: center;
}

.wp-block-pullquote blockquote {
    margin: 0;
}

.wp-block-pullquote p {
    font-size: 2rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
    color: var(--color-navy);
}

.wp-block-pullquote cite {
    display: none;
}