.rpc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    padding: 20px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: 0.25s;
    width: 100%;
}

.rpc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.rpc-image-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.rpc-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,79,109,0.5), rgba(255,148,41,0.5));
    mix-blend-mode: multiply;
}

.rpc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rpc-content {
    flex: 1;
}

.rpc-label {
    font-size: 13px;
    color: #00a6ff;
    margin-bottom: 4px;
    font-weight: 500;
}

.rpc-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}

.rpc-arrow {
    font-size: 22px;
    color: #888;
    margin-left: 8px;
    flex-shrink: 0;
}
خ