/* ==========================================
   RELATED BLOG ARTICLES
========================================== */

.related-articles{
    padding:70px 0;
    background:#f8f5e9;
}

.related-articles .container{
    max-width:1200px;
}

.related-articles h2{
    text-align:center;
    margin-bottom:15px;
}

.related-articles-intro{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
    color:#666;
    line-height:1.8;
}

.related-articles-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.related-article-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:28px;
    text-decoration:none;
    transition:.25s ease;
    min-height:240px;
}

.related-article-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border-color:#c8a13d;
}

.related-article-title{
    font-size:22px;
    font-weight:700;
    color:#222;
    line-height:1.4;
    margin-bottom:18px;
}

.related-article-excerpt{
    color:#666;
    line-height:1.8;
    flex:1;
}

.related-article-read{
    margin-top:25px;
    font-weight:700;
    color:#c8a13d;
}

.related-article-card:hover .related-article-read{
    color:#000;
}

@media(max-width:992px){

.related-articles-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.related-articles-grid{
grid-template-columns:1fr;
}

.related-article-card{
min-height:auto;
}

}