/* "Keep reading" block at the end of blog articles */

.related-reading {
    padding: 64px 5%;
    background: #f6f7f9;
}

.related-reading__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.related-reading h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1F3A5F;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 28px;
    text-align: center;
}

.related-reading__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.related-reading__card {
    display: block;
    background: #fff;
    border: 1px solid #e4e7ec;
    padding: 26px 24px;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.related-reading__card:hover {
    border-color: #1F3A5F;
    transform: translateY(-3px);
}

.related-reading__card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1F3A5F;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
}

.related-reading__card span {
    color: #5a6675;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .related-reading__grid {
        grid-template-columns: 1fr;
    }

    .related-reading {
        padding: 44px 5%;
    }
}
