/* ======================================================
    Related Links
====================================================== */

.related-links{

    padding:80px 0;

    background:#f8fbfd;

}

.related-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:24px;

}

.related-card{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    padding:28px;

    background:#fff;

    border:1px solid #dce6df;

    border-radius:16px;

    text-decoration:none;

    color:#333;

    transition:.25s;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

}

.related-card:hover{

    transform:translateY(-4px);

    border-color:#00854d;

    box-shadow:0 12px 28px rgba(0,0,0,.10);

    text-decoration:none;

}

.related-label{

    display:inline-flex;

    align-items:center;

    width:max-content;

    margin-bottom:16px;

    padding:6px 14px;

    border-radius:999px;

    background:#e8f5ef;

    color:#00854d;

    font-size:13px;

    font-weight:700;

}

.related-card h3{

    margin:0 0 12px;

    font-size:20px;

    line-height:1.5;

}

.related-card p{

    margin:0;

    color:#666;

    line-height:1.8;

    font-size:15px;

}

@media(max-width:767px){

    .related-links{

        padding:60px 0;

    }

    .related-card{

        padding:22px;

    }

    .related-card h3{

        font-size:18px;

    }

}