.sbg-related-articles {
    margin: 48px 0 32px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 102, 179, 0.12);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    direction: rtl;
}

.sbg-related-header {
    margin-bottom: 22px;
    text-align: right;
}

.sbg-related-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0066B3;
    background: rgba(0, 102, 179, 0.08);
    padding: 5px 12px;
    border-radius: 999px;
}

.sbg-related-title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.4;
    color: #0066B3;
    font-weight: 700;
}

.sbg-related-description {
    margin: 0;
    color: #54595F;
    font-size: 15px;
    line-height: 1.8;
}

.sbg-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sbg-related-card {
    background: #ffffff;
    border: 1px solid rgba(84, 89, 95, 0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sbg-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 102, 179, 0.10);
    border-color: rgba(0, 102, 179, 0.25);
}

.sbg-related-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.sbg-related-card-link:hover {
    text-decoration: none;
}

.sbg-related-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #f5f7fa;
}

.sbg-related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sbg-related-card:hover .sbg-related-image {
    transform: scale(1.04);
}

.sbg-related-content {
    padding: 16px;
}

.sbg-related-card-title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.65;
    color: #1f2933;
    font-weight: 700;
}

.sbg-related-excerpt {
    margin: 0 0 14px;
    color: #54595F;
    font-size: 14px;
    line-height: 1.8;
}

.sbg-related-read-more {
    display: inline-flex;
    align-items: center;
    color: #0066B3;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .sbg-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sbg-related-articles {
        margin: 36px 0 24px;
        padding: 22px 16px;
        border-radius: 18px;
    }

    .sbg-related-title {
        font-size: 21px;
    }

    .sbg-related-grid {
        grid-template-columns: 1fr;
    }
}