/* ==========================================
   Research Library
========================================== */

.prg-section-heading{
    max-width: 760px;
}

.prg-section-heading p{
    color: var(--prg-muted);
    line-height: 1.8;
    margin-top: 18px;
}

/* =============================
   Library Cards
============================= */

.prg-library-card{
    background: var(--prg-warm-white);
    border: 1px solid var(--prg-stone);
    border-radius: 4px;
    padding: 18px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,.03);
    text-align: center;
}

.prg-library-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.prg-library-icon{
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(167,122,69,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--prg-gold);
    font-size: 28px;
}

.prg-library-card h3{
    font-size: 24px;
    margin-bottom: 16px;
}

.prg-library-card p{
    color: var(--prg-muted);
    line-height: 1.8;
    margin: 0;
}

/* =============================
   Featured Articles
============================= */

.prg-library-articles{
    background: var(--prg-soft-gray);
}

.prg-article-card{
    background: #fff;
    border:1px solid var(--prg-stone);
    border-radius:4px;
    overflow:hidden;
    height:100%;
    transition:.35s;
    box-shadow:0 6px 20px rgba(0,0,0,.03);
}

.prg-article-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.prg-article-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.prg-article-body{
    padding:28px;
}

.prg-article-category{
    display:inline-block;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--prg-gold);
    font-weight:600;
    margin-bottom:12px;
}

.prg-article-body h3{
    font-size:26px;
    margin-bottom:16px;
}

.prg-article-body p{
    color:var(--prg-muted);
    line-height:1.8;
    margin-bottom:22px;
}

.prg-text-link{
    color:var(--prg-gold);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.prg-text-link:hover{
    color:var(--prg-charcoal);
}

/* =============================
   Dark Band
============================= */

.prg-library-band{
    background:var(--prg-charcoal);
    padding:90px 0;
}

.prg-library-band h2{
    color:var(--prg-ivory);
}

.prg-library-band p{
    color:rgba(255,255,255,.82);
    line-height:1.9;
    margin-top:18px;
}

.prg-library-band img{
    width:100%;
    border-radius:4px;
}

/* =============================
   Notice
============================= */

.prg-library-notice{
    display:flex;
    gap:22px;
    align-items:flex-start;
    background:var(--prg-warm-white);
    border:1px solid var(--prg-stone);
    border-left:4px solid var(--prg-gold);
    border-radius:4px;
    padding:34px;
}

.prg-library-notice i{
    font-size:34px;
    color:var(--prg-gold);
    margin-top:4px;
}

.prg-library-notice h3{
    margin-bottom:12px;
}

.prg-library-notice p{
    margin:0;
    color:var(--prg-muted);
    line-height:1.8;
}

/* =============================
   CTA
============================= */

.prg-contact-cta{
    background:var(--prg-charcoal);
    border-radius:12px;
    padding:50px 55px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.prg-contact-cta h2{
    color:var(--prg-ivory);
    margin-bottom:18px;
}

.prg-contact-cta p{
    color:rgba(255,255,255,.82);
    line-height:1.8;
    margin:0;
    max-width:700px;
}

.prg-contact-cta .prg-button{
    white-space:nowrap;
}

/* =============================
   Responsive
============================= */

@media (max-width:991px){

    .prg-library-card{
        padding:32px 24px;
    }

    .prg-article-image img{
        height:220px;
    }

    .prg-library-band{
        padding:70px 0;
    }

    .prg-library-notice{
        flex-direction:column;
    }

    .prg-contact-cta{
        flex-direction:column;
        align-items:flex-start;
        padding:40px 30px;
    }

    .prg-contact-cta .prg-button{
        width:100%;
        text-align:center;
    }

}

@media (max-width:767px){

    .prg-library-card h3,
    .prg-article-body h3{
        font-size:22px;
    }

    .prg-library-notice{
        padding:28px;
    }

}