.related-box {
    background: #f5f8ff;
    padding: 30px;
    border-radius: 14px;
    margin-top: 50px;
}

.related-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #003366;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.ra-item {
    display: block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    padding: 12px;
    text-decoration: none;
    color: #000;
    transition: .25s;
}

.ra-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
}

.ra-item h3 {
    margin-top: 10px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
}

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

.related-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
}

.ra-item {
    width: 100% !important;
    display: block;
}
